From 56f2c965f734f2576291bacdcfe214abe78bb4a4 Mon Sep 17 00:00:00 2001 From: m-nash <64171366+m-nash@users.noreply.github.com> Date: Wed, 8 Sep 2021 01:29:41 -0700 Subject: [PATCH] fix test namespace (#23755) fix wait for completion in base test class add bastion host create test --- .../Redesign/ManagementRecordedTestBase.cs | 8 +- .../Helpers/NetworkServiceClientTestBase.cs | 6 +- .../BastionHostContainerTests(False).json | 631 + .../BastionHostContainerTests(True)Async.json | 631 + .../CheckIfExists.json | 17809 +++++++++++++++ .../CheckIfExistsAsync.json | 17112 ++++++++++++++ .../CreateOrUpdate.json | 17700 +++++++++++++++ .../CreateOrUpdateAsync.json | 18356 +++++++++++++++ .../BastionHostContainerTests/Delete.json | 16804 ++++++++++++++ .../DeleteAsync.json | 17296 +++++++++++++++ .../BastionHostContainerTests/Get.json | 17158 ++++++++++++++ .../BastionHostContainerTests/GetAll.json | 18432 ++++++++++++++++ .../GetAllAsync.json | 16710 ++++++++++++++ .../BastionHostContainerTests/GetAsync.json | 16625 ++++++++++++++ .../tests/Tests/ApplicationGatewayTests.cs | 2 +- .../Tests/ApplicationSecurityGroupTests.cs | 2 +- .../Tests/AvailableProvidersListTests.cs | 2 +- .../Tests/AzureReachabilityReportTests.cs | 2 +- .../tests/Tests/BastionHostContainerTests.cs | 148 + .../tests/Tests/CheckConnectivityTests.cs | 2 +- .../tests/Tests/CheckDnsAvailabilityTests.cs | 2 +- .../tests/Tests/ConnectionMonitorTests.cs | 2 +- .../tests/Tests/DdosProtectionPlanTests.cs | 2 +- .../tests/Tests/ExpandResourceTests.cs | 2 +- .../tests/Tests/ExpressRouteTests.cs | 2 +- .../FirewallPolicyRuleGroupTestResource.cs | 2 +- .../tests/Tests/FirewallPolicyTests.cs | 2 +- .../tests/Tests/FlowLogTests.cs | 2 +- .../tests/Tests/GatewayOperationsTests.cs | 2 +- .../tests/Tests/LoadBalancerTests.cs | 2 +- .../tests/Tests/NetworkInterfaceTests.cs | 2 +- .../tests/Tests/NetworkSecurityGroupTests.cs | 2 +- .../tests/Tests/NetworkWatcherTests.cs | 2 +- .../tests/Tests/NextHopTests.cs | 2 +- .../tests/Tests/PacketCaptureTests.cs | 2 +- .../tests/Tests/PrivateEndpointTests.cs | 2 +- .../tests/Tests/PrivateLinkServicesTest.cs | 2 +- .../tests/Tests/PublicIpAddressTests.cs | 2 +- .../tests/Tests/PublicIpPrefixTests.cs | 2 +- .../tests/Tests/RouteFilterTests.cs | 2 +- .../tests/Tests/RouteTableTests.cs | 2 +- .../tests/Tests/RouteTests.cs | 2 +- .../tests/Tests/SecurityRuleTests.cs | 2 +- .../tests/Tests/SubnetTests.cs | 2 +- .../tests/Tests/TopologyTests.cs | 2 +- .../tests/Tests/TroubleshootTests.cs | 2 +- .../tests/Tests/UsageTests.cs | 2 +- .../tests/Tests/VerifyIpFlowTests.cs | 2 +- .../tests/Tests/ViewNsgRuleTests.cs | 2 +- .../tests/Tests/VirtualNetworkPeeringTests.cs | 2 +- .../tests/Tests/VirtualNetworkTests.cs | 2 +- .../tests/Tests/VmssNetworkInterfaceTests.cs | 2 +- .../tests/Tests/VmssPublicIpAddressTests.cs | 2 +- 53 files changed, 175458 insertions(+), 44 deletions(-) create mode 100644 sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/BastionHostContainerTests/BastionHostContainerTests(False).json create mode 100644 sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/BastionHostContainerTests/BastionHostContainerTests(True)Async.json create mode 100644 sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/BastionHostContainerTests/CheckIfExists.json create mode 100644 sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/BastionHostContainerTests/CheckIfExistsAsync.json create mode 100644 sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/BastionHostContainerTests/CreateOrUpdate.json create mode 100644 sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/BastionHostContainerTests/CreateOrUpdateAsync.json create mode 100644 sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/BastionHostContainerTests/Delete.json create mode 100644 sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/BastionHostContainerTests/DeleteAsync.json create mode 100644 sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/BastionHostContainerTests/Get.json create mode 100644 sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/BastionHostContainerTests/GetAll.json create mode 100644 sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/BastionHostContainerTests/GetAllAsync.json create mode 100644 sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/BastionHostContainerTests/GetAsync.json create mode 100644 sdk/network/Azure.ResourceManager.Network/tests/Tests/BastionHostContainerTests.cs diff --git a/common/ManagementTestShared/Redesign/ManagementRecordedTestBase.cs b/common/ManagementTestShared/Redesign/ManagementRecordedTestBase.cs index 53fa896d696ec..877e498eb046f 100644 --- a/common/ManagementTestShared/Redesign/ManagementRecordedTestBase.cs +++ b/common/ManagementTestShared/Redesign/ManagementRecordedTestBase.cs @@ -105,7 +105,7 @@ protected void CleanupResourceGroups() try { var sub = _cleanupClient.GetSubscriptions().GetIfExists(TestEnvironment.SubscriptionId); - sub.Value?.GetResourceGroups().Get(resourceGroup).Value.Delete(); + sub.Value?.GetResourceGroups().Get(resourceGroup).Value.Delete(waitForCompletion: false); } catch (RequestFailedException e) when (e.Status == 404) { @@ -117,7 +117,7 @@ protected void CleanupResourceGroups() { try { - _cleanupClient.GetManagementGroup(mgmtGroupId).Delete(); + _cleanupClient.GetManagementGroup(mgmtGroupId).Delete(waitForCompletion: false); } catch (RequestFailedException e) when (e.Status == 404 || e.Status == 403) { @@ -202,11 +202,11 @@ public void OneTimeCleanupResourceGroups() Parallel.ForEach(OneTimeResourceGroupCleanupPolicy.ResourceGroupsCreated, resourceGroup => { var sub = _cleanupClient.GetSubscriptions().GetIfExists(SessionEnvironment.SubscriptionId); - sub.Value?.GetResourceGroups().Get(resourceGroup).Value.Delete(); + sub.Value?.GetResourceGroups().Get(resourceGroup).Value.Delete(waitForCompletion: false); }); Parallel.ForEach(OneTimeManagementGroupCleanupPolicy.ManagementGroupsCreated, mgmtGroupId => { - _cleanupClient.GetManagementGroup(mgmtGroupId).Delete(); + _cleanupClient.GetManagementGroup(mgmtGroupId).Delete(waitForCompletion: false); }); } diff --git a/sdk/network/Azure.ResourceManager.Network/tests/Helpers/NetworkServiceClientTestBase.cs b/sdk/network/Azure.ResourceManager.Network/tests/Helpers/NetworkServiceClientTestBase.cs index c1ddeeec21f75..5e009bbe31357 100644 --- a/sdk/network/Azure.ResourceManager.Network/tests/Helpers/NetworkServiceClientTestBase.cs +++ b/sdk/network/Azure.ResourceManager.Network/tests/Helpers/NetworkServiceClientTestBase.cs @@ -10,14 +10,12 @@ using Azure.ResourceManager.Resources; using Azure.ResourceManager.Resources.Models; using Azure.ResourceManager.Network.Models; -using Azure.ResourceManager.Network.Tests.Tests; using Azure.ResourceManager.TestFramework; using NUnit.Framework; namespace Azure.ResourceManager.Network.Tests.Helpers { - [RunFrequency(RunTestFrequency.Manually)] public class NetworkServiceClientTestBase : ManagementRecordedTestBase { private const string dummySSHKey = "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+wWK73dCr+jgQOAxNsHAnNNNMEMWOHYEccp6wJm2gotpr9katuF/ZAdou5AaW1C61slRkHRkpRRX9FA9CYBiitZgvCCz+3nWNN7l/Up54Zps/pHWGZLHNJZRYyAB6j5yVLMVHIHriY49d/GZTZVNB8GoJv9Gakwc/fuEZYYl4YDFiGMBP///TzlI4jhiJzjKnEvqPFki5p2ZRJqcbCiF4pJrxUQR/RXqVFQdbRLZgYfJ8xGB878RENq3yQ39d8dVOkq4edbkzwcUmwwwkYVPIoDGsYLaRHnG+To7FvMeyO7xDVQkMKzopTQV8AuKpyvpqu0a9pWOMaiCyDytO7GGN you@me.com"; @@ -25,6 +23,10 @@ public NetworkServiceClientTestBase(bool isAsync) : base(isAsync) { } + public NetworkServiceClientTestBase(bool isAsync, RecordedTestMode mode) : base(isAsync, mode) + { + } + public bool IsTestTenant = false; public static TimeSpan ZeroPollingInterval { get; } = TimeSpan.FromSeconds(0); public Dictionary Tags { get; internal set; } diff --git a/sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/BastionHostContainerTests/BastionHostContainerTests(False).json b/sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/BastionHostContainerTests/BastionHostContainerTests(False).json new file mode 100644 index 0000000000000..2a56fde5d59a4 --- /dev/null +++ b/sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/BastionHostContainerTests/BastionHostContainerTests(False).json @@ -0,0 +1,631 @@ +{ + "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-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3248ca2c360ee0cd362bde9143324123", + "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, 08 Sep 2021 06:29:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "35c0b0d4-e54a-4b29-84ea-f22578935ae8", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "35c0b0d4-e54a-4b29-84ea-f22578935ae8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T062912Z:35c0b0d4-e54a-4b29-84ea-f22578935ae8" + }, + "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/bastionrg-5755?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "22", + "Content-Type": "application/json", + "traceparent": "00-0f105b81a9c24a49991f9be793cb9062-240176499975824d-00", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cdc367bd2e05352b4f3532a2d8f96605", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2" + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "226", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:29:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0cec26df-0a2c-45ca-b182-d1aab30bbdf4", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "0cec26df-0a2c-45ca-b182-d1aab30bbdf4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T062916Z:0cec26df-0a2c-45ca-b182-d1aab30bbdf4" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755", + "name": "bastionrg-5755", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "98", + "Content-Type": "application/json", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f82739540493eb3197b8ee986311d405", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "id": null, + "properties": { + "addressSpace": { + "addressPrefixes": [ + "10.0.0.0/16" + ] + } + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7306f427-0b0c-48b7-ac3b-2c0d47c27469?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "609", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:29:24 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": "fd56e88f-4082-4325-9484-bcf04f22b545", + "x-ms-client-request-id": "f82739540493eb3197b8ee986311d405", + "x-ms-correlation-request-id": "0b5ce17d-ebd1-4655-bce1-f4f6ba159389", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "7306f427-0b0c-48b7-ac3b-2c0d47c27469", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T062924Z:0b5ce17d-ebd1-4655-bce1-f4f6ba159389" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022vnet-166\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022e7a12cb6-5bdf-4eec-ac2f-fc76eb5cce35\\\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: \u00229692cf54-c17f-418b-8261-5e5404984cd4\u0022,\r\n", + " \u0022addressSpace\u0022: {\r\n", + " \u0022addressPrefixes\u0022: [\r\n", + " \u002210.0.0.0/16\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022subnets\u0022: [],\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/7306f427-0b0c-48b7-ac3b-2c0d47c27469?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "08dd768b11fb622a91e26d753c9ceb23", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:29: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": "479f4457-e514-4ec5-b39c-94de3191bae5", + "x-ms-client-request-id": "08dd768b11fb622a91e26d753c9ceb23", + "x-ms-correlation-request-id": "71f8a0cb-fc20-403d-9088-00e680c04fa6", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "3b325b4f-d4a2-46b4-b18f-ca17f0689c04", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T062925Z:71f8a0cb-fc20-403d-9088-00e680c04fa6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7306f427-0b0c-48b7-ac3b-2c0d47c27469?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e79b9c5d55402da99c0bfbd40396ad39", + "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, 08 Sep 2021 06:29: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": "a45a243c-f6d5-46e8-bd24-27e6e8867dc3", + "x-ms-client-request-id": "e79b9c5d55402da99c0bfbd40396ad39", + "x-ms-correlation-request-id": "8f2f2e29-ffde-4c72-ab2f-5c1fdce54fd7", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "050f9650-d1ae-4792-856a-5e654df56bf3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T062926Z:8f2f2e29-ffde-4c72-ab2f-5c1fdce54fd7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ec0d7787cc342b0ae7c31d40b826df60", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "610", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:29:26 GMT", + "ETag": "W/\u0022f5f333b2-d92c-423a-ab10-c28d87ebeeb6\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": "a7445aad-cfea-4b67-a81a-4ca88487be6e", + "x-ms-client-request-id": "ec0d7787cc342b0ae7c31d40b826df60", + "x-ms-correlation-request-id": "3d1f4173-b186-457c-9149-1deab1d2ffb3", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "2eba3ede-470e-4213-a271-bed4b53d61e3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T062926Z:3d1f4173-b186-457c-9149-1deab1d2ffb3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022vnet-166\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022f5f333b2-d92c-423a-ab10-c28d87ebeeb6\\\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: \u00229692cf54-c17f-418b-8261-5e5404984cd4\u0022,\r\n", + " \u0022addressSpace\u0022: {\r\n", + " \u0022addressPrefixes\u0022: [\r\n", + " \u002210.0.0.0/16\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022subnets\u0022: [],\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/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166/subnets/AzureBastionSubnet?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "56", + "Content-Type": "application/json", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a13dddd249c13537cdaf6bf016555ffb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "id": null, + "properties": { + "addressPrefix": "10.0.0.0/24" + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/861bcefe-f71b-4d50-ade8-4e17c8cb1090?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "549", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:29:27 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": "44acf209-e8fe-4028-be4a-ad3a2ee0eca0", + "x-ms-client-request-id": "a13dddd249c13537cdaf6bf016555ffb", + "x-ms-correlation-request-id": "e4f8f41e-302b-447e-a08e-3ee8648df70e", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "861bcefe-f71b-4d50-ade8-4e17c8cb1090", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T062927Z:e4f8f41e-302b-447e-a08e-3ee8648df70e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022AzureBastionSubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166/subnets/AzureBastionSubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00220cd9878a-2315-44cf-b1fa-c876cca83b5c\\\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", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/861bcefe-f71b-4d50-ade8-4e17c8cb1090?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "26029a2b0c583d773fd71f8461191592", + "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, 08 Sep 2021 06:29: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": "6a02cd75-8095-4edc-90c6-6cf3c84d169a", + "x-ms-client-request-id": "26029a2b0c583d773fd71f8461191592", + "x-ms-correlation-request-id": "5826e853-9934-4278-b092-0e0fa542c771", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "31861dae-fa8b-42d8-9305-34aee51b1720", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T062927Z:5826e853-9934-4278-b092-0e0fa542c771" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166/subnets/AzureBastionSubnet?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "840c22641937d3d0edac0f5149bafd64", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "550", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:29:27 GMT", + "ETag": "W/\u0022573656a9-42fe-4e47-93e1-2e691d5f0fdc\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": "b9da7071-f54d-4815-8a59-e4ee8493abcd", + "x-ms-client-request-id": "840c22641937d3d0edac0f5149bafd64", + "x-ms-correlation-request-id": "b8e794e4-49d2-4764-b3e8-11fb2e50c54b", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "283674f0-3b34-4a52-8c02-5ffa21aee7ef", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T062927Z:b8e794e4-49d2-4764-b3e8-11fb2e50c54b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022AzureBastionSubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166/subnets/AzureBastionSubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022573656a9-42fe-4e47-93e1-2e691d5f0fdc\\\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/bastionrg-5755/providers/Microsoft.Network/publicIPAddresses/ip-7939?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "109", + "Content-Type": "application/json", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "537bc5f4a238bc27b186b8df6b30785b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "sku": { + "name": "Standard" + }, + "location": "westus2", + "id": null, + "properties": { + "publicIPAllocationMethod": "Static" + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/136601db-621a-48c8-99a0-6b95ed29eefc?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "629", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:29:31 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": "531514f9-a204-4929-9549-c51433da799b", + "x-ms-client-request-id": "537bc5f4a238bc27b186b8df6b30785b", + "x-ms-correlation-request-id": "136541ed-1620-4463-9fd3-a051949c9cb6", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "136601db-621a-48c8-99a0-6b95ed29eefc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T062931Z:136541ed-1620-4463-9fd3-a051949c9cb6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022ip-7939\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/publicIPAddresses/ip-7939\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002271da8ea2-5e3e-4535-abcd-8c5ff958cc82\\\u0022\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022452cc13c-6c20-4dcf-9d83-4519820eb94f\u0022,\r\n", + " \u0022publicIPAddressVersion\u0022: \u0022IPv4\u0022,\r\n", + " \u0022publicIPAllocationMethod\u0022: \u0022Static\u0022,\r\n", + " \u0022idleTimeoutInMinutes\u0022: 4,\r\n", + " \u0022ipTags\u0022: []\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/publicIPAddresses\u0022,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Standard\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/136601db-621a-48c8-99a0-6b95ed29eefc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "546c49ba3e997f2be4c8859318f3827c", + "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, 08 Sep 2021 06:29:31 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": "72466521-f9d5-434d-99c2-070ee46edde3", + "x-ms-client-request-id": "546c49ba3e997f2be4c8859318f3827c", + "x-ms-correlation-request-id": "60be6bc5-2954-483b-8721-aca92279b63a", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "6065c6ee-b43a-4646-82fc-39455ca1d4d3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T062931Z:60be6bc5-2954-483b-8721-aca92279b63a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/publicIPAddresses/ip-7939?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a2dcf59708e7b54ab3b124fef62a95bd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "665", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:29:31 GMT", + "ETag": "W/\u0022f96cfda0-342d-4a74-b683-6f93c8beece4\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": "6d7a0ab3-b841-49ff-a0a1-759ab46fa9fa", + "x-ms-client-request-id": "a2dcf59708e7b54ab3b124fef62a95bd", + "x-ms-correlation-request-id": "7afbacca-8123-41e9-80a6-d2fd4ea9118b", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "6c7af1ca-72c1-49bd-a4b4-fc12cd82723c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T062931Z:7afbacca-8123-41e9-80a6-d2fd4ea9118b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022ip-7939\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/publicIPAddresses/ip-7939\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022f96cfda0-342d-4a74-b683-6f93c8beece4\\\u0022\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022452cc13c-6c20-4dcf-9d83-4519820eb94f\u0022,\r\n", + " \u0022ipAddress\u0022: \u002252.151.15.185\u0022,\r\n", + " \u0022publicIPAddressVersion\u0022: \u0022IPv4\u0022,\r\n", + " \u0022publicIPAllocationMethod\u0022: \u0022Static\u0022,\r\n", + " \u0022idleTimeoutInMinutes\u0022: 4,\r\n", + " \u0022ipTags\u0022: []\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/publicIPAddresses\u0022,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Standard\u0022,\r\n", + " \u0022tier\u0022: \u0022Regional\u0022\r\n", + " }\r\n", + "}" + ] + } + ], + "Variables": { + "RandomSeed": "673405790", + "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/BastionHostContainerTests/BastionHostContainerTests(True)Async.json b/sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/BastionHostContainerTests/BastionHostContainerTests(True)Async.json new file mode 100644 index 0000000000000..05e50ba9c7c6d --- /dev/null +++ b/sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/BastionHostContainerTests/BastionHostContainerTests(True)Async.json @@ -0,0 +1,631 @@ +{ + "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-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c45c4620a4c9a074a0d2cb7b8da40b2d", + "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, 08 Sep 2021 07:16:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "fef69fab-4131-4099-b99d-0bcdae4c7394", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "fef69fab-4131-4099-b99d-0bcdae4c7394", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071625Z:fef69fab-4131-4099-b99d-0bcdae4c7394" + }, + "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/bastionrg-7251?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "22", + "Content-Type": "application/json", + "traceparent": "00-5e1ff6ba73f36d4e9c8ab0fe6bab4b45-2c685e35c08d3d4e-00", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "97fda60ef6cedb25f7860f8d3f08bf8a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2" + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "226", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:16:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1626c4a3-c949-40e6-a538-cd629e7c3d9f", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "1626c4a3-c949-40e6-a538-cd629e7c3d9f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071627Z:1626c4a3-c949-40e6-a538-cd629e7c3d9f" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251", + "name": "bastionrg-7251", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "98", + "Content-Type": "application/json", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "757ae32f07b01afbc07141e5c1acc382", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "id": null, + "properties": { + "addressSpace": { + "addressPrefixes": [ + "10.0.0.0/16" + ] + } + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f5644115-9ea5-466f-b568-9887605b4494?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "611", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:16:34 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": "cc7def47-908f-4437-b4f9-4328db51322a", + "x-ms-client-request-id": "757ae32f07b01afbc07141e5c1acc382", + "x-ms-correlation-request-id": "f066a6fd-7c6b-4868-a4b3-c585a49cfc34", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "f5644115-9ea5-466f-b568-9887605b4494", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071634Z:f066a6fd-7c6b-4868-a4b3-c585a49cfc34" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022vnet-6121\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022166c3dcb-20ab-448e-9d33-48de9708684f\\\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: \u0022a7067e65-d510-4fab-b894-da0e03df110f\u0022,\r\n", + " \u0022addressSpace\u0022: {\r\n", + " \u0022addressPrefixes\u0022: [\r\n", + " \u002210.0.0.0/16\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022subnets\u0022: [],\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/f5644115-9ea5-466f-b568-9887605b4494?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "287441f152b29f5e027c0d85e3f536d9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:16:34 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": "51696b14-371d-4fd9-9423-679808abbe0f", + "x-ms-client-request-id": "287441f152b29f5e027c0d85e3f536d9", + "x-ms-correlation-request-id": "2df7ed2e-9f26-4fe2-9118-473e950150e2", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "24ddc1c4-242c-411d-b28b-fb5783211f9c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071634Z:2df7ed2e-9f26-4fe2-9118-473e950150e2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f5644115-9ea5-466f-b568-9887605b4494?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2a3f0a4c400add1294428ddee896075f", + "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, 08 Sep 2021 07:16: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": "8148e9f6-e771-412a-a72e-039744e23560", + "x-ms-client-request-id": "2a3f0a4c400add1294428ddee896075f", + "x-ms-correlation-request-id": "43957806-3f80-4829-aa6e-09e015b4da17", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "aef44ede-19c4-450d-bba4-078044b3b36f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071636Z:43957806-3f80-4829-aa6e-09e015b4da17" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7ff435a69a38add07f1546bc44c954f2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "612", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:16:36 GMT", + "ETag": "W/\u0022888f79a4-ab09-4477-ad8c-162d426bc55d\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": "e8056faf-82f9-4641-aa58-2b12145b9df4", + "x-ms-client-request-id": "7ff435a69a38add07f1546bc44c954f2", + "x-ms-correlation-request-id": "14d0c487-2816-4987-a4a1-e757ecf48f65", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "c3112812-79b2-42bc-a0e8-3dc8359fc29a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071636Z:14d0c487-2816-4987-a4a1-e757ecf48f65" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022vnet-6121\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022888f79a4-ab09-4477-ad8c-162d426bc55d\\\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: \u0022a7067e65-d510-4fab-b894-da0e03df110f\u0022,\r\n", + " \u0022addressSpace\u0022: {\r\n", + " \u0022addressPrefixes\u0022: [\r\n", + " \u002210.0.0.0/16\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022subnets\u0022: [],\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/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121/subnets/AzureBastionSubnet?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "56", + "Content-Type": "application/json", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0818459a9f22b0012e969470c57fb66c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "id": null, + "properties": { + "addressPrefix": "10.0.0.0/24" + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3ead79b5-04ac-4d6e-9e78-77bf082f3a1f?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "550", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:16:37 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": "217d08a7-b26c-43c3-8dc3-c698a7f32164", + "x-ms-client-request-id": "0818459a9f22b0012e969470c57fb66c", + "x-ms-correlation-request-id": "a1d797f6-61be-4473-9eb1-5b5175d3c8cc", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "3ead79b5-04ac-4d6e-9e78-77bf082f3a1f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071637Z:a1d797f6-61be-4473-9eb1-5b5175d3c8cc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022AzureBastionSubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121/subnets/AzureBastionSubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00224f828fdd-fe9f-4a34-8048-a9abea6f070a\\\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", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3ead79b5-04ac-4d6e-9e78-77bf082f3a1f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a3449aeefe7e073c334450a1065fe700", + "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, 08 Sep 2021 07:16:37 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": "5169bf66-53d0-41b0-9489-f9e32258f5e8", + "x-ms-client-request-id": "a3449aeefe7e073c334450a1065fe700", + "x-ms-correlation-request-id": "ab85908d-4c2e-4b81-8e22-2b53119efcf8", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "db647e1d-c834-4609-8241-c3fc6b89ed5c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071637Z:ab85908d-4c2e-4b81-8e22-2b53119efcf8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121/subnets/AzureBastionSubnet?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9647da5ea5eae3f1a466ce90f30cb6d8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "551", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:16:37 GMT", + "ETag": "W/\u00226213a7bd-1b77-45de-a444-55e2f717b82f\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": "c3fbb938-4bc3-4636-beb1-b0d65e785714", + "x-ms-client-request-id": "9647da5ea5eae3f1a466ce90f30cb6d8", + "x-ms-correlation-request-id": "968d4c40-99f6-403f-9aad-a6ec589ccbb4", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "c03935cb-c608-46f3-bb52-3645a8f61c35", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071637Z:968d4c40-99f6-403f-9aad-a6ec589ccbb4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022AzureBastionSubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121/subnets/AzureBastionSubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00226213a7bd-1b77-45de-a444-55e2f717b82f\\\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/bastionrg-7251/providers/Microsoft.Network/publicIPAddresses/ip-3184?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "109", + "Content-Type": "application/json", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3b2b81c9ed127175d77bbc67ffabdaaa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "sku": { + "name": "Standard" + }, + "location": "westus2", + "id": null, + "properties": { + "publicIPAllocationMethod": "Static" + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dca2ac6-8c48-4553-a1d9-9ac724299962?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "629", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:16:40 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": "33fd9372-9f4d-410c-ab52-6e45fdcb2c21", + "x-ms-client-request-id": "3b2b81c9ed127175d77bbc67ffabdaaa", + "x-ms-correlation-request-id": "48aea76d-f3c0-4e45-bc8d-4c3dd327d295", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "6dca2ac6-8c48-4553-a1d9-9ac724299962", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071641Z:48aea76d-f3c0-4e45-bc8d-4c3dd327d295" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022ip-3184\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/publicIPAddresses/ip-3184\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022efc64105-5a91-4f1a-a281-a100f2706bd5\\\u0022\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022cf12151e-bd67-4380-9ac6-86981f12aa37\u0022,\r\n", + " \u0022publicIPAddressVersion\u0022: \u0022IPv4\u0022,\r\n", + " \u0022publicIPAllocationMethod\u0022: \u0022Static\u0022,\r\n", + " \u0022idleTimeoutInMinutes\u0022: 4,\r\n", + " \u0022ipTags\u0022: []\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/publicIPAddresses\u0022,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Standard\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/6dca2ac6-8c48-4553-a1d9-9ac724299962?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dd3ca378c5bbec4cd1251329357ba4bb", + "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, 08 Sep 2021 07:16: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": "e1fc29fd-c5a1-4fb6-8459-af5094188f33", + "x-ms-client-request-id": "dd3ca378c5bbec4cd1251329357ba4bb", + "x-ms-correlation-request-id": "bb39bdaf-89a9-45c6-9fe2-5bf924d10ae8", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "61a1fa35-e795-42ae-975f-ab198bac0c7f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071641Z:bb39bdaf-89a9-45c6-9fe2-5bf924d10ae8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/publicIPAddresses/ip-3184?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7649e6f3c997e9fc3883da12d545c5c3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "664", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:16:41 GMT", + "ETag": "W/\u002297a4ade2-772e-4c6a-8e18-9406802a5f4b\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": "014d2584-1e1f-4517-bc5d-67e474f0f66f", + "x-ms-client-request-id": "7649e6f3c997e9fc3883da12d545c5c3", + "x-ms-correlation-request-id": "c80f9ec3-9192-4d66-a56f-cc885a69aa47", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "6e9299cb-7d26-44c7-ab23-324cd51c5246", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071641Z:c80f9ec3-9192-4d66-a56f-cc885a69aa47" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022ip-3184\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/publicIPAddresses/ip-3184\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002297a4ade2-772e-4c6a-8e18-9406802a5f4b\\\u0022\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022cf12151e-bd67-4380-9ac6-86981f12aa37\u0022,\r\n", + " \u0022ipAddress\u0022: \u002220.98.77.111\u0022,\r\n", + " \u0022publicIPAddressVersion\u0022: \u0022IPv4\u0022,\r\n", + " \u0022publicIPAllocationMethod\u0022: \u0022Static\u0022,\r\n", + " \u0022idleTimeoutInMinutes\u0022: 4,\r\n", + " \u0022ipTags\u0022: []\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/publicIPAddresses\u0022,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Standard\u0022,\r\n", + " \u0022tier\u0022: \u0022Regional\u0022\r\n", + " }\r\n", + "}" + ] + } + ], + "Variables": { + "RandomSeed": "195178976", + "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/BastionHostContainerTests/CheckIfExists.json b/sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/BastionHostContainerTests/CheckIfExists.json new file mode 100644 index 0000000000000..e5a812cc38fce --- /dev/null +++ b/sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/BastionHostContainerTests/CheckIfExists.json @@ -0,0 +1,17809 @@ +{ + "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-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "190c232233d3a497707463dd94a1c4de", + "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, 08 Sep 2021 06:29:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "be9127b1-7fb0-4df9-aa1e-803a8c3a8778", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "be9127b1-7fb0-4df9-aa1e-803a8c3a8778", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T062932Z:be9127b1-7fb0-4df9-aa1e-803a8c3a8778" + }, + "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/bastionrg-5755?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-b6d69cbccd0b114fb8da121306d23514-1281410542ec6b4a-00", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d1cfcc7c1e84b6be9b2bf2ff4a9831d6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "226", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:29:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2205e71c-0ff3-4902-b845-972797985ed7", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "2205e71c-0ff3-4902-b845-972797985ed7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T062932Z:2205e71c-0ff3-4902-b845-972797985ed7" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755", + "name": "bastionrg-5755", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6c15d06aab96f31a34b34d7d824a31c4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1246", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:29:33 GMT", + "ETag": "W/\u0022573656a9-42fe-4e47-93e1-2e691d5f0fdc\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": "ce34ef15-3d3a-41eb-94ab-cc5a8472c265", + "x-ms-client-request-id": "6c15d06aab96f31a34b34d7d824a31c4", + "x-ms-correlation-request-id": "4b0bda9e-1ff7-4cb8-b13a-116a2d8a331f", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "87c8f659-fabb-4e11-9dc0-76d1a153519f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T062933Z:4b0bda9e-1ff7-4cb8-b13a-116a2d8a331f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022vnet-166\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022573656a9-42fe-4e47-93e1-2e691d5f0fdc\\\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: \u00229692cf54-c17f-418b-8261-5e5404984cd4\u0022,\r\n", + " \u0022addressSpace\u0022: {\r\n", + " \u0022addressPrefixes\u0022: [\r\n", + " \u002210.0.0.0/16\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022subnets\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022AzureBastionSubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166/subnets/AzureBastionSubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022573656a9-42fe-4e47-93e1-2e691d5f0fdc\\\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/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166/subnets/AzureBastionSubnet?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "db8a0f6f1967033d65567ea840975ad7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "550", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:29:33 GMT", + "ETag": "W/\u0022573656a9-42fe-4e47-93e1-2e691d5f0fdc\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": "0518ed88-3959-4c58-8854-96fba560f12c", + "x-ms-client-request-id": "db8a0f6f1967033d65567ea840975ad7", + "x-ms-correlation-request-id": "f8cbc896-b33a-429d-9291-3ba09bd2a180", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "2caee134-17f3-4692-b7d1-e65dc626ccb5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T062933Z:f8cbc896-b33a-429d-9291-3ba09bd2a180" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022AzureBastionSubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166/subnets/AzureBastionSubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022573656a9-42fe-4e47-93e1-2e691d5f0fdc\\\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/bastionrg-5755/providers/Microsoft.Network/publicIPAddresses/ip-7939?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c3738d42588bd048b1db9cd0d1403451", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "665", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:29:33 GMT", + "ETag": "W/\u0022f96cfda0-342d-4a74-b683-6f93c8beece4\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": "7f4157f9-5c38-47e2-a617-5736476b1f0c", + "x-ms-client-request-id": "c3738d42588bd048b1db9cd0d1403451", + "x-ms-correlation-request-id": "ed4cfcb0-dd6d-45b7-aa8d-246482564c2c", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "bdc75dcc-7714-4b8a-a28a-9987dd5bc345", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T062933Z:ed4cfcb0-dd6d-45b7-aa8d-246482564c2c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022ip-7939\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/publicIPAddresses/ip-7939\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022f96cfda0-342d-4a74-b683-6f93c8beece4\\\u0022\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022452cc13c-6c20-4dcf-9d83-4519820eb94f\u0022,\r\n", + " \u0022ipAddress\u0022: \u002252.151.15.185\u0022,\r\n", + " \u0022publicIPAddressVersion\u0022: \u0022IPv4\u0022,\r\n", + " \u0022publicIPAllocationMethod\u0022: \u0022Static\u0022,\r\n", + " \u0022idleTimeoutInMinutes\u0022: 4,\r\n", + " \u0022ipTags\u0022: []\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/publicIPAddresses\u0022,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Standard\u0022,\r\n", + " \u0022tier\u0022: \u0022Regional\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-7725?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "468", + "Content-Type": "application/json", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0e3a902e6f5593501206402d72b39d59", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "id": null, + "properties": { + "ipConfigurations": [ + { + "name": "bastionIPConfig-7981", + "id": null, + "properties": { + "subnet": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166/subnets/AzureBastionSubnet" + }, + "publicIPAddress": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/publicIPAddresses/ip-7939" + } + } + } + ] + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "1455", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:29:37 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": "695d0d96-efe6-4ac1-afe7-81906cdd2d33", + "x-ms-client-request-id": "0e3a902e6f5593501206402d72b39d59", + "x-ms-correlation-request-id": "9d6831e3-52ea-4903-b387-0d671bc0b214", + "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-request-id": "82c75a2a-33a7-4b62-ae62-fd300b178bde", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T062938Z:9d6831e3-52ea-4903-b387-0d671bc0b214" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022bastion-7725\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-7725\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022f2e84ca3-53af-4df1-b68a-3ddadfd0e990\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022scaleUnits\u0022: 2,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022bastionIPConfig-7981\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-7725/bastionHostIpConfigurations/bastionIPConfig-7981\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022f2e84ca3-53af-4df1-b68a-3ddadfd0e990\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts/bastionHostIpConfigurations\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/bastionrg-5755/providers/Microsoft.Network/publicIPAddresses/ip-7939\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166/subnets/AzureBastionSubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022bastionShareableLinks\u0022: {}\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0611ad2dc91f1dec2230795208a33f28", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:29:38 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": "dbfe64cd-82dd-424f-894b-7fe7150b2634", + "x-ms-client-request-id": "0611ad2dc91f1dec2230795208a33f28", + "x-ms-correlation-request-id": "cabeeee8-393e-479c-8e17-c8f1c34b9233", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "3b00c102-39a9-4944-b56a-fa8bdd7f41e9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T062938Z:cabeeee8-393e-479c-8e17-c8f1c34b9233" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "065c77ff7b3ef68d7a73542be3d425e0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:29:39 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": "f39b3a68-fa21-4451-8719-e9f2b27ef1b1", + "x-ms-client-request-id": "065c77ff7b3ef68d7a73542be3d425e0", + "x-ms-correlation-request-id": "3a4f89e1-3638-4a02-99f6-461983056711", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "71558908-5964-467a-b708-efacf97f6e3d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T062939Z:3a4f89e1-3638-4a02-99f6-461983056711" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c5001de296a1ac394ed7b33cbfc4be16", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:29: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": "edc2d5fa-40be-415b-9a10-5b7b71ee6de6", + "x-ms-client-request-id": "c5001de296a1ac394ed7b33cbfc4be16", + "x-ms-correlation-request-id": "a7db691a-371d-443a-b85b-bb2741f04fe1", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "7310a059-0528-4ec9-a3e5-868a8b618721", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T062941Z:a7db691a-371d-443a-b85b-bb2741f04fe1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f67c63ea1ed5b1e31f1b8bab74c03a4e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:29:42 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": "b47a1c12-7e68-4ae8-8131-e286f27edcea", + "x-ms-client-request-id": "f67c63ea1ed5b1e31f1b8bab74c03a4e", + "x-ms-correlation-request-id": "5f45f443-a16a-4385-98e1-0c89d0fb5a06", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "d4cfe06a-764d-4d1f-b7fd-e57aca75a238", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T062942Z:5f45f443-a16a-4385-98e1-0c89d0fb5a06" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ea6f980b7aa268863dafb767c75136b6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:29:43 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": "afc0c2c4-433b-4198-98da-859c7c9a4b06", + "x-ms-client-request-id": "ea6f980b7aa268863dafb767c75136b6", + "x-ms-correlation-request-id": "4a3ec415-ec9d-40e8-a490-28b7ddb224c7", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "19c4f6b5-a335-4d3b-b4c2-b834df8b9e7b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T062943Z:4a3ec415-ec9d-40e8-a490-28b7ddb224c7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "80413eb42f57c40b3a4ea5860b8e378d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:29:44 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": "15374279-ea00-494c-8574-463b3123cd28", + "x-ms-client-request-id": "80413eb42f57c40b3a4ea5860b8e378d", + "x-ms-correlation-request-id": "3f7eec8e-4303-4a7b-ab4b-c8bb450b0d14", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "49accc38-489e-4837-b839-c9637920ec09", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T062944Z:3f7eec8e-4303-4a7b-ab4b-c8bb450b0d14" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2730649dd4547073dc14b925667ce9ce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:29:45 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": "4312c1b4-15d8-4289-8f75-dddbb1233d0d", + "x-ms-client-request-id": "2730649dd4547073dc14b925667ce9ce", + "x-ms-correlation-request-id": "a2a97735-94eb-4d8a-8ab5-fbdfe5694307", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "9b7be05e-6cf2-4f33-b88c-a4c69e5b38bc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T062946Z:a2a97735-94eb-4d8a-8ab5-fbdfe5694307" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "35f6d5e4b97fdbf68dabaf54d4005dae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:29:47 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": "a7c57679-b581-4bcc-a7fc-8825d03a479a", + "x-ms-client-request-id": "35f6d5e4b97fdbf68dabaf54d4005dae", + "x-ms-correlation-request-id": "5a761aab-8458-4518-bc23-a0d373c4c0fb", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "00931ce2-9c1e-4bd5-b296-3f3df8a476c6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T062947Z:5a761aab-8458-4518-bc23-a0d373c4c0fb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "63c92a770f20e061cbd1a34376e55dbe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:29:48 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": "3be3795c-028c-43c9-a405-82e08d32da63", + "x-ms-client-request-id": "63c92a770f20e061cbd1a34376e55dbe", + "x-ms-correlation-request-id": "d8850d77-3179-4d3c-ac79-91e907b0026d", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "2520fe19-0f14-4e0b-aedf-12ff6c6ba345", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T062948Z:d8850d77-3179-4d3c-ac79-91e907b0026d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "35a1d7640297e30d6e5599a8241e9bdc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6e8883b4-b082-49fd-8cc3-48c9417b5f07", + "x-ms-client-request-id": "35a1d7640297e30d6e5599a8241e9bdc", + "x-ms-correlation-request-id": "c8b5b166-6aac-40d9-8523-ffb1bdac568f", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "6a656ad5-304b-4887-bc2f-bd2165c5ef9d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T062950Z:c8b5b166-6aac-40d9-8523-ffb1bdac568f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3bad0ab686b2d5ad73156aae15b365a7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3e779649-25d1-402a-85b9-610500d601ef", + "x-ms-client-request-id": "3bad0ab686b2d5ad73156aae15b365a7", + "x-ms-correlation-request-id": "71fb13f6-488c-436c-8d88-12df501e0831", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "cc30f3dd-7e54-4c13-9844-e362d8b4d35f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T062951Z:71fb13f6-488c-436c-8d88-12df501e0831" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fdf0f14d285e75171ce5f4cb75b8bcac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ec3837dd-a728-41de-8f5f-c2b696d5fcc6", + "x-ms-client-request-id": "fdf0f14d285e75171ce5f4cb75b8bcac", + "x-ms-correlation-request-id": "41c65c1c-be2b-4541-bd36-0de86ad12f57", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "47e26297-003d-4513-a218-a482f6006a85", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T062952Z:41c65c1c-be2b-4541-bd36-0de86ad12f57" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6c8cc7352137dd0c29ccc181975fcdbb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1cc5db39-5d08-4087-9c78-7ecf48cb3f1b", + "x-ms-client-request-id": "6c8cc7352137dd0c29ccc181975fcdbb", + "x-ms-correlation-request-id": "d7a5dccb-f64a-4ca2-b4be-d6af6440128a", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "398523ac-7537-4e65-a559-f7e921ef2c96", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T062954Z:d7a5dccb-f64a-4ca2-b4be-d6af6440128a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "325af2f09e2e8e7df2371ecc92e25fbb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "9c0d1a44-e0a5-4572-b95d-5bb58ec8c8d1", + "x-ms-client-request-id": "325af2f09e2e8e7df2371ecc92e25fbb", + "x-ms-correlation-request-id": "da32cc0f-2c58-49ca-a4db-31967d1de689", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "527d6432-ad61-4b95-bb97-18b36b4ca9d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T062955Z:da32cc0f-2c58-49ca-a4db-31967d1de689" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4e78bd59f8262c70e512d3916695debd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "241eb062-6725-4182-8082-3e01db8b1c7f", + "x-ms-client-request-id": "4e78bd59f8262c70e512d3916695debd", + "x-ms-correlation-request-id": "47d39a7b-13bd-4d6a-b9ea-34c01144d3bb", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "623198b8-4053-46e0-80da-55f2e616b74e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T062957Z:47d39a7b-13bd-4d6a-b9ea-34c01144d3bb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "83db3918895d967d4afe79ff033f4b47", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3c0bb9c0-da4b-4462-97a9-3e10938cfe0f", + "x-ms-client-request-id": "83db3918895d967d4afe79ff033f4b47", + "x-ms-correlation-request-id": "1f560bb4-c5c3-4596-89d5-aa1ac667e1e8", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "7782f896-8312-421d-acd4-44c6303075db", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T062958Z:1f560bb4-c5c3-4596-89d5-aa1ac667e1e8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d928066d7fe6f795822e4d1ccbeb275c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "501e10e1-92f1-437d-9b01-8279e62e3e4f", + "x-ms-client-request-id": "d928066d7fe6f795822e4d1ccbeb275c", + "x-ms-correlation-request-id": "24358d16-27af-4b67-b017-9d4155faef24", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "3b71d4b2-d0e9-42bc-99bd-69ab10e6c415", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063000Z:24358d16-27af-4b67-b017-9d4155faef24" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "58b46159dc07cf5d40e203277e7029a5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2311eec7-47a7-4f03-876c-0f2d199b231e", + "x-ms-client-request-id": "58b46159dc07cf5d40e203277e7029a5", + "x-ms-correlation-request-id": "495deaae-72e3-411a-b4b5-bb8fc27fd7b5", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "0d89c714-e631-4b9f-8ec6-e05673dfc770", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063001Z:495deaae-72e3-411a-b4b5-bb8fc27fd7b5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "60248bc7046d98d6a4e3012e3c61cb5e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e4c01b3f-ed9b-4af3-a281-e37c84668f08", + "x-ms-client-request-id": "60248bc7046d98d6a4e3012e3c61cb5e", + "x-ms-correlation-request-id": "68112295-6c19-404a-9d2d-aa41101cda8d", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "92c7296a-a652-4cfc-a6a4-24fbec2b883d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063003Z:68112295-6c19-404a-9d2d-aa41101cda8d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a1a61dd6f28b9140a85999047b6d7811", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "cc48db2a-6ad0-4329-a95d-a46b08b1ef9e", + "x-ms-client-request-id": "a1a61dd6f28b9140a85999047b6d7811", + "x-ms-correlation-request-id": "b0183686-3854-4927-9411-e3990f0a397b", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "d5b512b0-c545-4726-8c47-2166956d61ba", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063004Z:b0183686-3854-4927-9411-e3990f0a397b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3f55a705c7c655ef8a1bb423da2e92de", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6aab1d4d-d882-4d7a-8220-775e611c6fd1", + "x-ms-client-request-id": "3f55a705c7c655ef8a1bb423da2e92de", + "x-ms-correlation-request-id": "8efbbcac-99d5-496d-b044-6234c2acf1f0", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "9b8257c8-29dd-43c9-9190-58c1a93c92f7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063005Z:8efbbcac-99d5-496d-b044-6234c2acf1f0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6151a51687cad41a4b93b7146ad21d36", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "67aeb04b-d95c-417e-95da-6ba17207ed1e", + "x-ms-client-request-id": "6151a51687cad41a4b93b7146ad21d36", + "x-ms-correlation-request-id": "6dcbaf43-9866-4a09-8fc5-9f9ddc11e68d", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "d06aadd4-6fac-4cb0-899c-5ac49cc8bbd8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063007Z:6dcbaf43-9866-4a09-8fc5-9f9ddc11e68d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9429ef6b8b0c0f982d50176f3d1db67a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0c970900-89fb-4ae2-97a6-1aa0211d0113", + "x-ms-client-request-id": "9429ef6b8b0c0f982d50176f3d1db67a", + "x-ms-correlation-request-id": "26cdba11-ca98-4231-bdbc-d73438612ea3", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "e7263a62-9475-4547-a805-d0242927c660", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063008Z:26cdba11-ca98-4231-bdbc-d73438612ea3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d6edbac6161c7e478c80f4330fdaeab7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "e54fffb6-7aae-4859-b5b2-244156d30ddc", + "x-ms-client-request-id": "d6edbac6161c7e478c80f4330fdaeab7", + "x-ms-correlation-request-id": "4eabd01e-af3c-4a48-8f7b-7f8747a1b2fe", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "5fdeaef0-cb84-4086-ba24-aae653a630fe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063009Z:4eabd01e-af3c-4a48-8f7b-7f8747a1b2fe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ebb87dfefd058bd20c42347970ab962d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "93fd1d4d-932e-4748-aaac-9938d63125e9", + "x-ms-client-request-id": "ebb87dfefd058bd20c42347970ab962d", + "x-ms-correlation-request-id": "47ea2c65-683d-4f7a-8964-5e5b8bf9bef8", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "1799e408-e10d-421c-8dae-6abf89dfdc02", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063010Z:47ea2c65-683d-4f7a-8964-5e5b8bf9bef8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b04d3ddd46e5541aa7aa088b9665ff52", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e92a7d88-9793-4832-8860-21ce9f0c3b13", + "x-ms-client-request-id": "b04d3ddd46e5541aa7aa088b9665ff52", + "x-ms-correlation-request-id": "36bfae8a-255e-48d4-8fd4-33218f6716cc", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "8b9e0331-2b1c-4c12-9c85-6056a8b98d33", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063012Z:36bfae8a-255e-48d4-8fd4-33218f6716cc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c0705f66cb65c874e861c9dae2ce0de0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1f16f677-b454-4135-8f1f-8fbeae299e06", + "x-ms-client-request-id": "c0705f66cb65c874e861c9dae2ce0de0", + "x-ms-correlation-request-id": "ff5101a3-c93b-40f5-8fe1-10b8cba6d75a", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "fbc9d39b-7b02-4694-a978-8ad7a332ac67", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063013Z:ff5101a3-c93b-40f5-8fe1-10b8cba6d75a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d255c7e9398cb7d26363435af546f5a7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:30: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": "3df6bcde-a20c-4cde-863b-d314a8982c95", + "x-ms-client-request-id": "d255c7e9398cb7d26363435af546f5a7", + "x-ms-correlation-request-id": "9b7f0244-2ca9-48e7-9120-ccfc35a1b88c", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "be47c228-73a3-4066-bc21-873f31bd9505", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063014Z:9b7f0244-2ca9-48e7-9120-ccfc35a1b88c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1112e142d63b12c8c885c8837d4072d9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "99c45e1b-a757-4d97-88b2-a178f926b49d", + "x-ms-client-request-id": "1112e142d63b12c8c885c8837d4072d9", + "x-ms-correlation-request-id": "2bcbda2d-e4f3-47f0-aeb4-6a130ff39372", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "75fc28b5-4da2-4386-80e6-8aa0ce637b8b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063015Z:2bcbda2d-e4f3-47f0-aeb4-6a130ff39372" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cfa2279c2c0f2cc58db85d018719d3a1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7663692d-29de-415e-8824-3bd306eb14eb", + "x-ms-client-request-id": "cfa2279c2c0f2cc58db85d018719d3a1", + "x-ms-correlation-request-id": "f82be065-e2a4-458c-ac38-2a8e14329aed", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "c1507cc0-f256-4d81-af76-83c8f8223a92", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063017Z:f82be065-e2a4-458c-ac38-2a8e14329aed" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0197216cfcbb13a5fe430907714e3a23", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "0defbbed-f8f3-4dd0-9bda-33e2c953b368", + "x-ms-client-request-id": "0197216cfcbb13a5fe430907714e3a23", + "x-ms-correlation-request-id": "1e2bccb9-cc93-44e3-b985-c2d1755f9ae2", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "6eea6cfc-c0b0-442c-a819-eccd4072eefc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063018Z:1e2bccb9-cc93-44e3-b985-c2d1755f9ae2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cebe69f025a415981be6848279c68aae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4fcb0f13-1562-4a61-8adc-d3b23291c0e9", + "x-ms-client-request-id": "cebe69f025a415981be6848279c68aae", + "x-ms-correlation-request-id": "e26dc8f7-f782-4580-9892-33ef528c5b6c", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "73f754a6-f072-4208-bff7-5833a7ac672d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063019Z:e26dc8f7-f782-4580-9892-33ef528c5b6c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5b1727b271a89f1e818fd0cb23bebb3e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "be0e3705-d6bc-4f99-8794-ede39099979d", + "x-ms-client-request-id": "5b1727b271a89f1e818fd0cb23bebb3e", + "x-ms-correlation-request-id": "92c41f95-4f31-476a-8dc3-1bd8cba8225e", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "57cd2867-402b-4cc5-bccb-673dd1569ae2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063021Z:92c41f95-4f31-476a-8dc3-1bd8cba8225e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1e10397e055b46fc8881e5d478239937", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "005636ae-244a-4020-afd7-97f86aa89ec2", + "x-ms-client-request-id": "1e10397e055b46fc8881e5d478239937", + "x-ms-correlation-request-id": "7c212c2d-2053-458b-ae51-7467a5d554ac", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "481a4cba-e4bb-47b4-908b-467d5c109fee", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063022Z:7c212c2d-2053-458b-ae51-7467a5d554ac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4a555ab8de377f7a4a1e4c1555ccf25d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "38ab2719-8800-4467-a125-200fa89cbe0e", + "x-ms-client-request-id": "4a555ab8de377f7a4a1e4c1555ccf25d", + "x-ms-correlation-request-id": "06ac64a9-dff3-42c0-93e2-76d59cd32ad0", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "8e7eb131-7197-4fa7-93da-547578b12c98", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063024Z:06ac64a9-dff3-42c0-93e2-76d59cd32ad0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3f04452b6cb6ad532ad0d2268b49275d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7971b4d9-e147-4e8d-a3c1-9e7245e0c0ce", + "x-ms-client-request-id": "3f04452b6cb6ad532ad0d2268b49275d", + "x-ms-correlation-request-id": "bba17fb0-b03e-4220-bb1c-6f2d37ca0a49", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "c173b0ad-8607-4794-b5f6-08605b3c6306", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063025Z:bba17fb0-b03e-4220-bb1c-6f2d37ca0a49" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c81299f570689f07bf91d33db8e7f1bc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1b8c0f51-2ac4-40c2-b686-568adc867ff3", + "x-ms-client-request-id": "c81299f570689f07bf91d33db8e7f1bc", + "x-ms-correlation-request-id": "412dcf89-3ae7-4ac1-8ffa-c8c1e41bb0c5", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "5a7a6f5c-7c62-40df-8c3e-cb279a39732d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063028Z:412dcf89-3ae7-4ac1-8ffa-c8c1e41bb0c5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "33a9888e5a1f4c8107a820660c53f401", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1f21a89f-27a0-4314-9ec6-9c2dbc8237a3", + "x-ms-client-request-id": "33a9888e5a1f4c8107a820660c53f401", + "x-ms-correlation-request-id": "b675e840-ec4a-4edf-9795-449661302908", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "1162b712-7d39-4352-bf04-654354e7fbdb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063029Z:b675e840-ec4a-4edf-9795-449661302908" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bb1feef72ababaf43e6580259916f442", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "65a3e901-8819-406f-bf92-efa0c5d66a2d", + "x-ms-client-request-id": "bb1feef72ababaf43e6580259916f442", + "x-ms-correlation-request-id": "e3b32e5b-4ff4-41c2-81af-ba3fc7106978", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "5a10049d-33c2-4749-a1bc-287fb8fb28da", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063030Z:e3b32e5b-4ff4-41c2-81af-ba3fc7106978" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "039816dff3a09b3e18c6c0c050a1936b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "be6bc72a-d97d-4fec-b25e-6e258efa0420", + "x-ms-client-request-id": "039816dff3a09b3e18c6c0c050a1936b", + "x-ms-correlation-request-id": "46458537-4095-4bf4-af41-4d63151d98ca", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "775fe862-a795-40e8-8876-d07d62dd7321", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063032Z:46458537-4095-4bf4-af41-4d63151d98ca" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c945d19c36c7630193eff5b9d95cb3f1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "bb690633-9c8f-45fd-995a-47680620b5c3", + "x-ms-client-request-id": "c945d19c36c7630193eff5b9d95cb3f1", + "x-ms-correlation-request-id": "52cb8871-aaed-46a1-8c75-e09c15b8e43a", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "e417ad38-4fd9-402a-b11a-ff341f7c4abe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063033Z:52cb8871-aaed-46a1-8c75-e09c15b8e43a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f586ddb3f0bb0361af84a2f36a34699c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "723e6a48-f2b8-493d-863d-0003975b6d78", + "x-ms-client-request-id": "f586ddb3f0bb0361af84a2f36a34699c", + "x-ms-correlation-request-id": "d45565ad-f999-4bba-9972-17fdb941ce02", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "1970b8c1-abea-4ef1-a1d9-912baebed44d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063034Z:d45565ad-f999-4bba-9972-17fdb941ce02" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c78814d22ad0a97a143470b0fe85c1bc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "a6cc03dd-48e0-4275-aec7-7ce9a7bb4c20", + "x-ms-client-request-id": "c78814d22ad0a97a143470b0fe85c1bc", + "x-ms-correlation-request-id": "6bd9922a-cdf2-4c87-b790-32943cb34b8e", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "be1b442e-95b8-4563-ba8a-2834d54837c9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063037Z:6bd9922a-cdf2-4c87-b790-32943cb34b8e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "720ccf129d1aacb070411a43930ef95f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "18dd920c-82fe-4c79-b3c4-13209386aa30", + "x-ms-client-request-id": "720ccf129d1aacb070411a43930ef95f", + "x-ms-correlation-request-id": "be6c0d7c-710f-4cd8-9fa6-221217e6891c", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "fb3eec49-6165-4136-81f0-dbbdd7054f9f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063039Z:be6c0d7c-710f-4cd8-9fa6-221217e6891c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c4e75885ebd4882063dde08680b0042a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a55a6b3d-1ac5-4e92-87bb-a38a206a3766", + "x-ms-client-request-id": "c4e75885ebd4882063dde08680b0042a", + "x-ms-correlation-request-id": "4ce3d95d-ec5a-418e-89af-a0121dc57613", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "7deab58d-dbae-40cd-ac06-1dba8fc3864b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063040Z:4ce3d95d-ec5a-418e-89af-a0121dc57613" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9ae0e6c3f727348164db568e10371606", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1e198a7c-820f-4dcd-b223-04df004f978f", + "x-ms-client-request-id": "9ae0e6c3f727348164db568e10371606", + "x-ms-correlation-request-id": "845294f1-d0c6-48a5-a02a-8bcd1349e5c5", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "fc7f7f1e-b1ae-40d3-9b95-7023267133bc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063041Z:845294f1-d0c6-48a5-a02a-8bcd1349e5c5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a62b103afc9d27e8af840f3dbd292bc0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b682a591-a3fe-427a-868c-eca15d017354", + "x-ms-client-request-id": "a62b103afc9d27e8af840f3dbd292bc0", + "x-ms-correlation-request-id": "0ceb13a3-b8ba-4de9-b883-8ba02113b999", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "1ed4ad13-ad38-45fe-9b72-b99490409293", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063043Z:0ceb13a3-b8ba-4de9-b883-8ba02113b999" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ac7fef3d5f2d8e38d6b35ff89591782b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f6dc93f4-808d-478c-be10-977b1df63c9b", + "x-ms-client-request-id": "ac7fef3d5f2d8e38d6b35ff89591782b", + "x-ms-correlation-request-id": "b9764b3f-f655-424d-acb4-d8771a331aca", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "cd177cbd-8ed1-4f80-90c3-bf9a148d8377", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063045Z:b9764b3f-f655-424d-acb4-d8771a331aca" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "704cd9c65e85c68dfeb9eba2e744763b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "98e5b513-1a1b-405f-91e3-4d6189dccf4f", + "x-ms-client-request-id": "704cd9c65e85c68dfeb9eba2e744763b", + "x-ms-correlation-request-id": "39624bc8-817d-41f1-8e32-4b24f11bea54", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "8a859027-45c8-46a3-80fd-61485a89f32d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063047Z:39624bc8-817d-41f1-8e32-4b24f11bea54" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "215196b069b7dbd9d89dd0e99df0911d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7cd1806c-b7ef-4664-b57c-8e9715a39525", + "x-ms-client-request-id": "215196b069b7dbd9d89dd0e99df0911d", + "x-ms-correlation-request-id": "3b62cea6-9c41-4e40-b621-081d2e9cd44d", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "82957001-e375-4cfb-8127-1b18e40b0cb2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063049Z:3b62cea6-9c41-4e40-b621-081d2e9cd44d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e477e40bbbdcde3b61b9ae737395a692", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "63428022-f8d4-4c37-af9d-a1019d7a035d", + "x-ms-client-request-id": "e477e40bbbdcde3b61b9ae737395a692", + "x-ms-correlation-request-id": "3b019599-3d07-4404-a016-729519423f92", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "21402d4d-dbcf-42ad-b1f8-bce14391cef9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063050Z:3b019599-3d07-4404-a016-729519423f92" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ff48233c563f5d73007097e78ea3290e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "c048afde-a1aa-4822-bf48-c512e25437ef", + "x-ms-client-request-id": "ff48233c563f5d73007097e78ea3290e", + "x-ms-correlation-request-id": "fb1d174b-42c4-4341-8443-0f47f672479e", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "e49dca0f-b793-4868-81bd-9ac6f6009960", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063051Z:fb1d174b-42c4-4341-8443-0f47f672479e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0396cd2892cdf45e5a73bffebb666842", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d86912eb-155b-4b24-9d3e-e1b0d02df398", + "x-ms-client-request-id": "0396cd2892cdf45e5a73bffebb666842", + "x-ms-correlation-request-id": "56b1000b-3439-4566-b606-2b4a1274d34c", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "6e137036-fbc5-4d56-b351-d46669722699", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063052Z:56b1000b-3439-4566-b606-2b4a1274d34c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "79ad3df692a7b5de701ae36c235350be", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f4b69386-858a-443a-9dda-e7267ca57444", + "x-ms-client-request-id": "79ad3df692a7b5de701ae36c235350be", + "x-ms-correlation-request-id": "f351ce8e-bff5-44ec-86a3-15b8d2966c2c", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "dcbdcd4a-5e7c-4792-bb8e-042e82fa8c24", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063054Z:f351ce8e-bff5-44ec-86a3-15b8d2966c2c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a64ba090a2feaac4c453a4cc9675a19a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "725d7389-d2a1-454d-aa0c-067532a0ad3f", + "x-ms-client-request-id": "a64ba090a2feaac4c453a4cc9675a19a", + "x-ms-correlation-request-id": "d2a52644-7325-4977-b7b4-caef2866da08", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "51ff9575-7f2e-48c3-89d9-876a1cb6b5e5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063055Z:d2a52644-7325-4977-b7b4-caef2866da08" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "50f15508b0f69566efe193b3aef2d007", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "7727917d-ad55-4653-8962-3638b45db7fd", + "x-ms-client-request-id": "50f15508b0f69566efe193b3aef2d007", + "x-ms-correlation-request-id": "cc29868a-9425-49de-9eac-64d3e81553ea", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "a16d0b54-cade-4877-b232-f6b190ce2c35", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063056Z:cc29868a-9425-49de-9eac-64d3e81553ea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1b6d0123c11a53437802b454ee111efa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "144aa9a7-6827-41ad-885e-e4299153f55c", + "x-ms-client-request-id": "1b6d0123c11a53437802b454ee111efa", + "x-ms-correlation-request-id": "db046d20-3bb4-4505-833c-ba25f6df4ac9", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "f127f6ac-92db-42f4-a963-c21bf546cace", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063058Z:db046d20-3bb4-4505-833c-ba25f6df4ac9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ce644978ff61e0c739b5b71c0f11fbd2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4fbb00de-d634-44ec-80a4-449f4063e099", + "x-ms-client-request-id": "ce644978ff61e0c739b5b71c0f11fbd2", + "x-ms-correlation-request-id": "0438dc5d-1eda-44fa-a461-709203b991c2", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "c35b98dd-c3b2-4b63-b1a3-55afe66e1122", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063100Z:0438dc5d-1eda-44fa-a461-709203b991c2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "95a99c838607467f119dd7f3fb12a7dd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "48f5bc90-a14a-41af-a65c-4c3b67fd30c7", + "x-ms-client-request-id": "95a99c838607467f119dd7f3fb12a7dd", + "x-ms-correlation-request-id": "91f05db1-e319-4cc0-97bf-2a8730d4c572", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "1779f1b7-c0a4-48b4-a798-ecf0e30f2ffb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063101Z:91f05db1-e319-4cc0-97bf-2a8730d4c572" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "643a98c3028d23a5398de1650a274467", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "047fe41e-f016-47a8-b5dd-ac937591aa13", + "x-ms-client-request-id": "643a98c3028d23a5398de1650a274467", + "x-ms-correlation-request-id": "024ce3c4-1b00-445e-a68e-bfdd8517eb0e", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "fb16e927-e507-4ff4-a2b7-8e0f378d1544", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063103Z:024ce3c4-1b00-445e-a68e-bfdd8517eb0e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "51d0e1078868f1f3ca1dbcc427d4e427", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d9cb378e-27a4-4773-a41e-dd6e011d085a", + "x-ms-client-request-id": "51d0e1078868f1f3ca1dbcc427d4e427", + "x-ms-correlation-request-id": "15e457f2-1469-464c-8fb2-5b14192fe33f", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "ec5be457-8fab-4183-a04b-96d3b7ad5ceb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063104Z:15e457f2-1469-464c-8fb2-5b14192fe33f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7659d90d96d78144f6865c79a5193cea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "94891b63-fe42-48c8-985f-fe71ffce6dab", + "x-ms-client-request-id": "7659d90d96d78144f6865c79a5193cea", + "x-ms-correlation-request-id": "da94b147-3e8b-4669-9968-f6d10ed39307", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "173e8384-5ad6-42b5-a621-c30ec28a5344", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063105Z:da94b147-3e8b-4669-9968-f6d10ed39307" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1aec705956413a75a548997045e1fb64", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "aff520ac-e0bd-481a-aafc-85fac8d9b40f", + "x-ms-client-request-id": "1aec705956413a75a548997045e1fb64", + "x-ms-correlation-request-id": "950da93c-4bc8-4030-b907-0468f1669da0", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "83a194b7-ef30-41ce-b5fa-8e2c6b4bb4ea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063106Z:950da93c-4bc8-4030-b907-0468f1669da0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3057b9a9cdcd70909c4f5ae12c794cb0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ffd2bd53-a7d8-4e4e-af97-e0c0ac4fc5b0", + "x-ms-client-request-id": "3057b9a9cdcd70909c4f5ae12c794cb0", + "x-ms-correlation-request-id": "6a940837-3dfd-47dc-919a-77784908a37c", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "3db68b0f-cef6-4716-837e-6c876fbf5eba", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063108Z:6a940837-3dfd-47dc-919a-77784908a37c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b76bd2e1cae8b7e6641fd18efcd43b15", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1ca11264-af0e-4807-af2c-e7aa5cf7d0d2", + "x-ms-client-request-id": "b76bd2e1cae8b7e6641fd18efcd43b15", + "x-ms-correlation-request-id": "aa6ed871-f7e0-4fd5-8753-8484b1241d72", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "2667badb-730b-4bff-9bab-dbd9176e4781", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063109Z:aa6ed871-f7e0-4fd5-8753-8484b1241d72" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ebd0f78a0bc28b1de07b7df1fb930d2c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "555e7356-7332-4221-a051-04126fdc8c1c", + "x-ms-client-request-id": "ebd0f78a0bc28b1de07b7df1fb930d2c", + "x-ms-correlation-request-id": "23080f6e-4211-4b66-afb2-18b2147ef054", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "c43b13b4-036e-4047-8632-2fe9d142bf89", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063110Z:23080f6e-4211-4b66-afb2-18b2147ef054" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "728ee9fc4376df7cd3a0ccaefc0273c7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1e354e71-a6f5-4a47-abba-1788fee253e2", + "x-ms-client-request-id": "728ee9fc4376df7cd3a0ccaefc0273c7", + "x-ms-correlation-request-id": "0ad2fbf8-d835-4972-a6a3-ac14a48daab7", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "5e21ff90-24f6-4eea-a979-1fe593f51bc6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063112Z:0ad2fbf8-d835-4972-a6a3-ac14a48daab7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3557451461a8d5eeb5dfd76c4cf4bbd0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "00ca9fc6-7536-4b8d-ad93-7f8ae0397e82", + "x-ms-client-request-id": "3557451461a8d5eeb5dfd76c4cf4bbd0", + "x-ms-correlation-request-id": "98d896ab-c9f3-487d-b0fb-6e3cbd3443fe", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "c5197947-7da7-4744-8e53-8703908c74c5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063113Z:98d896ab-c9f3-487d-b0fb-6e3cbd3443fe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1392a511c846469e7af117213f6e8fde", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3cffd531-8e61-474f-9dc0-aaa7aca3209e", + "x-ms-client-request-id": "1392a511c846469e7af117213f6e8fde", + "x-ms-correlation-request-id": "9cdad358-7f21-4814-8570-1a75ee579b22", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "8cd33ea6-9714-4544-9dcb-95b1bad5241d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063114Z:9cdad358-7f21-4814-8570-1a75ee579b22" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b6ddb607d83c9a83fab9bd976c0f93df", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "69004083-0d82-4643-9de6-efc5697e925a", + "x-ms-client-request-id": "b6ddb607d83c9a83fab9bd976c0f93df", + "x-ms-correlation-request-id": "966f04c7-661a-4c35-9c73-ae1adf3ad170", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "2a853f1d-f04d-4017-adad-975f9150ecf7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063115Z:966f04c7-661a-4c35-9c73-ae1adf3ad170" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "569cfce55f704b81a610bbb74acd9646", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6e64f705-18dc-4b81-b7f5-e37eb6c58bbf", + "x-ms-client-request-id": "569cfce55f704b81a610bbb74acd9646", + "x-ms-correlation-request-id": "a7baad3c-9a0c-499e-bceb-22131ea97f3b", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "73d8cd82-1242-4981-bc79-534193e000fd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063117Z:a7baad3c-9a0c-499e-bceb-22131ea97f3b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9665f94f0417399422f7198c0b07da6b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2a87daa3-ec50-4400-be2e-f1454a4ff04f", + "x-ms-client-request-id": "9665f94f0417399422f7198c0b07da6b", + "x-ms-correlation-request-id": "a2e87078-45dd-4643-8838-bc497c115fa6", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "9a577fce-fa49-48e6-95be-f65a83abbf4b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063118Z:a2e87078-45dd-4643-8838-bc497c115fa6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "433c385d39d2a86e34920f2b1ccb502c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9a5adbbb-199e-413b-8cc3-a572fafc0f3c", + "x-ms-client-request-id": "433c385d39d2a86e34920f2b1ccb502c", + "x-ms-correlation-request-id": "7b1b31d0-da9a-4d15-907a-9a14551519b6", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "ea4f0eb9-0b1f-449b-811a-14a378b05891", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063119Z:7b1b31d0-da9a-4d15-907a-9a14551519b6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "73477723fdaae0c76763347846f4409f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a8a4f4e4-4dd1-42e6-9463-e561c70cc55b", + "x-ms-client-request-id": "73477723fdaae0c76763347846f4409f", + "x-ms-correlation-request-id": "c570f44e-3aec-483f-8d38-09bf04a83a1e", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "bc3039bb-1dba-4634-b452-8a08614905ec", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063121Z:c570f44e-3aec-483f-8d38-09bf04a83a1e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "11595036539116738bbc6185f5691c56", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "880add14-65c4-466d-968c-1250c3819274", + "x-ms-client-request-id": "11595036539116738bbc6185f5691c56", + "x-ms-correlation-request-id": "d8e774d5-82b5-4aef-a6fa-3588dcae9796", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "7a4421b4-2727-43dd-bfd0-1d3da5b8055a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063122Z:d8e774d5-82b5-4aef-a6fa-3588dcae9796" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9369eca766bf60c0705bdb6f04f56140", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1e14262d-50de-4162-b0c9-f2738c717327", + "x-ms-client-request-id": "9369eca766bf60c0705bdb6f04f56140", + "x-ms-correlation-request-id": "feefb5c3-e621-4d7a-b33b-d282b4e13698", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "653f5677-2c1e-4b69-8e4b-d2069cf47a8e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063123Z:feefb5c3-e621-4d7a-b33b-d282b4e13698" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ccf470513e71cf9b0331e8ed9b42ebfe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "296ea492-065e-4204-ac23-7348fe563fbf", + "x-ms-client-request-id": "ccf470513e71cf9b0331e8ed9b42ebfe", + "x-ms-correlation-request-id": "6f9fc5ea-e5cc-4ac9-a967-e8f5e00a67ef", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "16ea2c82-e14d-4c49-b2bb-9deb11779924", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063124Z:6f9fc5ea-e5cc-4ac9-a967-e8f5e00a67ef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "59d0dd46ac8ad0df8ff9a13577041295", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "50517c0c-5c0b-4819-abd1-81c3c200c449", + "x-ms-client-request-id": "59d0dd46ac8ad0df8ff9a13577041295", + "x-ms-correlation-request-id": "69afeea1-7df5-4e0c-bedc-c1f3ea656517", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "dceaf3cf-5654-40a9-bfe8-5d4a31f9bbfc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063126Z:69afeea1-7df5-4e0c-bedc-c1f3ea656517" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8433215b4f7469e55099908e7ed3c42e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6de9f576-fbcb-4e61-baf6-ba0dd39a510c", + "x-ms-client-request-id": "8433215b4f7469e55099908e7ed3c42e", + "x-ms-correlation-request-id": "20b87178-e4b1-463e-87a1-a4fd0f11ec8a", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "97a6c7d9-a20c-4ac9-974d-9b8b466d45e7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063127Z:20b87178-e4b1-463e-87a1-a4fd0f11ec8a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2628dc700725a5b591243d789d6658fe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c6d24ade-886b-4db0-bfa0-1a4e8c5a2733", + "x-ms-client-request-id": "2628dc700725a5b591243d789d6658fe", + "x-ms-correlation-request-id": "cf43aefa-bf89-4b02-9af1-1bb370c9e0cd", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "b40538ed-15c4-41df-b165-01e5c396e41e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063128Z:cf43aefa-bf89-4b02-9af1-1bb370c9e0cd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7a92521f670ff789f86709f01b5051bc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "38cd5d1f-1bb4-4c7b-b685-ac35e93ef555", + "x-ms-client-request-id": "7a92521f670ff789f86709f01b5051bc", + "x-ms-correlation-request-id": "e208f24d-8c77-4690-9002-f6f9116430c7", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "19ffe021-5fda-4607-83c1-b0ba0721d0ae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063130Z:e208f24d-8c77-4690-9002-f6f9116430c7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9bc47334ebdc53706b8df250126cccea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c116d399-f5ee-4a8e-8010-033a7253823a", + "x-ms-client-request-id": "9bc47334ebdc53706b8df250126cccea", + "x-ms-correlation-request-id": "1c7249fe-ea4a-48c1-9b11-56ae90336ce4", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "9851fa6e-a97a-44df-94f6-473e1ab97c7c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063131Z:1c7249fe-ea4a-48c1-9b11-56ae90336ce4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2b6f92414a40091e52312dbdfec48a40", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9a8786eb-161b-4a80-92b5-63c5e46f50fe", + "x-ms-client-request-id": "2b6f92414a40091e52312dbdfec48a40", + "x-ms-correlation-request-id": "e4238baf-23d2-4e5a-876b-b65bf43424a7", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "de159e85-62b3-4162-814d-d907541e21b5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063132Z:e4238baf-23d2-4e5a-876b-b65bf43424a7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2a4481d2bca13321e23e0f827439e48b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "89579266-fe99-4219-bc3d-653ba269a952", + "x-ms-client-request-id": "2a4481d2bca13321e23e0f827439e48b", + "x-ms-correlation-request-id": "86a6a69e-a94f-497f-ac69-8b84c8d19e77", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "f31da2ab-213a-4120-87cc-300086e3d994", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063134Z:86a6a69e-a94f-497f-ac69-8b84c8d19e77" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "89af1e9b26e1ea7b54bb49abbdb254a6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b09686a7-7d18-4cb5-9739-2eea62c84df8", + "x-ms-client-request-id": "89af1e9b26e1ea7b54bb49abbdb254a6", + "x-ms-correlation-request-id": "eb9e5884-c9d1-4ef9-9fdb-54fad8539628", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "c145a2da-5583-42bf-9adf-1d23e2b88fe5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063135Z:eb9e5884-c9d1-4ef9-9fdb-54fad8539628" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "917eb103a1288548703b48023a9c9419", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5ff9ec44-a29e-4dae-9d71-0d32c75de6d0", + "x-ms-client-request-id": "917eb103a1288548703b48023a9c9419", + "x-ms-correlation-request-id": "bfcf93b5-4963-420d-be69-7fd021d814c1", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "12c446d5-2746-4f4d-b5cc-2d1bbe33a86a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063136Z:bfcf93b5-4963-420d-be69-7fd021d814c1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "df22a24c0015ab5f0559d5e573767630", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "8ff680f2-14cd-42cf-ad7f-e6830bedd1ce", + "x-ms-client-request-id": "df22a24c0015ab5f0559d5e573767630", + "x-ms-correlation-request-id": "94b93117-2207-4322-9801-8a70e5d5797e", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "54cc2504-7287-4463-834f-06b229b7179f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063137Z:94b93117-2207-4322-9801-8a70e5d5797e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c27e68e953baf962d62918a5dd79afb8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d921995b-7772-41e2-98d8-0a8b6a36de0f", + "x-ms-client-request-id": "c27e68e953baf962d62918a5dd79afb8", + "x-ms-correlation-request-id": "60554826-1ef6-4467-81f3-6d535fce93a3", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "f518316d-cb64-49fb-9e97-72d7825e5d0c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063139Z:60554826-1ef6-4467-81f3-6d535fce93a3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1b5e2f26758f029152d28bcecc6211f9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a7f39cfa-02d7-48a6-b32e-1bda85fac639", + "x-ms-client-request-id": "1b5e2f26758f029152d28bcecc6211f9", + "x-ms-correlation-request-id": "9c6292e3-b6c9-4818-876a-f5ca3ead7c2b", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "cc3dee7e-f23b-4c1f-9148-294567dfb6b6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063140Z:9c6292e3-b6c9-4818-876a-f5ca3ead7c2b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d21817c5d21df95e3f2909ebe7b9ce8c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c1d9e8b5-484a-4fc7-bae7-ea8034587b77", + "x-ms-client-request-id": "d21817c5d21df95e3f2909ebe7b9ce8c", + "x-ms-correlation-request-id": "2309bd34-f0f5-4131-94ef-7fc18f55a357", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "0fec5f24-1471-4305-8567-9795e57a3b48", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063141Z:2309bd34-f0f5-4131-94ef-7fc18f55a357" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "43bf1daa5b1874a1d77c70e7c7932d73", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "7165a1f2-170b-4604-9b84-1e370fb60970", + "x-ms-client-request-id": "43bf1daa5b1874a1d77c70e7c7932d73", + "x-ms-correlation-request-id": "97b98c85-90b4-4f36-a1c1-f8d4e2e0ee51", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "22de4862-ad28-4838-be5e-8db81853b7eb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063143Z:97b98c85-90b4-4f36-a1c1-f8d4e2e0ee51" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c5e01f17dc60549ad065db666ba51a98", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "33a1e494-c9a4-4808-95ae-e7d26569e924", + "x-ms-client-request-id": "c5e01f17dc60549ad065db666ba51a98", + "x-ms-correlation-request-id": "50477c4c-6c32-413c-88ea-83d628f769bc", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "a7ec36ff-17f6-4cb5-b85f-cdefca239947", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063144Z:50477c4c-6c32-413c-88ea-83d628f769bc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ae24fe04cda36ae176a4fba0617631ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "18c20756-b70f-4c57-9416-b55ac4778504", + "x-ms-client-request-id": "ae24fe04cda36ae176a4fba0617631ab", + "x-ms-correlation-request-id": "bcbacdd7-540b-44bb-8bc2-58582fcf5b59", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "b24cf2c4-35a9-467c-af2c-d49af7945b7c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063145Z:bcbacdd7-540b-44bb-8bc2-58582fcf5b59" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c8d396fc08d9cd2c836a73b27f3a0831", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "d5686177-178e-4aa3-ab33-cb0ad6597d65", + "x-ms-client-request-id": "c8d396fc08d9cd2c836a73b27f3a0831", + "x-ms-correlation-request-id": "7c798a37-f634-48d1-83f0-ea6b7b2d6278", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "e94f80e5-7540-4745-8c97-a02d9d1a828b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063147Z:7c798a37-f634-48d1-83f0-ea6b7b2d6278" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c8e3d8627e6f4acf3e754ebce1f9f359", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "aba3af7e-13ae-4845-903a-af3f20015a55", + "x-ms-client-request-id": "c8e3d8627e6f4acf3e754ebce1f9f359", + "x-ms-correlation-request-id": "1008234c-670a-453e-ab84-cfc6ca064ad7", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "a8f60d5f-2a7e-4fe6-88ee-0e998eb5c0c0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063148Z:1008234c-670a-453e-ab84-cfc6ca064ad7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d56a303451d1fbbed2562b395a2eeb3c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5aed31af-30ca-474f-9f83-59b7dd68a85b", + "x-ms-client-request-id": "d56a303451d1fbbed2562b395a2eeb3c", + "x-ms-correlation-request-id": "b554e4a5-af51-4889-b720-40481e9a4951", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "b4d950a7-f67f-4747-b3ff-7a616eddd256", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063150Z:b554e4a5-af51-4889-b720-40481e9a4951" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "893ec99b68937d3bc6898a64b96feb89", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "8a3cffd6-3f2a-4583-8c5e-1570dedf8bd5", + "x-ms-client-request-id": "893ec99b68937d3bc6898a64b96feb89", + "x-ms-correlation-request-id": "f40a650e-c0b7-40fc-8e64-08de75c2e9ed", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "1e3aa4d0-38e3-4619-abf2-1a7e83d03807", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063151Z:f40a650e-c0b7-40fc-8e64-08de75c2e9ed" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4f7e197732d0106019e8f6195395ef0f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "55f7b841-c113-4b4b-a77f-f14b5d41007f", + "x-ms-client-request-id": "4f7e197732d0106019e8f6195395ef0f", + "x-ms-correlation-request-id": "57c7db86-4331-4605-82d8-73f399f543ef", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "163bde3f-4b75-4ff7-b973-a35616ae7cc2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063152Z:57c7db86-4331-4605-82d8-73f399f543ef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1820128a6abbcbc6f4ec0e47c75a4162", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0bb7e017-6e0d-418b-8283-203aabd44d61", + "x-ms-client-request-id": "1820128a6abbcbc6f4ec0e47c75a4162", + "x-ms-correlation-request-id": "d6df1e68-beb0-47c4-8356-d8aaa15c8fc9", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "08ef580e-5bdb-406f-92eb-970e7a8e1fa0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063154Z:d6df1e68-beb0-47c4-8356-d8aaa15c8fc9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "41c2a26a9baf686b692d6fab72222a30", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8017c6a8-5d25-4c05-9be6-faaebd840b38", + "x-ms-client-request-id": "41c2a26a9baf686b692d6fab72222a30", + "x-ms-correlation-request-id": "1f8d5261-3571-4a51-89b7-167f1783196b", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "973913d7-a1c4-4272-8173-8c3a1da7d268", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063155Z:1f8d5261-3571-4a51-89b7-167f1783196b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a7d97a9ad34f0dcd52b35ae4241848bf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1c4abbf9-9197-4cbf-a0ac-38fe57702286", + "x-ms-client-request-id": "a7d97a9ad34f0dcd52b35ae4241848bf", + "x-ms-correlation-request-id": "6d98195e-7d5f-4d3f-866c-e937cf1a4414", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "5e758237-9906-45d8-a089-6881a2dbaa0f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063157Z:6d98195e-7d5f-4d3f-866c-e937cf1a4414" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b0ae93a6add3ee5fa7b8ae8dfa1b59d2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "54025ad0-69bc-4dc6-ab31-970857bfc53a", + "x-ms-client-request-id": "b0ae93a6add3ee5fa7b8ae8dfa1b59d2", + "x-ms-correlation-request-id": "f08835aa-5ec9-4bd2-80d9-5bb12fe0a5b7", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "bc8acab2-7111-43a0-8fab-3c5c2b58827d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063158Z:f08835aa-5ec9-4bd2-80d9-5bb12fe0a5b7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4cadddc19a809613d4b5effc41874451", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "2239c133-d537-4b3c-989b-3dbff359b640", + "x-ms-client-request-id": "4cadddc19a809613d4b5effc41874451", + "x-ms-correlation-request-id": "939805cc-3483-4dcd-8f67-858b37a08d47", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "43339e78-b458-46dc-9438-2c86d457c938", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063159Z:939805cc-3483-4dcd-8f67-858b37a08d47" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "df04afe47973ec5d1aea0096253f1237", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a6354653-8fd9-4406-b52b-22fb91d3de0c", + "x-ms-client-request-id": "df04afe47973ec5d1aea0096253f1237", + "x-ms-correlation-request-id": "72b31b99-4d2f-48cf-9013-0596e9358068", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "9feff36b-4891-45bb-98a7-7b45a5614d14", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063201Z:72b31b99-4d2f-48cf-9013-0596e9358068" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "46228859fc6b0c3e7f18dc1ebe63ad20", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "04338eea-a151-4f94-a360-c0447965393a", + "x-ms-client-request-id": "46228859fc6b0c3e7f18dc1ebe63ad20", + "x-ms-correlation-request-id": "79648e86-6a71-483a-9109-d7f334d1e552", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "6fe56ff1-ee11-4933-ad50-cde99eaec347", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063202Z:79648e86-6a71-483a-9109-d7f334d1e552" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4ba85d737916475e80c031959a7d7194", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "a2cdb54b-cf82-4b21-8c86-470c4b798a17", + "x-ms-client-request-id": "4ba85d737916475e80c031959a7d7194", + "x-ms-correlation-request-id": "37a05a38-b161-42ad-ad9f-f2ba03578b31", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "3463f786-dc31-4324-b2ba-9ca5756c6e17", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063204Z:37a05a38-b161-42ad-ad9f-f2ba03578b31" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b8a2b7a3fe64e8e670f8605b9d3f2eb7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "baa1d793-64a7-49e6-b8f3-2cbbc5a4fe84", + "x-ms-client-request-id": "b8a2b7a3fe64e8e670f8605b9d3f2eb7", + "x-ms-correlation-request-id": "20e61297-ef6b-4ece-bf70-ab6936639af1", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "0f18de02-3921-46df-8b88-e51833ad3e78", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063205Z:20e61297-ef6b-4ece-bf70-ab6936639af1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c723e03dc697df202adac5aacaa97102", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0111f069-9c64-47df-8147-d04b179f9bdf", + "x-ms-client-request-id": "c723e03dc697df202adac5aacaa97102", + "x-ms-correlation-request-id": "f49483e5-8ce7-40b4-95fd-62edf820552b", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "a8021681-9904-4d5f-9370-394581babed3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063207Z:f49483e5-8ce7-40b4-95fd-62edf820552b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "067a47a6f5c175bb77c0da1d1902aa41", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "9c7f7450-55b1-42c8-8f77-8d8e9a24737a", + "x-ms-client-request-id": "067a47a6f5c175bb77c0da1d1902aa41", + "x-ms-correlation-request-id": "87d8d3f4-1a8d-4d1a-9db4-e09c60080a27", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "d5cc7232-a4bc-49e9-ac0f-c9af46c066b4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063208Z:87d8d3f4-1a8d-4d1a-9db4-e09c60080a27" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ba587a92a959dcfd97c28d89383b1dc7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "dde40a7f-fdae-4d3e-8ea6-0b4e79675e11", + "x-ms-client-request-id": "ba587a92a959dcfd97c28d89383b1dc7", + "x-ms-correlation-request-id": "8765f208-82db-4262-89f3-32197e72c9bf", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "21d169ab-1e53-4652-afc5-dc702332ed67", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063209Z:8765f208-82db-4262-89f3-32197e72c9bf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "56b45e8727c448f624ad50d7eb02c627", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "98545b67-75f9-4319-a86f-1fb77af1b195", + "x-ms-client-request-id": "56b45e8727c448f624ad50d7eb02c627", + "x-ms-correlation-request-id": "431e051c-183e-4942-a49b-6e6e6950030e", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "6d6f103d-07e8-4b0e-974f-8dc9e3552f3f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063210Z:431e051c-183e-4942-a49b-6e6e6950030e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "50178430b750fca8499e6ffe67313c3b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "04dad34a-3a06-47cd-bcde-52ecd512a8aa", + "x-ms-client-request-id": "50178430b750fca8499e6ffe67313c3b", + "x-ms-correlation-request-id": "11a85b5c-bd1c-49e0-9834-50db32b86ab4", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "02052005-8ad6-4704-b6bc-c292f35d14e2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063212Z:11a85b5c-bd1c-49e0-9834-50db32b86ab4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bb9613a2534d6b7c831095ac5926f094", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "49025115-0999-4a68-8d1e-65f3a5ac5b78", + "x-ms-client-request-id": "bb9613a2534d6b7c831095ac5926f094", + "x-ms-correlation-request-id": "d552958f-2fdd-4ad1-91c8-ca0b7a3c1ad3", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "006fa157-a3b9-44b3-9ef9-d0358d44670f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063213Z:d552958f-2fdd-4ad1-91c8-ca0b7a3c1ad3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b45866fccd23cf76b5b80c26b7f7e0f2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "58a14fc5-4d0a-4b89-bc9e-abee376818c6", + "x-ms-client-request-id": "b45866fccd23cf76b5b80c26b7f7e0f2", + "x-ms-correlation-request-id": "5188637b-78ac-48ff-839f-3c47d10e485b", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "3f6a036c-0520-4642-8e98-50be097c581e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063214Z:5188637b-78ac-48ff-839f-3c47d10e485b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d83414710a6cddd908accc3f22fba323", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1740a051-8902-46ae-82cc-7f72bfaf2326", + "x-ms-client-request-id": "d83414710a6cddd908accc3f22fba323", + "x-ms-correlation-request-id": "e7fe1a07-2fbd-4ac7-9dbf-04bd61d8a46b", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "f5999c45-ad16-4bd1-bdb7-1f875b11a7b8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063216Z:e7fe1a07-2fbd-4ac7-9dbf-04bd61d8a46b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0002dbad88d9d5179cc705954756b38c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "54573438-d4b9-46e1-b81f-2f5c88a18a9c", + "x-ms-client-request-id": "0002dbad88d9d5179cc705954756b38c", + "x-ms-correlation-request-id": "816f89d7-82d3-4f5f-ac09-d1aa038db2a6", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "8baec081-5942-4f7b-9b9e-537b931b52ad", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063217Z:816f89d7-82d3-4f5f-ac09-d1aa038db2a6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "443ba22f18f1f2288c7bac770037acba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "d6da2660-4273-444f-b587-02f45bf24374", + "x-ms-client-request-id": "443ba22f18f1f2288c7bac770037acba", + "x-ms-correlation-request-id": "68c6fd1f-d433-4fdb-b9e1-dfccb55def49", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "4edbf92d-2a18-44cf-9af7-fc3a730be597", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063219Z:68c6fd1f-d433-4fdb-b9e1-dfccb55def49" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dc78e814dff5e819fc5f3ca4044396b1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ea7b799b-84df-4449-be9c-57f6b14b1896", + "x-ms-client-request-id": "dc78e814dff5e819fc5f3ca4044396b1", + "x-ms-correlation-request-id": "59879d4a-35f9-40a5-a82b-768c74c6017f", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "033b8759-d81c-46d5-a943-847a4e3db15c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063221Z:59879d4a-35f9-40a5-a82b-768c74c6017f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7f1040f95fc09531b310735ddca0d465", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a24ac5e0-8921-4a32-953b-bac5dcc578dd", + "x-ms-client-request-id": "7f1040f95fc09531b310735ddca0d465", + "x-ms-correlation-request-id": "bc019b02-b6d0-4b24-bad7-a979c5423211", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "38ce2216-a9ad-4ae6-b7d3-922ae8014fcb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063222Z:bc019b02-b6d0-4b24-bad7-a979c5423211" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5e814b1ad6dd4f9689524791db83ed49", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "c92be617-1d00-4003-af2b-f2eb5c97fae7", + "x-ms-client-request-id": "5e814b1ad6dd4f9689524791db83ed49", + "x-ms-correlation-request-id": "d2a39f0c-84ad-41ed-a17f-3347c90bd620", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "b06de0bf-dc15-48a1-9943-da5553b32d38", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063223Z:d2a39f0c-84ad-41ed-a17f-3347c90bd620" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c07dfae52d27b5f9b6e229e56cbb0c5c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7610fca9-ef1f-4fe9-92b4-8e86b6c21370", + "x-ms-client-request-id": "c07dfae52d27b5f9b6e229e56cbb0c5c", + "x-ms-correlation-request-id": "29d980d4-1334-4fd5-b6fe-254c016212ad", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "2315a50b-16c8-4209-869c-e741f1bffee0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063224Z:29d980d4-1334-4fd5-b6fe-254c016212ad" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b88ad68b38c222d4a9c0f56e179fb92f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7263deb4-5dac-49a5-8d9f-b88e05ac81c3", + "x-ms-client-request-id": "b88ad68b38c222d4a9c0f56e179fb92f", + "x-ms-correlation-request-id": "95922f72-c122-43db-a6c4-7df5ea861dd6", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "e6d6423f-3a17-4a9d-aa1e-32e2fedf4ec4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063226Z:95922f72-c122-43db-a6c4-7df5ea861dd6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e2782a221323ec3e52cca7faadb1e3cd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "48a9a798-9207-4712-ad92-098a147c6578", + "x-ms-client-request-id": "e2782a221323ec3e52cca7faadb1e3cd", + "x-ms-correlation-request-id": "9ad54135-a983-4f92-a913-1862dfdfbca2", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "36493ad1-ae73-4b4a-945f-9bb98fb9c915", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063227Z:9ad54135-a983-4f92-a913-1862dfdfbca2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0406eb4634f9ad87255b1666378b9d16", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9a2620b8-7055-4337-a33b-f46ece8e389a", + "x-ms-client-request-id": "0406eb4634f9ad87255b1666378b9d16", + "x-ms-correlation-request-id": "705f4fda-ac56-49af-8862-a865b942ab08", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "a97b512f-19c8-487c-82bf-9233e023eb6b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063229Z:705f4fda-ac56-49af-8862-a865b942ab08" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "41c2f92929437738989d66f590d975f8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c99ee621-5d9b-4919-ac73-beab0540c38c", + "x-ms-client-request-id": "41c2f92929437738989d66f590d975f8", + "x-ms-correlation-request-id": "cd7395f4-c36b-4167-bfab-ee4f0e2041e4", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "3da5fff9-f99f-4873-b37b-eee14472c2eb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063230Z:cd7395f4-c36b-4167-bfab-ee4f0e2041e4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2b2728dcb499ee36a3cabcc7fcd7b5c7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8f2fd6c7-7cf3-416a-a6ae-822a70b7754e", + "x-ms-client-request-id": "2b2728dcb499ee36a3cabcc7fcd7b5c7", + "x-ms-correlation-request-id": "6bc17b57-c3e2-4353-8e17-0d269c97dafa", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "4006d679-e60c-4bf1-9a20-4a24ecc6e9a8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063232Z:6bc17b57-c3e2-4353-8e17-0d269c97dafa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b3d1902ea2ee1c8ab28f6c5bce911c4b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "d6aec62c-e307-4a69-bc42-750b85ce44ae", + "x-ms-client-request-id": "b3d1902ea2ee1c8ab28f6c5bce911c4b", + "x-ms-correlation-request-id": "294a912c-cbcc-43d5-ba7d-6644b47aee63", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "d5b37cf3-8279-4852-9ab1-f0a899335395", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063233Z:294a912c-cbcc-43d5-ba7d-6644b47aee63" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0f8a1ee67163747dc3d49d786c717ac1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4a8c84a0-4cf3-41c2-8b31-bdcd3d7fca70", + "x-ms-client-request-id": "0f8a1ee67163747dc3d49d786c717ac1", + "x-ms-correlation-request-id": "8d6470b3-5890-45ce-a521-77744f82ec04", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "1fcd16c4-1822-4f8e-b7e6-ebacdd5c638a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063234Z:8d6470b3-5890-45ce-a521-77744f82ec04" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "00c79fe8c1083a099d0a790a48da1f12", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3c566bab-c457-4835-89c5-bba5a57037dc", + "x-ms-client-request-id": "00c79fe8c1083a099d0a790a48da1f12", + "x-ms-correlation-request-id": "05f49e7f-eda8-42c0-abe0-0cfdc430f0fd", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "935f5796-8822-430d-9e9f-2ea414ddad82", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063235Z:05f49e7f-eda8-42c0-abe0-0cfdc430f0fd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dee170aea54dbc63125df01a0411b041", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "79820946-4965-42ea-b122-ec70e2388848", + "x-ms-client-request-id": "dee170aea54dbc63125df01a0411b041", + "x-ms-correlation-request-id": "7b425d90-edeb-4667-8733-309ebd78998b", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "616ff0a3-3a7f-4652-ba1a-751bb5b0d304", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063237Z:7b425d90-edeb-4667-8733-309ebd78998b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2f73ab141bc9244315507158f8732be8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "36771687-ebe7-4f30-b3b4-04efd6609bc0", + "x-ms-client-request-id": "2f73ab141bc9244315507158f8732be8", + "x-ms-correlation-request-id": "39d73c9e-67c3-472d-b346-99fc8159247f", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "32b7daab-5963-4245-83b0-2cad85984deb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063238Z:39d73c9e-67c3-472d-b346-99fc8159247f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fbca8bb49c8f42743b0aeeabd1ee358c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b803f138-8bec-44b1-9147-aeda9f84db3f", + "x-ms-client-request-id": "fbca8bb49c8f42743b0aeeabd1ee358c", + "x-ms-correlation-request-id": "f92a8395-1df8-46dd-8246-c51d2b508f83", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "a1b78576-d959-4a2b-8412-7d76a28d0fde", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063239Z:f92a8395-1df8-46dd-8246-c51d2b508f83" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9df5385af06792482dbcc8fd330bc49f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b1a92bce-cdce-4ea2-af9c-a8b2241f61b8", + "x-ms-client-request-id": "9df5385af06792482dbcc8fd330bc49f", + "x-ms-correlation-request-id": "db4900e8-e291-4d3f-a9dc-47acd1af51de", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "850fc891-e6a1-442d-a127-91054b22c4a9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063241Z:db4900e8-e291-4d3f-a9dc-47acd1af51de" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "78650831b44778b13630f3bf2d985326", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "d6aa0773-233e-4ba7-9bf3-becd344155bb", + "x-ms-client-request-id": "78650831b44778b13630f3bf2d985326", + "x-ms-correlation-request-id": "ba50b7f8-67d7-4f9b-9906-3f1f4c295219", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "72e1c024-a667-4a5a-a2e8-733a330b1edd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063243Z:ba50b7f8-67d7-4f9b-9906-3f1f4c295219" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c0fee51a8d7dc3804337ced2d3760f2f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b073a3a2-8146-44aa-bbe5-4a1b12c72405", + "x-ms-client-request-id": "c0fee51a8d7dc3804337ced2d3760f2f", + "x-ms-correlation-request-id": "f008686d-08a8-4f40-85f2-ee62abe0596b", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "e1cb0194-b84c-4eb5-8bec-da4fe6b774b0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063244Z:f008686d-08a8-4f40-85f2-ee62abe0596b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c9794f45bd88a645867d6636fd886595", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "fd73af07-d44e-4344-92cb-684984bba574", + "x-ms-client-request-id": "c9794f45bd88a645867d6636fd886595", + "x-ms-correlation-request-id": "892ffa31-1930-430e-83e1-b69823f5b51b", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "32dcaa80-6df6-40e5-b1cc-966ec841139d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063246Z:892ffa31-1930-430e-83e1-b69823f5b51b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4ee2a269040da32187a2350fe5dea5bf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:32: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": "4e1690aa-2c17-4761-958e-bae720a0682b", + "x-ms-client-request-id": "4ee2a269040da32187a2350fe5dea5bf", + "x-ms-correlation-request-id": "9fa94a06-5679-4266-8564-d6dc0ee60a34", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-request-id": "5697e436-81f0-4cb3-ab71-21f71a2cce2a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063247Z:9fa94a06-5679-4266-8564-d6dc0ee60a34" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "de79c3218a1e5c9da0573900274ac6ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "01911b99-38b7-42b0-83d0-1716a04d5527", + "x-ms-client-request-id": "de79c3218a1e5c9da0573900274ac6ba", + "x-ms-correlation-request-id": "2dcafc54-e702-4d82-9929-7b8daa59f684", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "c1a50611-8abe-477d-8b8b-51ca172e6af2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063248Z:2dcafc54-e702-4d82-9929-7b8daa59f684" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "306938d2c09441222ed541e68835c0a7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e6fab001-5df3-42ad-b1f8-91daa2299b44", + "x-ms-client-request-id": "306938d2c09441222ed541e68835c0a7", + "x-ms-correlation-request-id": "ca3ea48d-9f33-4cd2-b78f-e7914bcdb0c6", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "9ea037d3-530b-4091-b68f-7949e769f0e5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063249Z:ca3ea48d-9f33-4cd2-b78f-e7914bcdb0c6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3914a6d7860fdf770486adb5ca207c3d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f13fac76-58be-434b-9799-cd1626b57608", + "x-ms-client-request-id": "3914a6d7860fdf770486adb5ca207c3d", + "x-ms-correlation-request-id": "b021727e-ed94-474c-8f19-13dba7ec057c", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "de9f18da-d451-4a30-9540-00f141f133fc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063251Z:b021727e-ed94-474c-8f19-13dba7ec057c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ad3d7adb7475602ba137b04848b7d46b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "bd84ddc1-9941-46e3-a488-121c5466ca0b", + "x-ms-client-request-id": "ad3d7adb7475602ba137b04848b7d46b", + "x-ms-correlation-request-id": "3e7b1f06-511c-49b8-a872-855e661f88fc", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "2035834f-4c14-4d94-89e5-e0f8de0f3ba4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063252Z:3e7b1f06-511c-49b8-a872-855e661f88fc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "802991968d354babc1892c0d136c760e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e85e257a-53de-427e-878b-266bd5f343d3", + "x-ms-client-request-id": "802991968d354babc1892c0d136c760e", + "x-ms-correlation-request-id": "d444fa4c-1ac7-43e8-91b4-76b61bb73481", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "05687ee7-415b-464f-9152-b9ecbb566e51", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063253Z:d444fa4c-1ac7-43e8-91b4-76b61bb73481" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0d0a045913f763317ab498d7d62e974d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e727a686-bf3b-4a4a-99e6-c2c525761033", + "x-ms-client-request-id": "0d0a045913f763317ab498d7d62e974d", + "x-ms-correlation-request-id": "e7201a51-a46e-4ac8-873c-e2a5c474571f", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "2593bcc4-7760-45af-9319-392b4a9f3a10", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063255Z:e7201a51-a46e-4ac8-873c-e2a5c474571f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "381e42b1fbf64e07cff1ebeb471d4d34", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "f1cc0cfa-5d9e-41ed-b033-84bb13c233c6", + "x-ms-client-request-id": "381e42b1fbf64e07cff1ebeb471d4d34", + "x-ms-correlation-request-id": "e295e064-0a8e-4a69-afd3-d9ed5310ca43", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "dadcde7e-2161-4b24-82c7-2c06a7a61bd3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063256Z:e295e064-0a8e-4a69-afd3-d9ed5310ca43" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "43eea2c1c7ac83735fc50581f5d37592", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d95f863a-9c2f-4795-8a06-ee3bdf73681c", + "x-ms-client-request-id": "43eea2c1c7ac83735fc50581f5d37592", + "x-ms-correlation-request-id": "2199883e-0e28-4bf0-8e3c-2dddd7ea97fd", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "98ef58c0-8e92-48c6-86b5-8c91a4f769d7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063258Z:2199883e-0e28-4bf0-8e3c-2dddd7ea97fd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d15cdef23d4e5d17fdbb3e0527461b5c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "aae6544e-9038-4f32-92dc-47abe1cfc372", + "x-ms-client-request-id": "d15cdef23d4e5d17fdbb3e0527461b5c", + "x-ms-correlation-request-id": "ee991035-4f4f-45da-9e45-0da964e128d2", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "b4a5c7e2-5a12-4b96-a083-df395905b649", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063259Z:ee991035-4f4f-45da-9e45-0da964e128d2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "341663665340eaa0ce9bd831f68659fb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "441b2acc-22c8-4427-9de4-5e4b20e5d9ba", + "x-ms-client-request-id": "341663665340eaa0ce9bd831f68659fb", + "x-ms-correlation-request-id": "5ae9be45-7e71-498b-9f70-e295975a9cfc", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "60232d44-5407-4cce-89f2-a5a0d99c2274", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063300Z:5ae9be45-7e71-498b-9f70-e295975a9cfc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "69f9597c7cc183e68b9146f0896d5b19", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "a8143e48-aa22-4e13-8737-f75d263bb709", + "x-ms-client-request-id": "69f9597c7cc183e68b9146f0896d5b19", + "x-ms-correlation-request-id": "c524e90a-7ad4-4eba-8b36-d9f5a52ee329", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "673ea375-7155-4d71-8247-131541411119", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063302Z:c524e90a-7ad4-4eba-8b36-d9f5a52ee329" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "911aa8a940bd9e523d7202b264e56777", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0c9d37e1-ce20-4faf-b24e-81c01a39afa9", + "x-ms-client-request-id": "911aa8a940bd9e523d7202b264e56777", + "x-ms-correlation-request-id": "e8a8991d-8d74-400b-a0df-457f604ec868", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "36b65bb1-b2f2-44af-bd86-5593360c431d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063303Z:e8a8991d-8d74-400b-a0df-457f604ec868" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ce894262b24cea9b7d92a8ae0db06061", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b71c91a9-aa41-4aea-87df-a25f94f63488", + "x-ms-client-request-id": "ce894262b24cea9b7d92a8ae0db06061", + "x-ms-correlation-request-id": "55863342-59d9-4ab9-815b-e8a950d3a65b", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "f3c41029-6a95-4fe2-acaa-dc0e474908c7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063304Z:55863342-59d9-4ab9-815b-e8a950d3a65b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4d87bf40c86b3b3d065a2b4e7a331ea5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4f4b022b-0a21-4bb7-b2d7-bd812fc2a8db", + "x-ms-client-request-id": "4d87bf40c86b3b3d065a2b4e7a331ea5", + "x-ms-correlation-request-id": "93d18f0a-61f9-4412-859f-bc8ce5588955", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "fcde0edf-39d9-4900-8fb7-a818d67de083", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063306Z:93d18f0a-61f9-4412-859f-bc8ce5588955" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "468ece2a8ce4f6cd0d30132a98a3908d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "e3f51c69-9b81-41a1-89d2-5f1abc6f5b05", + "x-ms-client-request-id": "468ece2a8ce4f6cd0d30132a98a3908d", + "x-ms-correlation-request-id": "e1946160-8e59-4b7b-92fe-a70e45c230f4", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "1ac0f46e-cc9e-4976-87cf-f7a724a3e1b0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063307Z:e1946160-8e59-4b7b-92fe-a70e45c230f4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a572a011195e990b044dc8f1874c6f4a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d7e8a492-8f0e-4845-a45d-0e1440c1e7c9", + "x-ms-client-request-id": "a572a011195e990b044dc8f1874c6f4a", + "x-ms-correlation-request-id": "f187b2ec-c2ac-44db-826a-b17cd3bb5ffe", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "31cd92b0-ddc4-4ce2-98a6-aebd77032a5b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063308Z:f187b2ec-c2ac-44db-826a-b17cd3bb5ffe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3e8403741a21b37df190403ab512a362", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "60b8b942-4b0a-4238-82d5-3d1a3dd1d596", + "x-ms-client-request-id": "3e8403741a21b37df190403ab512a362", + "x-ms-correlation-request-id": "1dbfb8f9-51bd-4255-a562-265e6303bd67", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "21cf1bb5-14e5-4b16-9371-4097a11930df", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063310Z:1dbfb8f9-51bd-4255-a562-265e6303bd67" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d93d9dc978c11047c3f44196c3db6fc0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "ee3b63f2-f94c-4480-96aa-3a48d82c810a", + "x-ms-client-request-id": "d93d9dc978c11047c3f44196c3db6fc0", + "x-ms-correlation-request-id": "46b119c0-0d4b-4ede-90f3-2525114ddaf8", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "4ac0bc53-48aa-4bef-8218-b20d5cf1defb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063311Z:46b119c0-0d4b-4ede-90f3-2525114ddaf8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "94b6c8c0511ff76b23beb4cdd9d1e4f2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "98de100a-51c1-4b77-8a0c-b50366efde84", + "x-ms-client-request-id": "94b6c8c0511ff76b23beb4cdd9d1e4f2", + "x-ms-correlation-request-id": "7aced0f5-9c62-4fba-9b8e-1f217ef0d2f9", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "4327abef-0d9e-41b5-a90e-2e23854abbd7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063312Z:7aced0f5-9c62-4fba-9b8e-1f217ef0d2f9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ea2865a9960ffb89bb747b2dd8e6ef16", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e68d9b88-82c4-4993-9ecb-de683ee7d665", + "x-ms-client-request-id": "ea2865a9960ffb89bb747b2dd8e6ef16", + "x-ms-correlation-request-id": "50436526-4201-41cb-aaa8-5b9228c86c8b", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "aaf9d69b-f6c9-432f-9407-c09e32322a7d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063313Z:50436526-4201-41cb-aaa8-5b9228c86c8b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ec7980210e5c77433146b502c47a36f1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "63f118fc-f118-4b1e-8f4f-5f97b6e3b830", + "x-ms-client-request-id": "ec7980210e5c77433146b502c47a36f1", + "x-ms-correlation-request-id": "d2cb7a18-e9d6-498d-8963-38f876e0e791", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "665991d5-87b4-4777-8099-6d83cafc8c09", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063315Z:d2cb7a18-e9d6-498d-8963-38f876e0e791" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5eec4f1085b32ab03fbad8aad53e1e3d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f888c96e-8fea-4d5f-ada4-fb6e4f7a196f", + "x-ms-client-request-id": "5eec4f1085b32ab03fbad8aad53e1e3d", + "x-ms-correlation-request-id": "efefc326-39e3-4614-9dc8-663095be7142", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "de3ccca8-6c65-451d-9cf2-05c3245fde01", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063317Z:efefc326-39e3-4614-9dc8-663095be7142" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "59ac9dcef8579a9522b0b8c9e0863741", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b608cbe2-1223-4fdc-b699-07b4398db9c7", + "x-ms-client-request-id": "59ac9dcef8579a9522b0b8c9e0863741", + "x-ms-correlation-request-id": "80e79216-bc71-47cc-99f2-f45868a367e2", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "073ac340-b753-4f5f-b5f6-a1a1ae5143be", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063319Z:80e79216-bc71-47cc-99f2-f45868a367e2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "891c8a3d91f99b62cf4faca13698a1f3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "18e762f7-5120-49cb-be17-47f517b97a7b", + "x-ms-client-request-id": "891c8a3d91f99b62cf4faca13698a1f3", + "x-ms-correlation-request-id": "06a32fe4-0b0d-48b5-ab7a-d51e0102f702", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "0d7f2f26-46a7-48e9-9861-d36f60252fcb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063320Z:06a32fe4-0b0d-48b5-ab7a-d51e0102f702" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "26347827ddce179ab9513b02cde749b9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "286dfa8f-0d6a-40d5-a24a-f2184f5641be", + "x-ms-client-request-id": "26347827ddce179ab9513b02cde749b9", + "x-ms-correlation-request-id": "826002b2-2b84-4c0f-b951-64e6ecddab3e", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "63407bdc-471d-473c-8c2d-ad1774e0c01b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063322Z:826002b2-2b84-4c0f-b951-64e6ecddab3e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4b6d978394213c433a108a074bf46489", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1745a5b1-4086-4a7d-812b-c3c6154cccba", + "x-ms-client-request-id": "4b6d978394213c433a108a074bf46489", + "x-ms-correlation-request-id": "52755b9a-18ab-4f55-9aa1-7aa26269dea6", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "b7d517db-207a-4e6a-ab29-1bae2598eaa5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063323Z:52755b9a-18ab-4f55-9aa1-7aa26269dea6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "68a1c50e10516073ef04cfa75660cee8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "2e9de495-d10a-4760-b1b3-c80edde5b5d0", + "x-ms-client-request-id": "68a1c50e10516073ef04cfa75660cee8", + "x-ms-correlation-request-id": "69bc45e6-753a-4fe2-afd6-3ee221684c78", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "21807b93-2dc3-44c1-9c4c-1cabaf205fab", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063324Z:69bc45e6-753a-4fe2-afd6-3ee221684c78" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9f1ef306552b92d135f7ebbe5393ccc5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b836e456-f63d-49d1-8e15-92a6513f1b06", + "x-ms-client-request-id": "9f1ef306552b92d135f7ebbe5393ccc5", + "x-ms-correlation-request-id": "af1da0b0-5a56-4453-8951-aae1bd68ccaf", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "ff8af41d-cb86-489c-b274-e648983a5a73", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063326Z:af1da0b0-5a56-4453-8951-aae1bd68ccaf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "07f4b1ede0457267230c5c1cc59be6da", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "29abebb7-d483-417b-afd8-83251aa053f3", + "x-ms-client-request-id": "07f4b1ede0457267230c5c1cc59be6da", + "x-ms-correlation-request-id": "039ef4d0-ca5a-4850-9c40-badec942c1fe", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "9ad41d9f-bd2f-4e06-90d6-17aadcda4d02", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063327Z:039ef4d0-ca5a-4850-9c40-badec942c1fe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5801a241c5d5b85ef30e335925b50d5c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d7a8adaa-6315-4efc-afc3-839717a72612", + "x-ms-client-request-id": "5801a241c5d5b85ef30e335925b50d5c", + "x-ms-correlation-request-id": "7b2ba352-fe03-4325-b017-9997eb36ca56", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "651326c4-1740-47b7-a610-0f5d05466c35", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063328Z:7b2ba352-fe03-4325-b017-9997eb36ca56" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a4ba0a38c76b25a28bac7b1ef9b4cd99", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6fbb3a24-e657-4364-98c2-a06fd3e26548", + "x-ms-client-request-id": "a4ba0a38c76b25a28bac7b1ef9b4cd99", + "x-ms-correlation-request-id": "280045bf-12ef-41ea-b5d5-24d193bfc1c6", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "25c6d7ca-3a8f-4cc7-beff-8404ba517658", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063330Z:280045bf-12ef-41ea-b5d5-24d193bfc1c6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b07c1011749227ef533b1336ad0d4c6e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:33: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": "f718ced7-9245-45f3-8fc7-908b02d4e58d", + "x-ms-client-request-id": "b07c1011749227ef533b1336ad0d4c6e", + "x-ms-correlation-request-id": "dfde5a04-b91d-4fa6-a234-83d422aaa52c", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "9339bcb4-9ea9-4652-841d-6d15f13ec348", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063331Z:dfde5a04-b91d-4fa6-a234-83d422aaa52c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bae4ffff41e07a6fffdbcc284a40be3f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7b8ad8b5-8b2f-4afc-8801-7e9a07fe1ae8", + "x-ms-client-request-id": "bae4ffff41e07a6fffdbcc284a40be3f", + "x-ms-correlation-request-id": "944ec884-9828-43d0-a2c1-7e5cd14007f9", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "b6a72202-94df-40cb-9ad2-b334738f63f4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063332Z:944ec884-9828-43d0-a2c1-7e5cd14007f9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "144899415c38c4ca1a93512fb36b777e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2fb8a0c1-7f1e-4d40-8d2d-5ac49e962061", + "x-ms-client-request-id": "144899415c38c4ca1a93512fb36b777e", + "x-ms-correlation-request-id": "8fde1302-8cae-403b-96d6-672a46d7f511", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "e22cd25b-669c-4678-8f80-3040d74471be", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063333Z:8fde1302-8cae-403b-96d6-672a46d7f511" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f91e0d5f13d0d0b9a102b1b6a8c6dd12", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d4426e1f-b721-4867-bf27-3190f802a8bb", + "x-ms-client-request-id": "f91e0d5f13d0d0b9a102b1b6a8c6dd12", + "x-ms-correlation-request-id": "a722eadf-c942-437c-b645-6c9bcf5a0e4a", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "e5d29773-8790-438c-8e98-7dfe2ed6575b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063335Z:a722eadf-c942-437c-b645-6c9bcf5a0e4a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "14f5d47d38c5a33535209f4df03fc793", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "9e45697a-eb9e-4e05-b079-5b6ae5062afa", + "x-ms-client-request-id": "14f5d47d38c5a33535209f4df03fc793", + "x-ms-correlation-request-id": "21208ae0-d548-4f4f-9486-d2febfcc1683", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "75226e61-78a5-47ef-9b7b-f4ede2602623", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063336Z:21208ae0-d548-4f4f-9486-d2febfcc1683" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3cc84d63c5212e6fe0787335ab131c53", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "dc71f630-b38b-4c33-b0b7-52b17aab6f83", + "x-ms-client-request-id": "3cc84d63c5212e6fe0787335ab131c53", + "x-ms-correlation-request-id": "78617b08-83a5-4d13-9d64-13ba0a9caf70", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "c45f0a45-01c9-49ab-ac3d-93a1ed74ad53", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063337Z:78617b08-83a5-4d13-9d64-13ba0a9caf70" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "deb23eb6637627b9d77ac3af736bdf61", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3c7e3e20-a66b-4412-8290-dbc054fd68ff", + "x-ms-client-request-id": "deb23eb6637627b9d77ac3af736bdf61", + "x-ms-correlation-request-id": "00d22c1a-1583-4933-b8fc-dc8d129c706b", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "9bbe4df3-5968-403d-bc19-c8ead6c149c8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063339Z:00d22c1a-1583-4933-b8fc-dc8d129c706b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5a521d3ba0fdb7f065c7334dc5fff821", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "3fb72c7e-43e4-4536-9b33-95967a391b38", + "x-ms-client-request-id": "5a521d3ba0fdb7f065c7334dc5fff821", + "x-ms-correlation-request-id": "365d49cb-e458-421f-aa89-f1e33084392b", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "09a9f6d6-ae42-4e9a-9ed6-22f7ea7c07da", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063340Z:365d49cb-e458-421f-aa89-f1e33084392b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b1974b04e88dff1d94a165a701bfba74", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "45d14fe1-2f50-49d5-bc8d-a0e1f1143015", + "x-ms-client-request-id": "b1974b04e88dff1d94a165a701bfba74", + "x-ms-correlation-request-id": "e557b50f-00f5-447a-84bd-ba82f564081b", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "4c81aef0-b728-4e72-b488-8394fcd31d41", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063342Z:e557b50f-00f5-447a-84bd-ba82f564081b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8df91198c1c015564efa79af306b62d7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d14d111f-22c2-4603-95e9-58163de24176", + "x-ms-client-request-id": "8df91198c1c015564efa79af306b62d7", + "x-ms-correlation-request-id": "53a09927-1abe-4f23-ae10-74bcea68a359", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "96c0ec67-8d58-40a4-833f-66a2e9d6feba", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063343Z:53a09927-1abe-4f23-ae10-74bcea68a359" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "28aba2822ed453d40052c55c3b49b6a5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "95ad1f61-c1c4-45ce-8269-90c26e1c29c2", + "x-ms-client-request-id": "28aba2822ed453d40052c55c3b49b6a5", + "x-ms-correlation-request-id": "92fe10af-d750-4dc2-8299-ae0b057787f0", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "76beafd5-c081-48c6-b27b-d291e0540101", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063344Z:92fe10af-d750-4dc2-8299-ae0b057787f0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b3b4be0c6a054261f58162926f6dcf28", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "45ffd1b9-3efe-476f-81ae-e1d65d1c635d", + "x-ms-client-request-id": "b3b4be0c6a054261f58162926f6dcf28", + "x-ms-correlation-request-id": "f9caa949-a0d9-45d2-9aee-82803f226769", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "38541dd0-e2af-417e-80d4-79530372607b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063346Z:f9caa949-a0d9-45d2-9aee-82803f226769" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5f248d3e921369a03ca68d6dfcf9da04", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4b230e71-b03a-4244-937c-c5f01576f6c8", + "x-ms-client-request-id": "5f248d3e921369a03ca68d6dfcf9da04", + "x-ms-correlation-request-id": "d9e5da12-fbc1-4057-802f-35bf1c2899d6", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "740a365b-b52b-4905-9bd8-86ef97b47636", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063348Z:d9e5da12-fbc1-4057-802f-35bf1c2899d6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "71a2d344aeb717d140693253cc42e392", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:33: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": "9a776896-520d-4317-8b85-8c5b7da0ea67", + "x-ms-client-request-id": "71a2d344aeb717d140693253cc42e392", + "x-ms-correlation-request-id": "a922aec4-67b9-4fc3-b5f6-78dbbe8ced58", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "79aab011-7344-4c7b-99c7-688a3f7291e0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063350Z:a922aec4-67b9-4fc3-b5f6-78dbbe8ced58" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ad1d9c8257247a911e4b775fddf345fc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "08226885-423a-44c6-82b0-b379fbfb52ab", + "x-ms-client-request-id": "ad1d9c8257247a911e4b775fddf345fc", + "x-ms-correlation-request-id": "a8570cb4-820b-4868-85c6-28281b45e7e7", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "62cd8ac5-4cbd-4661-8813-b34097b8e07a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063351Z:a8570cb4-820b-4868-85c6-28281b45e7e7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9b4e5ea75ecb9071bb0d1eaa5f4d9dfa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9b6244c1-7cff-4229-bdbd-4927b0746580", + "x-ms-client-request-id": "9b4e5ea75ecb9071bb0d1eaa5f4d9dfa", + "x-ms-correlation-request-id": "f2dd85d6-1ef9-4333-90c2-84fe34a46be7", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "2886d15a-702a-4281-a5ea-80e35a590daa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063353Z:f2dd85d6-1ef9-4333-90c2-84fe34a46be7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "60eafbc32cdbeddf4127526b37723a4d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0d6453a3-d657-460a-b562-3415c77c738e", + "x-ms-client-request-id": "60eafbc32cdbeddf4127526b37723a4d", + "x-ms-correlation-request-id": "2af07fa2-2a44-4929-936b-1803f81a361a", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "647acd7c-4406-46a1-9ef8-466e0eb8bcc2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063354Z:2af07fa2-2a44-4929-936b-1803f81a361a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6dab362347f424c62a8df21738e71bd1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "b00e0d7a-880d-4bce-9c9a-b17321230c6d", + "x-ms-client-request-id": "6dab362347f424c62a8df21738e71bd1", + "x-ms-correlation-request-id": "20db59fa-1e04-4300-b3c9-17d90c6875ee", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "1525adab-db2f-4828-8ce1-83a36e98b6c5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063355Z:20db59fa-1e04-4300-b3c9-17d90c6875ee" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e19b7caee5087a207e605aa30c055849", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b93ea1f9-b67d-4645-9b62-7b561d70fb64", + "x-ms-client-request-id": "e19b7caee5087a207e605aa30c055849", + "x-ms-correlation-request-id": "af60718b-9678-4e71-a797-e05e97681fd6", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "92dca4b5-d8ed-41e8-b89b-dfc3914e9020", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063357Z:af60718b-9678-4e71-a797-e05e97681fd6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2986d1d22fa17b0634c6354d3ac7b45a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a27b8931-585d-4972-b6cc-a0237341033e", + "x-ms-client-request-id": "2986d1d22fa17b0634c6354d3ac7b45a", + "x-ms-correlation-request-id": "5f6dd0c5-0739-4ec8-91f7-244d1ab583d2", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "8aac6537-d37b-416b-945c-cbea5d7f98ae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063358Z:5f6dd0c5-0739-4ec8-91f7-244d1ab583d2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bbbd800c58d63e441531ef93ed221724", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "fa693759-b451-4cdf-b731-149ce11bb7b0", + "x-ms-client-request-id": "bbbd800c58d63e441531ef93ed221724", + "x-ms-correlation-request-id": "485f0a6c-9488-4b02-a333-8505c180746a", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "a8102830-df58-4e83-bd6e-228ccc266ab6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063359Z:485f0a6c-9488-4b02-a333-8505c180746a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6745a835f1607e307520ac41afd33fb6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0cd2a4b1-5c63-4b56-b4b4-6f04db98906b", + "x-ms-client-request-id": "6745a835f1607e307520ac41afd33fb6", + "x-ms-correlation-request-id": "9ad764a1-2d12-4118-934d-825f5666e678", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "576881cd-fd47-4b31-96f2-ede2b4a1147b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063401Z:9ad764a1-2d12-4118-934d-825f5666e678" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8c9600ac9d477a728c48136f40738d12", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2974f64f-6d71-4b71-90cb-83b4af426dc4", + "x-ms-client-request-id": "8c9600ac9d477a728c48136f40738d12", + "x-ms-correlation-request-id": "b3eaaac8-1fda-412a-a489-4a94ae24dba6", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "2d04cf96-6f81-42e2-bf18-2d5fc872c490", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063403Z:b3eaaac8-1fda-412a-a489-4a94ae24dba6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "911810af4d821bf94f3f45b6ac028e42", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "10001938-ed8a-4fe6-b80a-a3fba89d11a2", + "x-ms-client-request-id": "911810af4d821bf94f3f45b6ac028e42", + "x-ms-correlation-request-id": "3b55126e-6124-4c62-9abc-9c7c57b79086", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "f5c68bcc-406a-4ebf-a38c-6058aafab481", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063404Z:3b55126e-6124-4c62-9abc-9c7c57b79086" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ede638f18b8c97dc36cbda17ddc13e02", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "53cb6ecb-14c0-4a3c-8602-d1929df916df", + "x-ms-client-request-id": "ede638f18b8c97dc36cbda17ddc13e02", + "x-ms-correlation-request-id": "6a10d134-b2a0-4777-b0f5-9a83cef11608", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "c4bca5d1-02ec-475f-ae6e-e4f5c3d8e83b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063405Z:6a10d134-b2a0-4777-b0f5-9a83cef11608" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9e929a92aeba5f33067b3c0858bbcd8a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "def5f961-abdd-4fe2-a6cf-8883825fd80d", + "x-ms-client-request-id": "9e929a92aeba5f33067b3c0858bbcd8a", + "x-ms-correlation-request-id": "16a54d79-eced-4474-bca8-ef378c4656e7", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "0b4fb70b-8442-4eec-968b-66d078a5dcbb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063406Z:16a54d79-eced-4474-bca8-ef378c4656e7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "077dd1baa08c248634815bb772e13d8e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "5e65f54a-1dcb-415b-ad89-929fce226ed3", + "x-ms-client-request-id": "077dd1baa08c248634815bb772e13d8e", + "x-ms-correlation-request-id": "fe55c34b-83e2-4ab7-b3a9-996f70f5b2ff", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "67aba84f-8e94-4e48-8bd9-741c6ebeca03", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063408Z:fe55c34b-83e2-4ab7-b3a9-996f70f5b2ff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "11244200ef6f43870487e6104ed43e7a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5268a7c9-6afa-4a8e-bf6c-bef8db83b2f8", + "x-ms-client-request-id": "11244200ef6f43870487e6104ed43e7a", + "x-ms-correlation-request-id": "fe0c86a3-28c6-47d9-a760-34b6ddf0f502", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-request-id": "e674b891-8393-47d0-92fb-99765218e8c3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063409Z:fe0c86a3-28c6-47d9-a760-34b6ddf0f502" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0b5d50fd3743f176146e6a39537ced25", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b9f59fd2-f077-4776-bf9c-6c26778ef4ca", + "x-ms-client-request-id": "0b5d50fd3743f176146e6a39537ced25", + "x-ms-correlation-request-id": "ec970a0a-03c6-402a-b227-8c262115725c", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "ff024fd2-006d-4679-9acc-2007a9654ba6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063410Z:ec970a0a-03c6-402a-b227-8c262115725c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1608ae3ebc97ca1a4a3a0204ba75d55f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "bc1fd8a9-343f-4e46-ba52-7324da2e8be2", + "x-ms-client-request-id": "1608ae3ebc97ca1a4a3a0204ba75d55f", + "x-ms-correlation-request-id": "bd949497-f606-4460-aabf-bb6b799aa706", + "x-ms-ratelimit-remaining-subscription-reads": "11788", + "x-ms-request-id": "670adfbb-7b74-4018-9a77-696bb4767371", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063412Z:bd949497-f606-4460-aabf-bb6b799aa706" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "21bae0423184c94acb32fc01854df088", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b6046330-573c-490d-8475-094a74fcbae2", + "x-ms-client-request-id": "21bae0423184c94acb32fc01854df088", + "x-ms-correlation-request-id": "b715c658-650d-47c6-99e0-3a1960d2750c", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "4b34d400-444f-44a1-b91c-e6fe94a840f6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063413Z:b715c658-650d-47c6-99e0-3a1960d2750c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a0d1c19a28cc40e33693c1093471379e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e4ce4555-219d-49d6-b0d5-529fe0d3f9a7", + "x-ms-client-request-id": "a0d1c19a28cc40e33693c1093471379e", + "x-ms-correlation-request-id": "52363664-e80e-4fbe-b699-0b5b3167eb25", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "1d034288-5723-4853-b3f7-16c922a4c085", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063414Z:52363664-e80e-4fbe-b699-0b5b3167eb25" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "73f70a98cbc10da1633e4a64bf1845fd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:34: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": "3189bb11-9755-4b90-8813-a70af73c1904", + "x-ms-client-request-id": "73f70a98cbc10da1633e4a64bf1845fd", + "x-ms-correlation-request-id": "21445ac9-a0cb-4c8e-b0cb-4a906851d709", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "4badd95b-d8a7-4fb8-b896-389e6ccc8087", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063416Z:21445ac9-a0cb-4c8e-b0cb-4a906851d709" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f96a7a4935a31993fc79ebf07041945a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1347e225-22bc-4bf5-89ac-e0f36ace9076", + "x-ms-client-request-id": "f96a7a4935a31993fc79ebf07041945a", + "x-ms-correlation-request-id": "84243f3e-2517-49c0-b45d-1696615432ad", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "cb11445d-eb4c-4f7d-b25b-d15178f3278f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063417Z:84243f3e-2517-49c0-b45d-1696615432ad" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7a695efb7d56cfc620c43c8dde7e811e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b9e1bfb8-c745-4738-a012-15413c35f224", + "x-ms-client-request-id": "7a695efb7d56cfc620c43c8dde7e811e", + "x-ms-correlation-request-id": "74cf7c80-2a83-4506-b92f-45c4bcee3639", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "df62b62b-8feb-4e15-b034-00417528e507", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063419Z:74cf7c80-2a83-4506-b92f-45c4bcee3639" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "babfc44d3d0762fa77dd7648e0b09c21", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "96aa29b4-068c-45b2-8831-509bcf7c8dca", + "x-ms-client-request-id": "babfc44d3d0762fa77dd7648e0b09c21", + "x-ms-correlation-request-id": "9386421c-c00f-49f8-8947-9738ed639a12", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "8fe84d77-17e5-4a0e-9f28-9d39b0b94c00", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063420Z:9386421c-c00f-49f8-8947-9738ed639a12" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6169efaacbafcba6b39bd9dff9063b7e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "513e7879-1216-4512-a129-bd8190b626af", + "x-ms-client-request-id": "6169efaacbafcba6b39bd9dff9063b7e", + "x-ms-correlation-request-id": "7e224351-f1ab-4ae1-9d88-ed40550a4c02", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "efe1d19f-7c2c-422a-95b9-f326541a091a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063422Z:7e224351-f1ab-4ae1-9d88-ed40550a4c02" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aba3cdf8da81bd5263060278077eee6f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "46bbd4f8-49f8-4cc7-91d0-ca4622bac171", + "x-ms-client-request-id": "aba3cdf8da81bd5263060278077eee6f", + "x-ms-correlation-request-id": "5d4ac231-7295-4658-ae44-885d2dfd8fac", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "e371cb01-73d8-4df1-9ffd-ce10b6db42d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063423Z:5d4ac231-7295-4658-ae44-885d2dfd8fac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eee31a272014826e1df4066c641b6971", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "df348053-c449-4578-8728-b25ab8a9e19c", + "x-ms-client-request-id": "eee31a272014826e1df4066c641b6971", + "x-ms-correlation-request-id": "4d215d40-4add-404b-ba1e-c5d739a5dfa5", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "cb0688fa-f1ca-4720-bfb3-8c04f7d27b4d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063425Z:4d215d40-4add-404b-ba1e-c5d739a5dfa5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "134ff7a2f10ccfa09cabfda8c82ec435", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "cb8fb755-3d56-4f65-9c4f-edc42576881b", + "x-ms-client-request-id": "134ff7a2f10ccfa09cabfda8c82ec435", + "x-ms-correlation-request-id": "118794ae-abf3-44d6-a9c0-e105caa9cb1b", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "7e099da5-926d-4c82-aba8-e010801e52af", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063426Z:118794ae-abf3-44d6-a9c0-e105caa9cb1b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "deb769ac4c22d8695e208e8dd3e65947", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "cc81775f-c362-4cc5-af03-ae85e538b8d6", + "x-ms-client-request-id": "deb769ac4c22d8695e208e8dd3e65947", + "x-ms-correlation-request-id": "1601170d-28bc-4c3e-877f-bf5683eabe18", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "c0076b4f-4389-4ee0-a760-04bcb7229be5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063427Z:1601170d-28bc-4c3e-877f-bf5683eabe18" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0fd5919cdb2e36637a13516922c5b9ee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "509c9681-2b62-41fc-b454-0da18804255e", + "x-ms-client-request-id": "0fd5919cdb2e36637a13516922c5b9ee", + "x-ms-correlation-request-id": "2ddbab13-348f-41f2-a6d0-d540008749d0", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "b852ac89-d9e1-4afb-a92e-e4c68e0d9f80", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063428Z:2ddbab13-348f-41f2-a6d0-d540008749d0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fbbfd12f8b64564e8e77b4ec6212fcb6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "0a8dd52d-da34-4b4a-aa95-edaf04b37ad1", + "x-ms-client-request-id": "fbbfd12f8b64564e8e77b4ec6212fcb6", + "x-ms-correlation-request-id": "4109f545-de9c-4a34-a192-7933b10d1bfa", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "119ecc3c-bed6-4818-954f-f5a666f0cea4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063430Z:4109f545-de9c-4a34-a192-7933b10d1bfa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "360cb552b559d0060680630ffaffb698", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d165a0ab-6639-4857-bf79-470657a12413", + "x-ms-client-request-id": "360cb552b559d0060680630ffaffb698", + "x-ms-correlation-request-id": "4ecbcee0-8895-46ef-b829-cdd929757ae4", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "68fc51c7-e578-49d5-90a9-37c69f78ab6a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063431Z:4ecbcee0-8895-46ef-b829-cdd929757ae4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "015ea0665e2611e3437e80b72677d467", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "36598926-eee6-45d4-8dc8-5ca138e68c97", + "x-ms-client-request-id": "015ea0665e2611e3437e80b72677d467", + "x-ms-correlation-request-id": "9d9ebde4-e316-4511-b7b4-f218708b2ab9", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "5c5c6cbe-d406-4199-846f-4638093b1b3d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063432Z:9d9ebde4-e316-4511-b7b4-f218708b2ab9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6c179b1683b97995cbeff5e3273e5c8e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ebe70870-0031-4155-ad1b-e19a860f2de1", + "x-ms-client-request-id": "6c179b1683b97995cbeff5e3273e5c8e", + "x-ms-correlation-request-id": "d1ca98ac-5d8b-4357-bc99-f1d174cd0be5", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "d5351b4c-803d-4aa6-868a-6092aa495989", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063434Z:d1ca98ac-5d8b-4357-bc99-f1d174cd0be5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c2851cc1fab4f38fd2faf3da344ea98e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "fb32c416-c14f-4f51-a28c-bfde272da0a6", + "x-ms-client-request-id": "c2851cc1fab4f38fd2faf3da344ea98e", + "x-ms-correlation-request-id": "69af1970-e8cc-4e12-8dea-519d2b2fad9d", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "b44c1f67-5873-450b-ad25-00b119010bbb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063435Z:69af1970-e8cc-4e12-8dea-519d2b2fad9d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5ef8fcac49e8e3de0be4363768ffe904", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "afbaea2d-c6f8-4fc0-b83f-8ead479a8566", + "x-ms-client-request-id": "5ef8fcac49e8e3de0be4363768ffe904", + "x-ms-correlation-request-id": "ccc6e7c3-2f72-4638-9eed-c8593f01d5e0", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "a39d0e6d-9d23-4a69-84dc-c9afb94ab7c8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063436Z:ccc6e7c3-2f72-4638-9eed-c8593f01d5e0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0af6f12212f11cb20c239abe90ba457c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e122c275-0a4c-49d6-b029-eb6a0c81d688", + "x-ms-client-request-id": "0af6f12212f11cb20c239abe90ba457c", + "x-ms-correlation-request-id": "7e0a65d1-c9db-43c4-812a-ea389b39993d", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "e3b04fe3-1ba6-488d-82d2-d4aa13c6398d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063438Z:7e0a65d1-c9db-43c4-812a-ea389b39993d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2b376645fd4677a63da1b6d0c3578bd2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "437393b4-5645-4c8b-bdd2-15a978904ca3", + "x-ms-client-request-id": "2b376645fd4677a63da1b6d0c3578bd2", + "x-ms-correlation-request-id": "f7770883-7211-4f5d-923f-5cb5d1183317", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "908ffdd9-910c-4a83-a409-afa3d250ab09", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063439Z:f7770883-7211-4f5d-923f-5cb5d1183317" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82c75a2a-33a7-4b62-ae62-fd300b178bde?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "42b7ee119f57999d49db52c5af1f5350", + "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, 08 Sep 2021 06:34: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": "e06db4c0-4fe9-4775-b340-0d0120fdd62f", + "x-ms-client-request-id": "42b7ee119f57999d49db52c5af1f5350", + "x-ms-correlation-request-id": "fdf24c3b-19d4-4968-8902-cd3021d92265", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "e5a9d5c2-f9f5-4261-ac69-90fe5f58b29c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063440Z:fdf24c3b-19d4-4968-8902-cd3021d92265" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-7725?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "02f1ba9ebec825be4b7fcc505be158b4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1535", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:34:40 GMT", + "ETag": "W/\u0022076ffbdd-3cc8-4e07-8c46-c991473d5b83\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": "63771668-bb64-44a8-a8e0-fdaec952a826", + "x-ms-client-request-id": "02f1ba9ebec825be4b7fcc505be158b4", + "x-ms-correlation-request-id": "63ef1b97-4b49-4e2b-ad2f-3e145a8ec861", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "35864ee3-882d-4937-a4c8-acbf83520815", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063441Z:63ef1b97-4b49-4e2b-ad2f-3e145a8ec861" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022bastion-7725\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-7725\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022076ffbdd-3cc8-4e07-8c46-c991473d5b83\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022dnsName\u0022: \u0022bst-ff277465-c744-4b17-9ab9-c6d76705d94f.bastion.azure.com\u0022,\r\n", + " \u0022scaleUnits\u0022: 2,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022bastionIPConfig-7981\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-7725/bastionHostIpConfigurations/bastionIPConfig-7981\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022076ffbdd-3cc8-4e07-8c46-c991473d5b83\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts/bastionHostIpConfigurations\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/bastionrg-5755/providers/Microsoft.Network/publicIPAddresses/ip-7939\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166/subnets/AzureBastionSubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022bastionShareableLinks\u0022: {}\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-7725?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a2adc7980202a524c99de16aabe0c81e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1535", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:34:40 GMT", + "ETag": "W/\u0022076ffbdd-3cc8-4e07-8c46-c991473d5b83\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": "e1e5f80f-6f90-4601-8180-dcb6399c2572", + "x-ms-client-request-id": "a2adc7980202a524c99de16aabe0c81e", + "x-ms-correlation-request-id": "e4c44850-9165-42d0-bbd8-78f062a68d3d", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "bd128859-12aa-45d4-9540-0a37789db431", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063441Z:e4c44850-9165-42d0-bbd8-78f062a68d3d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022bastion-7725\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-7725\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022076ffbdd-3cc8-4e07-8c46-c991473d5b83\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022dnsName\u0022: \u0022bst-ff277465-c744-4b17-9ab9-c6d76705d94f.bastion.azure.com\u0022,\r\n", + " \u0022scaleUnits\u0022: 2,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022bastionIPConfig-7981\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-7725/bastionHostIpConfigurations/bastionIPConfig-7981\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022076ffbdd-3cc8-4e07-8c46-c991473d5b83\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts/bastionHostIpConfigurations\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/bastionrg-5755/providers/Microsoft.Network/publicIPAddresses/ip-7939\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166/subnets/AzureBastionSubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022bastionShareableLinks\u0022: {}\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-77251?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0931664e8866530a2f92f6d8d34c3e68", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "230", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:34:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "9e82d00f-bb3d-42e0-992c-731bb0abb029", + "x-ms-failure-cause": "gateway", + "x-ms-request-id": "9e82d00f-bb3d-42e0-992c-731bb0abb029", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063441Z:9e82d00f-bb3d-42e0-992c-731bb0abb029" + }, + "ResponseBody": { + "error": { + "code": "ResourceNotFound", + "message": "The Resource \u0027Microsoft.Network/bastionHosts/bastion-77251\u0027 under resource group \u0027bastionrg-5755\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e82c9d83b1729c4e954c392adc547a6a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1696", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "58925192-74fa-4465-a45d-1c0f40129dd7", + "x-ms-client-request-id": "e82c9d83b1729c4e954c392adc547a6a", + "x-ms-correlation-request-id": "d422fe35-6ba0-42a6-ae28-289240c1c74b", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "799c1b6e-fc2b-4a6e-8cb7-c8262f38adca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063442Z:d422fe35-6ba0-42a6-ae28-289240c1c74b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022value\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022bastion-7725\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-7725\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022076ffbdd-3cc8-4e07-8c46-c991473d5b83\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022dnsName\u0022: \u0022bst-ff277465-c744-4b17-9ab9-c6d76705d94f.bastion.azure.com\u0022,\r\n", + " \u0022scaleUnits\u0022: 2,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022bastionIPConfig-7981\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-7725/bastionHostIpConfigurations/bastionIPConfig-7981\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022076ffbdd-3cc8-4e07-8c46-c991473d5b83\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts/bastionHostIpConfigurations\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/bastionrg-5755/providers/Microsoft.Network/publicIPAddresses/ip-7939\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166/subnets/AzureBastionSubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022bastionShareableLinks\u0022: {}\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022\r\n", + " }\r\n", + " }\r\n", + " ]\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-7725?api-version=2021-02-01", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f501aeb64faf104ebc5a726f0b4bd27c", + "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/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 08 Sep 2021 06:34:42 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operationResults/fffd1956-4375-4adc-a37e-f1c361550987?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": "4b87e760-d0f5-4dd9-9521-5cb23cfdef54", + "x-ms-client-request-id": "f501aeb64faf104ebc5a726f0b4bd27c", + "x-ms-correlation-request-id": "aa815643-8e3c-4da1-91cf-4ac0a1eb6277", + "x-ms-ratelimit-remaining-subscription-deletes": "14999", + "x-ms-request-id": "fffd1956-4375-4adc-a37e-f1c361550987", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063442Z:aa815643-8e3c-4da1-91cf-4ac0a1eb6277" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "25218c18484b33b84f1c2b183ede9149", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:34:42 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": "06de07d5-85f7-4395-b90c-98155f26190d", + "x-ms-client-request-id": "25218c18484b33b84f1c2b183ede9149", + "x-ms-correlation-request-id": "ad2fc7ba-b6da-46cb-acba-fa52d2766aae", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "3a31eb60-51d3-47f4-b4ed-63eac2f8b232", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063443Z:ad2fc7ba-b6da-46cb-acba-fa52d2766aae" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "63cabd796c6cd7b60264dd1adb34c1dc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:34:43 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": "234b8b65-f0d2-4f99-8ea7-d17433db081e", + "x-ms-client-request-id": "63cabd796c6cd7b60264dd1adb34c1dc", + "x-ms-correlation-request-id": "7c312ee2-d305-410d-8cb4-e2b68d541396", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "d162d218-3701-413a-b64a-ffb5bbd4d085", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063444Z:7c312ee2-d305-410d-8cb4-e2b68d541396" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7f5796e3ac291631c1b3be97b4935e39", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:34:44 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": "4c6bc340-b755-485a-b1d8-8e9264898dc5", + "x-ms-client-request-id": "7f5796e3ac291631c1b3be97b4935e39", + "x-ms-correlation-request-id": "11e5e2b9-f44d-44e4-806f-cbdc0523c7fc", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "4a3cad2f-e01d-44e5-b631-c5073221de0d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063445Z:11e5e2b9-f44d-44e4-806f-cbdc0523c7fc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "91a02a041315ac6ed54a22e66b9d581a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:34:46 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": "0e37c05b-e0be-497e-a221-89ff16519fc3", + "x-ms-client-request-id": "91a02a041315ac6ed54a22e66b9d581a", + "x-ms-correlation-request-id": "0d6e5459-9423-4b51-92f8-62d94e80b4a4", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "aa6e0ed8-f838-4184-96dd-60776ffe6d51", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063447Z:0d6e5459-9423-4b51-92f8-62d94e80b4a4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a7344f5b1187cd1f8cb4a1b9ae1f226f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:34:47 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": "330a8d74-d16a-4e85-8c49-75149ee741ae", + "x-ms-client-request-id": "a7344f5b1187cd1f8cb4a1b9ae1f226f", + "x-ms-correlation-request-id": "ccd8a182-4224-46a4-950b-3897290f2707", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "9155392f-6a91-47aa-8193-60f70e59a33a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063448Z:ccd8a182-4224-46a4-950b-3897290f2707" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b115a4053094cfc628abaadf8a4aab23", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:34:48 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": "423ac1cd-5242-4f7f-ab83-c696bdd4db0c", + "x-ms-client-request-id": "b115a4053094cfc628abaadf8a4aab23", + "x-ms-correlation-request-id": "d86f2de8-65b2-484d-b43e-8a54cd6a05ed", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "b4080e6f-09b9-4127-b0a3-8f2657af2c3d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063449Z:d86f2de8-65b2-484d-b43e-8a54cd6a05ed" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "643ba35bb75ef2b10ad3046171b5fdb5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:34:50 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": "32e9ba3e-ec60-418c-a7e5-cf76b40b80fa", + "x-ms-client-request-id": "643ba35bb75ef2b10ad3046171b5fdb5", + "x-ms-correlation-request-id": "d80b6b29-89d8-48c3-b00c-be529c7c6ef6", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "081afbce-7176-4b73-af95-0d99ae039940", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063450Z:d80b6b29-89d8-48c3-b00c-be529c7c6ef6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c6e1b327a6872b8689647fdc67404242", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:34:51 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": "711645ab-a7ae-40d3-9c3a-68863330cc2b", + "x-ms-client-request-id": "c6e1b327a6872b8689647fdc67404242", + "x-ms-correlation-request-id": "27f7484d-dd18-47a6-b2e4-bcb934fd8317", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "3d8b2ef0-62ff-4875-9880-cff3a13d07e0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063452Z:27f7484d-dd18-47a6-b2e4-bcb934fd8317" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0b5e7e09bee34e11f323a7c12b645e73", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:34:52 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": "1b7112ec-d006-4fe3-91dd-c3edf0701c67", + "x-ms-client-request-id": "0b5e7e09bee34e11f323a7c12b645e73", + "x-ms-correlation-request-id": "d15e5a7d-cff0-41f4-b1b1-825e86de7f8d", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "ca9bb1c8-6b0f-410a-9614-6e1bd3ff41c8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063453Z:d15e5a7d-cff0-41f4-b1b1-825e86de7f8d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d6b7f4ade468b49b1c10dbf938d48bc9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "fb3bd38a-2d44-45a7-8c55-7d8cd043f4b3", + "x-ms-client-request-id": "d6b7f4ade468b49b1c10dbf938d48bc9", + "x-ms-correlation-request-id": "6b33ac76-ebc6-4aa2-9829-633f4a18e977", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "d198281b-3907-489f-a8a7-8f3cb23d58f8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063454Z:6b33ac76-ebc6-4aa2-9829-633f4a18e977" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f358c290f15669d1a193d264ffc5ff24", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "bd31a009-d07b-460c-bf57-b00bcb96b945", + "x-ms-client-request-id": "f358c290f15669d1a193d264ffc5ff24", + "x-ms-correlation-request-id": "dd8d01da-2100-4336-8dd7-fa6dc5c729a8", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "7a5c3e56-63e1-483c-b4b8-9a633d57c857", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063455Z:dd8d01da-2100-4336-8dd7-fa6dc5c729a8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "722e0b066b8924d9e2aaefd2e218151e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e430507b-d4dd-4a97-b210-78979572ffd9", + "x-ms-client-request-id": "722e0b066b8924d9e2aaefd2e218151e", + "x-ms-correlation-request-id": "3795fcca-ce4e-4852-97f2-410dac29baa7", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "abea77fc-a2f9-4e2e-adfc-fa185287b36c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063457Z:3795fcca-ce4e-4852-97f2-410dac29baa7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6930dd976a0cbb1c224d35d41136b456", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:34: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": "83e1f86e-50f9-46d6-9a92-cd9aade5d5c5", + "x-ms-client-request-id": "6930dd976a0cbb1c224d35d41136b456", + "x-ms-correlation-request-id": "c0f1d405-02ed-4b47-bc25-75557caf0e61", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "9ea02330-bb3b-47de-81b0-46d09f162488", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063458Z:c0f1d405-02ed-4b47-bc25-75557caf0e61" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2cf2b71118a52440e83411ac02fe8689", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "27ffc74b-c70f-4674-9a9c-fa9dbfcde91f", + "x-ms-client-request-id": "2cf2b71118a52440e83411ac02fe8689", + "x-ms-correlation-request-id": "c5840619-d3cb-46c6-93e1-bf82fe563091", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "b4fcae54-1f6f-4497-ae42-bf27f26d31cb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063459Z:c5840619-d3cb-46c6-93e1-bf82fe563091" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "22ccb47d96949c17ee73503c360512ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "254f2eb8-af36-42c7-92ea-4e4e2d5cbd67", + "x-ms-client-request-id": "22ccb47d96949c17ee73503c360512ab", + "x-ms-correlation-request-id": "c2937865-8acb-4a96-bd6d-f6d7029a10d7", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "de36d1cd-0e90-4362-900b-67f8740acb61", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063501Z:c2937865-8acb-4a96-bd6d-f6d7029a10d7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2bc198f5e9257f789d0c80d85970b823", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:35: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": "193d058c-3e3f-4f27-b039-db7bd0f6905b", + "x-ms-client-request-id": "2bc198f5e9257f789d0c80d85970b823", + "x-ms-correlation-request-id": "bc91fcd3-cfad-49be-ab1d-85b1786e74d1", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "9b5a285d-1e52-48f8-87ae-7b4df7e3a08e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063502Z:bc91fcd3-cfad-49be-ab1d-85b1786e74d1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5d57abc691697ac29f563d32c703ede3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2f09844d-3b9d-4e9e-9624-1972da70acef", + "x-ms-client-request-id": "5d57abc691697ac29f563d32c703ede3", + "x-ms-correlation-request-id": "c720fba7-a03a-4fbd-aaf0-b8b69225d7d4", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "6e363f1c-e77c-4c55-8e7d-c2555233c389", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063503Z:c720fba7-a03a-4fbd-aaf0-b8b69225d7d4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6ab665225b3d94633b4d8587163f437e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ba0e3feb-c795-4e38-a44c-f4209e939fa8", + "x-ms-client-request-id": "6ab665225b3d94633b4d8587163f437e", + "x-ms-correlation-request-id": "7623f262-7d50-42ba-8c68-7daba8ef866b", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "c9336b3b-7886-4ad4-a0b4-87180786ec6a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063504Z:7623f262-7d50-42ba-8c68-7daba8ef866b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8b752cbab4ad6342d6478ccfac46b799", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d2872e7c-8fd7-4cd9-8ea7-90f66633a5de", + "x-ms-client-request-id": "8b752cbab4ad6342d6478ccfac46b799", + "x-ms-correlation-request-id": "ff06ad5b-dd08-4b73-afe2-5163033a5c61", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "282ac8b2-4723-4fbb-b7d5-d4e9811c53a4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063506Z:ff06ad5b-dd08-4b73-afe2-5163033a5c61" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f3b69d1f4eb96be647c3211c0c3a6460", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "d8fc2843-27f0-4736-8bd8-7e6a3ad526f9", + "x-ms-client-request-id": "f3b69d1f4eb96be647c3211c0c3a6460", + "x-ms-correlation-request-id": "8ba85f07-9a44-4c12-8296-1b44efe48b16", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "b5361ee9-8c8e-407f-9c49-f47d99bdb6c1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063507Z:8ba85f07-9a44-4c12-8296-1b44efe48b16" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9b77be12628e6d35235294f5ce94e7f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1a99f713-8910-4914-8b1f-86194d976c1c", + "x-ms-client-request-id": "9b77be12628e6d35235294f5ce94e7f5", + "x-ms-correlation-request-id": "30123d3b-8444-4731-ab27-0f0a56932600", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "48241217-ffed-40c0-a271-a06c725bd099", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063508Z:30123d3b-8444-4731-ab27-0f0a56932600" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7968eb954f896cc4450a43ea9225579b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2a2fcf4c-ba27-489f-bc5e-a72fe522c893", + "x-ms-client-request-id": "7968eb954f896cc4450a43ea9225579b", + "x-ms-correlation-request-id": "a8425cf4-72d1-4474-a34b-38f40f68e8cd", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "816cfab3-317c-47bf-8a5a-10eb0327f03c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063509Z:a8425cf4-72d1-4474-a34b-38f40f68e8cd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "edbc2be31ccebc0b6748d067baf19cb3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "711fe20d-5b93-462e-a921-5d919f804db4", + "x-ms-client-request-id": "edbc2be31ccebc0b6748d067baf19cb3", + "x-ms-correlation-request-id": "6783a546-80a7-4772-9235-9a53ec6d93f4", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "5203de2f-9663-48f8-83fd-3b18a156f8e5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063511Z:6783a546-80a7-4772-9235-9a53ec6d93f4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "21862bdbead1c3d7fa0b55831f4adafd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "9d977ecb-bde7-40c7-a301-befc03259185", + "x-ms-client-request-id": "21862bdbead1c3d7fa0b55831f4adafd", + "x-ms-correlation-request-id": "7575ac15-108b-414f-9b80-58f7800ffea0", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "bede495e-bcff-4df4-a6d1-4e7fd8e24e2b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063512Z:7575ac15-108b-414f-9b80-58f7800ffea0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a211f8fbfad77927e0ab11407e5db254", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b72bc44c-d39c-447c-b22f-81d01bb22b3b", + "x-ms-client-request-id": "a211f8fbfad77927e0ab11407e5db254", + "x-ms-correlation-request-id": "43889100-ca03-4332-9726-3cf92f6326e2", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "6407db31-74c2-4201-b458-701223da876f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063513Z:43889100-ca03-4332-9726-3cf92f6326e2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "670f8f6d359ff8ca54f9f3c2c6879d1c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f87741e2-c76f-48bc-8750-df3e96d56404", + "x-ms-client-request-id": "670f8f6d359ff8ca54f9f3c2c6879d1c", + "x-ms-correlation-request-id": "3a563a6b-3315-4119-bef9-34b62b937a8c", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "37713ed5-fa65-4672-b1e7-4fcb05bbd2d2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063515Z:3a563a6b-3315-4119-bef9-34b62b937a8c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c16bd36df9dfe1dc040c4026d996459c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a08b2808-f076-4add-9bca-4b2c0b1862f4", + "x-ms-client-request-id": "c16bd36df9dfe1dc040c4026d996459c", + "x-ms-correlation-request-id": "896fb2ea-308d-4987-b784-2ccb2f0255f4", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "64d1bb9c-d17a-41e7-afea-f8467edd71d9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063516Z:896fb2ea-308d-4987-b784-2ccb2f0255f4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "90160059733bc55e2e194ede0665b259", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "1a67efc6-6fdf-4e0c-830b-038746bc6f60", + "x-ms-client-request-id": "90160059733bc55e2e194ede0665b259", + "x-ms-correlation-request-id": "214aa058-e54a-41ad-a350-7a1091deb654", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "8ce3d9ac-d332-441b-a68c-a9e6875ba45e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063517Z:214aa058-e54a-41ad-a350-7a1091deb654" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "abd3f50ef0f17475b22d6292f5a41fbe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "437bf0b1-cbdf-47bc-9339-95e3e71e92a7", + "x-ms-client-request-id": "abd3f50ef0f17475b22d6292f5a41fbe", + "x-ms-correlation-request-id": "19052ef8-7165-4a27-a9e2-003e7d6fcc6d", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "467b9282-f6e6-4112-821e-042bf2d937e9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063519Z:19052ef8-7165-4a27-a9e2-003e7d6fcc6d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c66856b30d70f9e074a593c5abfeda9e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "01a005bc-2c65-4ac3-b911-c78bd51bf5ec", + "x-ms-client-request-id": "c66856b30d70f9e074a593c5abfeda9e", + "x-ms-correlation-request-id": "52ba3897-e7f7-40bd-ac42-65d9de3e7590", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "e152c907-9f68-41cf-bb2c-3bc80c3aec95", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063520Z:52ba3897-e7f7-40bd-ac42-65d9de3e7590" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e417e65a99c369ab8ba1dd0d10cbd08a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "42d0c0de-3926-416a-97f7-2256ddcd8d83", + "x-ms-client-request-id": "e417e65a99c369ab8ba1dd0d10cbd08a", + "x-ms-correlation-request-id": "50c00333-8e50-4247-aa32-cc418d3cf825", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "bd30f144-12c9-4fac-ba82-d84ba440e32a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063521Z:50c00333-8e50-4247-aa32-cc418d3cf825" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b02a8ffaecfc00e814d9364b5dafc8b3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "aca7eec0-6c7a-4c00-bbb2-b8737ad70097", + "x-ms-client-request-id": "b02a8ffaecfc00e814d9364b5dafc8b3", + "x-ms-correlation-request-id": "cdd45068-5188-4225-b270-d778b0269e12", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "242b4268-d044-48fe-beff-b1bc0062db3a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063523Z:cdd45068-5188-4225-b270-d778b0269e12" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0e38c3533b8c19fbabff3acf2fd2e8a9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "96efbcdd-d297-4c4a-9677-9e46db050baa", + "x-ms-client-request-id": "0e38c3533b8c19fbabff3acf2fd2e8a9", + "x-ms-correlation-request-id": "8b7bf598-e4e2-4e6a-abe3-f71b5fc23ed2", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "ac64d4f1-ff89-4bf4-ade9-4ff5f41cd4a0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063525Z:8b7bf598-e4e2-4e6a-abe3-f71b5fc23ed2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1bcb08d529d46da2fd17cfea635f0bdb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e2131584-dc37-4833-bf7b-1cdea0448d8d", + "x-ms-client-request-id": "1bcb08d529d46da2fd17cfea635f0bdb", + "x-ms-correlation-request-id": "0fbf7cb3-1780-4d71-8a10-7329deb1d817", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "9191ef51-9e43-46b0-a010-8fbd08d7b753", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063528Z:0fbf7cb3-1780-4d71-8a10-7329deb1d817" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4dba29d8c193befe941005fdb119d141", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "fa223f75-c8d6-44d0-bd82-c99270e2cd0b", + "x-ms-client-request-id": "4dba29d8c193befe941005fdb119d141", + "x-ms-correlation-request-id": "70b7a53f-6cbc-4e10-9db0-6844d6bf0c72", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "1a25aff0-5226-4439-877a-63be044be0fc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063529Z:70b7a53f-6cbc-4e10-9db0-6844d6bf0c72" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "54768df0ace32adf21ca11746b11b64b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "bca359e6-bac8-4449-9ae9-69e5345e04b6", + "x-ms-client-request-id": "54768df0ace32adf21ca11746b11b64b", + "x-ms-correlation-request-id": "bc230ad0-45ec-4343-9796-bf49d3aa9344", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "d85a5328-9abd-4bb4-9536-94c7de1157e0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063531Z:bc230ad0-45ec-4343-9796-bf49d3aa9344" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "05f65ef39b1814150a0c87c324a5bce4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "58c10101-a68f-46f7-b143-f659afb158f9", + "x-ms-client-request-id": "05f65ef39b1814150a0c87c324a5bce4", + "x-ms-correlation-request-id": "d5b33f7f-c9b4-4b1f-8f6e-e292faa332bc", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "01fde534-86dc-487c-a4d0-d0cd51318ca0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063534Z:d5b33f7f-c9b4-4b1f-8f6e-e292faa332bc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d6f98d45b7e92bf849902bc9af895382", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "ac0f400f-ea6b-479f-a499-31e6d76a0663", + "x-ms-client-request-id": "d6f98d45b7e92bf849902bc9af895382", + "x-ms-correlation-request-id": "c56cfe94-737d-4d87-99f6-67911354962e", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "3ffd94a4-d17a-4a68-8a51-4e905a860944", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063535Z:c56cfe94-737d-4d87-99f6-67911354962e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5209b95acc225428776149d6251c057c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9b265ce1-73f5-449a-a3a5-79190b00780a", + "x-ms-client-request-id": "5209b95acc225428776149d6251c057c", + "x-ms-correlation-request-id": "dc6e3f28-16ee-4151-a692-774fdb3453d2", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "cb2844a6-bed9-467a-a8f4-0ce1936332da", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063537Z:dc6e3f28-16ee-4151-a692-774fdb3453d2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dd2f2c0ee0173c6266cabb88704c6481", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "36e15536-04bd-4b55-8e68-ea8fd3bedaf6", + "x-ms-client-request-id": "dd2f2c0ee0173c6266cabb88704c6481", + "x-ms-correlation-request-id": "22e2ebd6-2641-4f3d-a534-e9eca62ea70b", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "81a2959e-2238-4aa1-b390-0a5daaf34f64", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063538Z:22e2ebd6-2641-4f3d-a534-e9eca62ea70b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6a6904b9699c79c165a55e876d21062d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "b2fd0395-1974-4fe0-93b4-d6772ecb4e18", + "x-ms-client-request-id": "6a6904b9699c79c165a55e876d21062d", + "x-ms-correlation-request-id": "81886cb6-3131-4c04-b8e6-539812253d2f", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "1a32d974-8be3-4a7c-8287-d7481f9f28a8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063540Z:81886cb6-3131-4c04-b8e6-539812253d2f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "82baaf8a7559796b57ccec5810a0e42b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "72517ea6-7413-4c62-897f-a3e3bafd87bf", + "x-ms-client-request-id": "82baaf8a7559796b57ccec5810a0e42b", + "x-ms-correlation-request-id": "da2f3b2b-ecfa-4ebc-94c9-49e6eefc8b48", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "f3230521-7660-44ce-b512-6bab304e2b0c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063541Z:da2f3b2b-ecfa-4ebc-94c9-49e6eefc8b48" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "201cc8fc9bb3a4e06bb5787282dacf44", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d240e1fe-0c53-461b-8417-e34ee19f1859", + "x-ms-client-request-id": "201cc8fc9bb3a4e06bb5787282dacf44", + "x-ms-correlation-request-id": "91f248d6-6c26-4083-8f58-c804f92f24f4", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "219db95d-2ecf-4142-8970-6274ced3c569", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063543Z:91f248d6-6c26-4083-8f58-c804f92f24f4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c0fe8ec4e191442799ef13cf7d6968c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "962f959a-a96d-466a-943a-5dc38743256e", + "x-ms-client-request-id": "c0fe8ec4e191442799ef13cf7d6968c5", + "x-ms-correlation-request-id": "dbcc3773-4cb1-4f1e-884d-652bd6088ba4", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "674ab0ac-1674-4a5a-8dfb-b685443262fb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063544Z:dbcc3773-4cb1-4f1e-884d-652bd6088ba4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a58a32c0e505ee7acf1617a3fcf8f77c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b4a5e3ae-8e5d-4590-86e5-380724bc3341", + "x-ms-client-request-id": "a58a32c0e505ee7acf1617a3fcf8f77c", + "x-ms-correlation-request-id": "c66397a6-2f5f-41a8-bf7a-2a8bf1451cf1", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "bab5bba4-1c6f-4364-b375-959bb892cf42", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063546Z:c66397a6-2f5f-41a8-bf7a-2a8bf1451cf1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8293a7fd23a11b9aa0d887c388102702", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "911d640b-db0b-42c0-9f36-223128869cff", + "x-ms-client-request-id": "8293a7fd23a11b9aa0d887c388102702", + "x-ms-correlation-request-id": "7ab33c55-91fd-4b3d-ba14-da55a8984e0e", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "7e5ba8bb-5a8c-43b5-b49d-d00443a8f410", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063547Z:7ab33c55-91fd-4b3d-ba14-da55a8984e0e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4fb1b34d2950de3f130ff17bca8347a0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8f22174f-135e-43bf-bde1-851902eb54fc", + "x-ms-client-request-id": "4fb1b34d2950de3f130ff17bca8347a0", + "x-ms-correlation-request-id": "7d7616d2-0f74-49cb-a2a1-5f77bdcf521f", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "5108a273-d3db-4d99-a4af-f04abaf2f298", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063548Z:7d7616d2-0f74-49cb-a2a1-5f77bdcf521f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d6d296f8e6d59d23986f042d5eb666bf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "537c624a-b620-41cb-80c1-05bc9120e9e0", + "x-ms-client-request-id": "d6d296f8e6d59d23986f042d5eb666bf", + "x-ms-correlation-request-id": "08cd9c53-2d83-4726-bf7a-2fef0be84ea8", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "f43d1b10-2ad0-4169-b1eb-755fa8306f98", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063549Z:08cd9c53-2d83-4726-bf7a-2fef0be84ea8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "495614eea847d32c67b46e92311f511c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "222d7279-d950-4580-a9cf-5f079218cc73", + "x-ms-client-request-id": "495614eea847d32c67b46e92311f511c", + "x-ms-correlation-request-id": "c488c8b0-f413-43a2-a183-1939e3cece1b", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "cb87ff6e-e251-4990-b5d9-8ec944bcbf5b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063551Z:c488c8b0-f413-43a2-a183-1939e3cece1b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f1cbe690513d662c9014b7e02412805c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "217aef77-da85-4ec5-bc7e-3012ff3123d5", + "x-ms-client-request-id": "f1cbe690513d662c9014b7e02412805c", + "x-ms-correlation-request-id": "1ec89ac7-551f-42bc-b17e-ad5f9ade3914", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "678b4127-d783-4922-9a08-26f8ee457012", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063552Z:1ec89ac7-551f-42bc-b17e-ad5f9ade3914" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b58c32a9fe2c4f596aff6e2078906b78", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c50fdfa1-d643-45f0-9338-4098b9cd0cd2", + "x-ms-client-request-id": "b58c32a9fe2c4f596aff6e2078906b78", + "x-ms-correlation-request-id": "2d36cdb1-12c7-47e1-829a-b4635b05c8a6", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "5a7b0b18-1415-44c5-87a1-48f0eb20c043", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063553Z:2d36cdb1-12c7-47e1-829a-b4635b05c8a6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "779ce81e75eb9d82e8f0b832f04bae55", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "99f33747-b2c8-4c21-b7c5-9949b540fd90", + "x-ms-client-request-id": "779ce81e75eb9d82e8f0b832f04bae55", + "x-ms-correlation-request-id": "2313fa4a-335d-4526-9118-095014281380", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "831670c3-9b69-405d-80f0-62d88b8518b1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063554Z:2313fa4a-335d-4526-9118-095014281380" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ffe911349b9291ef8d7b863de20beeff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9f8e7905-0d08-41c4-8dbb-e443d2ca37e8", + "x-ms-client-request-id": "ffe911349b9291ef8d7b863de20beeff", + "x-ms-correlation-request-id": "2ee15b68-af3c-4e2a-a554-d5433b45bad2", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "b36259b0-6d6b-4c44-910f-65fce42b42d4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063556Z:2ee15b68-af3c-4e2a-a554-d5433b45bad2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3cc23ea808753471b0efcd3c46265f1f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c5c42267-e131-497f-b73b-48c980237c25", + "x-ms-client-request-id": "3cc23ea808753471b0efcd3c46265f1f", + "x-ms-correlation-request-id": "90742374-6f11-4d1e-8402-e4708b6f555f", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "634dd51d-f137-4cbe-afe8-8337d5a21a1d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063557Z:90742374-6f11-4d1e-8402-e4708b6f555f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "66eb19516ca782e6f80bea70ee44badc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5c40cf3b-5d9c-4ff6-8bf3-74646c01d083", + "x-ms-client-request-id": "66eb19516ca782e6f80bea70ee44badc", + "x-ms-correlation-request-id": "7b3b7903-1a69-4125-ac7d-84ec5b706bd9", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "8aa892d0-5062-41af-817a-5663c1cc065e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063558Z:7b3b7903-1a69-4125-ac7d-84ec5b706bd9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b18ab90271882cdfa0b54ea3ceb34b66", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "c8eb19c0-e549-488a-a912-2c5f09de58e6", + "x-ms-client-request-id": "b18ab90271882cdfa0b54ea3ceb34b66", + "x-ms-correlation-request-id": "13380274-d5f4-464e-a0ac-7d47d4db77b2", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "bfa36aef-f3c8-4593-8fb0-6e6c29702757", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063600Z:13380274-d5f4-464e-a0ac-7d47d4db77b2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c9ec671b88203c57583f446a1d00456b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "f938724f-434f-47e2-aeec-31425204d98f", + "x-ms-client-request-id": "c9ec671b88203c57583f446a1d00456b", + "x-ms-correlation-request-id": "766d60a2-3366-4a1b-8120-5279d3609b86", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "54838fb7-a484-4bc2-bf14-d601b112c947", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063601Z:766d60a2-3366-4a1b-8120-5279d3609b86" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8c3af034ad9cdf9639bfc5f21d42b445", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "27b55c59-7416-479c-9a5c-10308e2fa318", + "x-ms-client-request-id": "8c3af034ad9cdf9639bfc5f21d42b445", + "x-ms-correlation-request-id": "56c51a66-b0f2-40dc-b1c0-ab1ff0680acd", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "59b39878-1e2f-471e-8d76-f5381a05a17f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063602Z:56c51a66-b0f2-40dc-b1c0-ab1ff0680acd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "865483c0f05779bc614e59492d750f9f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4e6deeac-b469-4f59-9c27-dee00acfb8ea", + "x-ms-client-request-id": "865483c0f05779bc614e59492d750f9f", + "x-ms-correlation-request-id": "b8bfb2f9-cf8e-4328-80aa-28a188c2de4b", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "837f9454-053a-4b22-941b-1ff95ef9823e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063603Z:b8bfb2f9-cf8e-4328-80aa-28a188c2de4b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dd6fe26fbe786ecad00d9061c2641e15", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3bec7b8b-c05e-4b81-984a-83f48defc4b1", + "x-ms-client-request-id": "dd6fe26fbe786ecad00d9061c2641e15", + "x-ms-correlation-request-id": "74f01c4e-8f19-46ea-8dd9-102f03e72429", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "a8b898c2-5acc-44ae-a495-b935c1a16d8d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063605Z:74f01c4e-8f19-46ea-8dd9-102f03e72429" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "99a9ff8bbfac431334c02b4e534db2c3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2246b8a3-8463-4fb3-975f-5e3fd877627b", + "x-ms-client-request-id": "99a9ff8bbfac431334c02b4e534db2c3", + "x-ms-correlation-request-id": "18e39ce6-9b58-4003-8615-f47ea219e3b6", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "a52735d5-66c2-497c-821b-d84af5cb51f1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063606Z:18e39ce6-9b58-4003-8615-f47ea219e3b6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3a8326afd6d302ccb9e6b54a605bb7fc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "94ddfff3-5f01-4284-b724-b05a1ee6c7ea", + "x-ms-client-request-id": "3a8326afd6d302ccb9e6b54a605bb7fc", + "x-ms-correlation-request-id": "35381ea1-2975-4b8a-9a08-6442a7a01900", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "bdea8d95-e4b9-4f62-91f7-a43cd742f67c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063607Z:35381ea1-2975-4b8a-9a08-6442a7a01900" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2dbd442f75ccb0f3ce2ba9b8937b1a83", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "98747417-31ad-4eec-b6cc-a9c840bf86e8", + "x-ms-client-request-id": "2dbd442f75ccb0f3ce2ba9b8937b1a83", + "x-ms-correlation-request-id": "cb9daace-f25f-4645-9741-b6778a14b76d", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "0718535a-7e5b-4668-86e5-2bb247375cc0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063609Z:cb9daace-f25f-4645-9741-b6778a14b76d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9cb1cc5be3e1b54133a7e0c609c9e3d9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "9a2fdc7f-85e0-4f60-be04-49426cdd93a7", + "x-ms-client-request-id": "9cb1cc5be3e1b54133a7e0c609c9e3d9", + "x-ms-correlation-request-id": "e349d13c-98f9-48a7-a632-5b4c691439da", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "b2728466-594d-4b04-972d-5e6e6ea7d7c7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063610Z:e349d13c-98f9-48a7-a632-5b4c691439da" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0f1e2e0884903af732d36ca82c146f3d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5a813e26-906d-4f5a-8125-dd4be4cef452", + "x-ms-client-request-id": "0f1e2e0884903af732d36ca82c146f3d", + "x-ms-correlation-request-id": "f70a7da5-1783-4fc8-8c4f-93b7f64f6ce8", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "245ca40a-ac6f-4692-98bd-c1020600ac4a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063611Z:f70a7da5-1783-4fc8-8c4f-93b7f64f6ce8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "93ef32cb1ba94c1b0207fa24942ca705", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "13129843-6e74-430c-89f3-5d5336d052a3", + "x-ms-client-request-id": "93ef32cb1ba94c1b0207fa24942ca705", + "x-ms-correlation-request-id": "c9d9f201-a649-43a8-811e-4bc150b521be", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "f2cb0ac0-5f18-40e6-998e-25f12e7e575d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063612Z:c9d9f201-a649-43a8-811e-4bc150b521be" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "64afcf470a5cd6f3d576690d7799881f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "740dbda9-80f0-4c32-bcc8-fc61fb596d26", + "x-ms-client-request-id": "64afcf470a5cd6f3d576690d7799881f", + "x-ms-correlation-request-id": "8e44a0bd-65dd-4cb1-9702-275d2f9c2ee4", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "bdfd7934-5a4c-4f74-bc32-ed405cb440ee", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063614Z:8e44a0bd-65dd-4cb1-9702-275d2f9c2ee4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d6faa23850d9ed2f12d20c8889d2a606", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "183217d2-7ea7-4f7c-be49-38a686cc4dd8", + "x-ms-client-request-id": "d6faa23850d9ed2f12d20c8889d2a606", + "x-ms-correlation-request-id": "ce8a3854-2ffd-4f7f-8cb7-619cd24a3c5b", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "a612b527-8ebb-4e95-8113-889ddf158ac6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063615Z:ce8a3854-2ffd-4f7f-8cb7-619cd24a3c5b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5d60662c0a64c0e13f19be33b20dd569", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "75dee167-7f8a-4d57-b82a-fec51ef43fe0", + "x-ms-client-request-id": "5d60662c0a64c0e13f19be33b20dd569", + "x-ms-correlation-request-id": "680be994-773b-4831-bf34-595675b41869", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "a68208bc-c910-49d9-bdf0-cdb3bd1d9ff2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063616Z:680be994-773b-4831-bf34-595675b41869" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f2ecdb7ed032f72ca0c2528afe6a4c02", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1985ed79-d249-4368-8fc4-c9ba16e7db11", + "x-ms-client-request-id": "f2ecdb7ed032f72ca0c2528afe6a4c02", + "x-ms-correlation-request-id": "d6d9e30f-a175-4ad8-b375-7a2ecee48e4c", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "f8689b0e-4d15-435d-ba8d-183431e38731", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063617Z:d6d9e30f-a175-4ad8-b375-7a2ecee48e4c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "10e163d02b382dbac13997c091fc3a04", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "eb439d59-e3c7-4310-be39-95daffd1935a", + "x-ms-client-request-id": "10e163d02b382dbac13997c091fc3a04", + "x-ms-correlation-request-id": "e1e84067-d8bb-4b64-899e-d08fb2bd25b4", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "5f624174-a0ae-42f4-aa02-ae1d0abbba3b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063619Z:e1e84067-d8bb-4b64-899e-d08fb2bd25b4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ae09a3fdb4e65cd33a68bca2b856c2d4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "8f1d30d8-6985-4deb-9491-7009a67f83f2", + "x-ms-client-request-id": "ae09a3fdb4e65cd33a68bca2b856c2d4", + "x-ms-correlation-request-id": "4abf112d-4d19-4925-85fc-6f43c99dd0ed", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "06c2a7c5-962d-47e9-96d8-6ec3b022ad24", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063620Z:4abf112d-4d19-4925-85fc-6f43c99dd0ed" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4f63bcccc42c533021be30f8386b65a3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d1b45464-1a1c-488d-9e53-e14e578adc90", + "x-ms-client-request-id": "4f63bcccc42c533021be30f8386b65a3", + "x-ms-correlation-request-id": "4a326b77-5a7a-4ebc-ba1b-22d5966508a7", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "fd378fcf-4692-4055-af4e-aa749e8efce2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063621Z:4a326b77-5a7a-4ebc-ba1b-22d5966508a7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5b8d4d879e611b1b8f85d6cf6e17756a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f46db22a-7fb0-43d3-95ac-5627af90daea", + "x-ms-client-request-id": "5b8d4d879e611b1b8f85d6cf6e17756a", + "x-ms-correlation-request-id": "2c0c29f9-6642-4e0e-89a4-3ae459bd6fca", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "2a9ec2cc-8cdb-4bf2-aace-57f90089a83b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063623Z:2c0c29f9-6642-4e0e-89a4-3ae459bd6fca" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d5f4c377eb9838d872b68c2783da23ce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "639d717b-6a0a-4aa5-9816-bf6049355ce9", + "x-ms-client-request-id": "d5f4c377eb9838d872b68c2783da23ce", + "x-ms-correlation-request-id": "40dea770-c481-46d0-8dc7-e80204c5ce96", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "4b7db137-fd76-462f-868e-f3071134292a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063624Z:40dea770-c481-46d0-8dc7-e80204c5ce96" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6a1b180267c92d73a047c0a6ed60e409", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "7ee6a9a0-36ff-425e-87a8-9f453201cbf0", + "x-ms-client-request-id": "6a1b180267c92d73a047c0a6ed60e409", + "x-ms-correlation-request-id": "ac5e05d7-342c-4019-a9bb-07c22ec2ac6b", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "3169bbc4-aa0a-4f0a-8eba-a2212975986f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063625Z:ac5e05d7-342c-4019-a9bb-07c22ec2ac6b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7581c54990779b0b7554e9aa11f498b4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "78cb6887-dae1-4b59-b415-8d393960346d", + "x-ms-client-request-id": "7581c54990779b0b7554e9aa11f498b4", + "x-ms-correlation-request-id": "f7d24867-c30b-4177-a3bc-9c3d2b4eba68", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "b28d736e-1c3e-445b-9240-3c2cbe5ed473", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063627Z:f7d24867-c30b-4177-a3bc-9c3d2b4eba68" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "55cc08620bfb0fa150c635512b314b11", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0d35bcab-8398-4c0e-97ec-f02eeb03b616", + "x-ms-client-request-id": "55cc08620bfb0fa150c635512b314b11", + "x-ms-correlation-request-id": "fb648700-1815-4e4f-9ab8-43d6d5e289a5", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "f986b6a1-cce3-44eb-aaa3-3c151ddeae18", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063628Z:fb648700-1815-4e4f-9ab8-43d6d5e289a5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bdde82d2ae5972560d7ff5757ec81cab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "401f33e4-a922-4dbe-9396-4177be373403", + "x-ms-client-request-id": "bdde82d2ae5972560d7ff5757ec81cab", + "x-ms-correlation-request-id": "c8f1aca5-9db7-4015-a7ae-78544cccc2c9", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "6f24b004-d5c0-436a-b181-80c56fe202bf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063629Z:c8f1aca5-9db7-4015-a7ae-78544cccc2c9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e5440baf8e933d0e247125b15bba7043", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c3a6b54d-c533-4eb7-9880-2073c194a3c5", + "x-ms-client-request-id": "e5440baf8e933d0e247125b15bba7043", + "x-ms-correlation-request-id": "e9172f90-5e96-4fe8-92e4-a5428d94becc", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "7de12259-9ae8-4855-b65d-14260b9153b6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063631Z:e9172f90-5e96-4fe8-92e4-a5428d94becc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8ed8d708da16b45bb25a487c162b9187", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "92b3648c-ed67-433b-af9e-1d2aa56a68b0", + "x-ms-client-request-id": "8ed8d708da16b45bb25a487c162b9187", + "x-ms-correlation-request-id": "6ae1eca1-c24f-409b-869a-a2283b9847a7", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "62cb1b85-8454-4505-945c-e198edd05eba", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063632Z:6ae1eca1-c24f-409b-869a-a2283b9847a7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1fa189aa66ed447d74a098e789a41753", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "42d0025c-10db-40f9-8728-982cc47eca3d", + "x-ms-client-request-id": "1fa189aa66ed447d74a098e789a41753", + "x-ms-correlation-request-id": "6e7df116-7d09-4509-a232-bcb779a75452", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "18076f6e-4fa5-4596-b72a-9cf2d74013d8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063633Z:6e7df116-7d09-4509-a232-bcb779a75452" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a66cb10e8df0d495b0903239459227f8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "56d2faee-5c92-4257-8be5-e40a2a19d779", + "x-ms-client-request-id": "a66cb10e8df0d495b0903239459227f8", + "x-ms-correlation-request-id": "7c4509d7-cbd3-4ea4-9e2f-15368e5fb275", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "f2cc4c16-92a4-4313-9392-49c179d42cf0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063634Z:7c4509d7-cbd3-4ea4-9e2f-15368e5fb275" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d1079ddf5118a2555a931a7641732a0d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "858b2e6b-1ce0-4072-8df3-af1e0797d162", + "x-ms-client-request-id": "d1079ddf5118a2555a931a7641732a0d", + "x-ms-correlation-request-id": "f1990d98-3f69-4df7-88ef-53a5ad567a3e", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "f245d5f9-f7fc-4587-a623-810ce35f5a47", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063636Z:f1990d98-3f69-4df7-88ef-53a5ad567a3e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "646df442ebbf1c96f3cc6f5c3343fee2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "37279803-a595-41bc-b293-2bc44056af50", + "x-ms-client-request-id": "646df442ebbf1c96f3cc6f5c3343fee2", + "x-ms-correlation-request-id": "f1f4a3db-d032-4bc7-843e-31601acb911e", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "05033013-2256-41e5-b586-71ba62b01611", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063637Z:f1f4a3db-d032-4bc7-843e-31601acb911e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eb079f78459dbd3a5bc94b5c731f923c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "419e64fa-e5b6-4633-aeaf-d7de6e88a6d0", + "x-ms-client-request-id": "eb079f78459dbd3a5bc94b5c731f923c", + "x-ms-correlation-request-id": "74aad872-0024-423a-b2f5-6a9c6d0c92b3", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "d4f1719e-a9ad-47d0-8dac-05eb4e47838e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063638Z:74aad872-0024-423a-b2f5-6a9c6d0c92b3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "50f62565c324f43906eade4be2f96f17", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "f7372ff8-7c55-436e-92b9-e89b54fe5bd1", + "x-ms-client-request-id": "50f62565c324f43906eade4be2f96f17", + "x-ms-correlation-request-id": "fb2b0b5e-a27d-465f-8155-12f3c59f4a1c", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "cb3f7698-6668-4464-b2ea-d313cdf59d23", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063640Z:fb2b0b5e-a27d-465f-8155-12f3c59f4a1c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a1fd37953f6bfd6fbaaf08f59f3aa9d4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2a7a467b-bb35-47bf-a215-00b1de2333a4", + "x-ms-client-request-id": "a1fd37953f6bfd6fbaaf08f59f3aa9d4", + "x-ms-correlation-request-id": "1c67e3c6-f3f8-4009-bdf1-80947cac3dc8", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "81bdf718-d3ac-4624-b155-b9c8482e167f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063641Z:1c67e3c6-f3f8-4009-bdf1-80947cac3dc8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0df7323aad4cb4bd6613e5b367efdb62", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b5435795-b6eb-47e2-9540-521aa69e83e1", + "x-ms-client-request-id": "0df7323aad4cb4bd6613e5b367efdb62", + "x-ms-correlation-request-id": "5473e50c-97ea-4531-a7ff-b77a6b80537e", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "96791e54-0e7c-419f-b9d9-5292dbc1a0c1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063642Z:5473e50c-97ea-4531-a7ff-b77a6b80537e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3bc7345af12126d1b6f99674bb4454cc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "83810ecb-8197-47e8-a7e8-21efa332c1f1", + "x-ms-client-request-id": "3bc7345af12126d1b6f99674bb4454cc", + "x-ms-correlation-request-id": "8df134d6-e833-48b0-9de8-f1800217f0d2", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "014b7e44-6f15-449c-8633-bf7cfce37d3e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063643Z:8df134d6-e833-48b0-9de8-f1800217f0d2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b01109406101e7ca79483b585abc95ca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "e596d11b-ec95-40d6-ae05-3d83eae2027c", + "x-ms-client-request-id": "b01109406101e7ca79483b585abc95ca", + "x-ms-correlation-request-id": "760aee15-bf3f-4054-8bdd-98de9c500053", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "befec1ba-4fcf-4b39-8526-f9b9ba291fb7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063645Z:760aee15-bf3f-4054-8bdd-98de9c500053" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6b9aa5d46d7248b261d157521649f922", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4cd0eb0f-bb8b-47ca-877c-dbbcac9b2f1a", + "x-ms-client-request-id": "6b9aa5d46d7248b261d157521649f922", + "x-ms-correlation-request-id": "a9c85f12-2814-4cf9-839b-98a565593afd", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "92b593f4-0122-4c0d-8bca-2742fe1d5568", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063646Z:a9c85f12-2814-4cf9-839b-98a565593afd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5d7218be2addf96169dfc2d8b578cbfa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1fd7a680-d143-460b-a48d-db23201be2ab", + "x-ms-client-request-id": "5d7218be2addf96169dfc2d8b578cbfa", + "x-ms-correlation-request-id": "35f23907-c49f-4dfa-afb5-5a9c584f8d4c", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "017dcc03-62f5-4554-8afd-ccf23791ad8c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063647Z:35f23907-c49f-4dfa-afb5-5a9c584f8d4c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "159fcb64e9a9d25957c84f300977d130", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a45cdc88-aa3a-4d82-be4a-74236381517f", + "x-ms-client-request-id": "159fcb64e9a9d25957c84f300977d130", + "x-ms-correlation-request-id": "6edd7351-5d47-4c21-bf24-a0a9202cb402", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "b206267b-77d9-4ee1-8570-99e46b1055f6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063648Z:6edd7351-5d47-4c21-bf24-a0a9202cb402" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "419a184e3749aaed44a00193abd993e8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "321aedaf-d098-436d-a638-8c825e44b9da", + "x-ms-client-request-id": "419a184e3749aaed44a00193abd993e8", + "x-ms-correlation-request-id": "f9753d29-df05-4168-8a79-7d6fd783261c", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "b0aa58e8-7a14-4aaf-9e87-0edf679a61af", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063650Z:f9753d29-df05-4168-8a79-7d6fd783261c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4aee5d05e4a9d578bea00614db30eff2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5affe35d-42aa-4800-a9a6-f39bc362062f", + "x-ms-client-request-id": "4aee5d05e4a9d578bea00614db30eff2", + "x-ms-correlation-request-id": "fb0b9560-c3b0-4575-9265-defd54340d20", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "a7085f54-8d08-4cd1-b252-5fd8b99febb7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063651Z:fb0b9560-c3b0-4575-9265-defd54340d20" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9c8a920e8add2db1def5d008e7c6277d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "04b75f6c-88fb-4c20-afd2-b92bc7048d15", + "x-ms-client-request-id": "9c8a920e8add2db1def5d008e7c6277d", + "x-ms-correlation-request-id": "6d31b964-1df1-4cec-836a-653b4b0c2d95", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "14edbe93-c5a6-4cb9-8564-5639cc6a44a2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063652Z:6d31b964-1df1-4cec-836a-653b4b0c2d95" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ac2a663586886a86a0c582a830d8ce13", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "b4692e06-de6a-427a-8a81-37987d2bf012", + "x-ms-client-request-id": "ac2a663586886a86a0c582a830d8ce13", + "x-ms-correlation-request-id": "47685db3-48ab-4466-b4f2-2b116d74faac", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "d3ac1114-3a4d-4959-b62d-3dfe623a18c7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063654Z:47685db3-48ab-4466-b4f2-2b116d74faac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "18840eb1f64f7b0bacc16cb31370edf8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4711ea92-7266-4423-a2a3-a3614b912c4f", + "x-ms-client-request-id": "18840eb1f64f7b0bacc16cb31370edf8", + "x-ms-correlation-request-id": "167d437e-558e-4aa1-9b73-21fe4523c3d3", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "ecf42f2f-3fa1-45e0-b3eb-55e0f72a85d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063655Z:167d437e-558e-4aa1-9b73-21fe4523c3d3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "75df8978430588690b1ffc180708fc06", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1ba907a8-5b4b-4077-a135-0010c414a96e", + "x-ms-client-request-id": "75df8978430588690b1ffc180708fc06", + "x-ms-correlation-request-id": "d5ab6411-b5c2-4f39-8fbb-b4f6aa595178", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "67eed52b-fb34-492b-9c94-b65b34ea9f07", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063656Z:d5ab6411-b5c2-4f39-8fbb-b4f6aa595178" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d857bd270e423f2d5baf00c719d2572f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "080f2e59-678d-4c78-af72-85b5ae88348a", + "x-ms-client-request-id": "d857bd270e423f2d5baf00c719d2572f", + "x-ms-correlation-request-id": "6e308b2f-5520-4986-bdd7-5f1621f706f8", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "cb991aec-6e1c-41d0-b806-cffcdc79c33c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063657Z:6e308b2f-5520-4986-bdd7-5f1621f706f8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a6308ad759f96d0da5fc0d30f9f274a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b117ef2f-f22d-4842-91d2-4eff92e0ea60", + "x-ms-client-request-id": "a6308ad759f96d0da5fc0d30f9f274a4", + "x-ms-correlation-request-id": "f827be0c-26c6-4304-8994-d7b64757232c", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "9ed69000-8664-4727-88e1-b040d1399c59", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063659Z:f827be0c-26c6-4304-8994-d7b64757232c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "568c66c4151969b65ca0195643a26e38", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "732a9849-f4ce-4ddb-948b-cc0d73b58448", + "x-ms-client-request-id": "568c66c4151969b65ca0195643a26e38", + "x-ms-correlation-request-id": "46042328-adc5-4ed8-be02-e149476b5e28", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "085a7b14-1951-44fc-9caa-ea9ce1f93e56", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063700Z:46042328-adc5-4ed8-be02-e149476b5e28" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7c41cdc855d7cd0cafe9334601fd4569", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "12b268e1-b713-478e-9579-6b87d02e6c8c", + "x-ms-client-request-id": "7c41cdc855d7cd0cafe9334601fd4569", + "x-ms-correlation-request-id": "e9ea4ff6-f53c-4899-8a59-54352a91e6cf", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "2672f944-f5d5-4ded-850e-247ce164061e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063701Z:e9ea4ff6-f53c-4899-8a59-54352a91e6cf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b3025b3b0046c216d4c64a583fb72a02", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "cf410161-c0e3-42c5-a46f-4a0d0f769dd0", + "x-ms-client-request-id": "b3025b3b0046c216d4c64a583fb72a02", + "x-ms-correlation-request-id": "df9e4ed0-9088-42d5-a44d-61aca3ea5e02", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "5d2352e0-501f-4d03-b360-19a13debef9a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063703Z:df9e4ed0-9088-42d5-a44d-61aca3ea5e02" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2c67d48df7b06fcc59bea72fe16f685e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "207e0aba-bbd6-4829-bd04-a77ce2cbd696", + "x-ms-client-request-id": "2c67d48df7b06fcc59bea72fe16f685e", + "x-ms-correlation-request-id": "b794b64a-74f1-47fe-b56d-7f14265add00", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "b90f783f-e617-4a34-b681-ee733a48741b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063704Z:b794b64a-74f1-47fe-b56d-7f14265add00" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e71bb05bbba0c7f2b67fa8100bb48ef7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "81e7137e-a772-4997-9460-3869f79715a8", + "x-ms-client-request-id": "e71bb05bbba0c7f2b67fa8100bb48ef7", + "x-ms-correlation-request-id": "b16f7b22-bf70-4de1-b577-34017abfaee5", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "d7e991bf-68e8-42fa-a28e-ad69ee3b9c96", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063705Z:b16f7b22-bf70-4de1-b577-34017abfaee5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2db830be189543b88f935a8759e7e064", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9cf3e9f2-cbdc-4cee-9530-6380a56efe2c", + "x-ms-client-request-id": "2db830be189543b88f935a8759e7e064", + "x-ms-correlation-request-id": "2a8ff972-37f7-48f2-86b2-75346a5fa455", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "6f7d2c0a-7f05-43f1-88f3-8e6b932c55e8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063706Z:2a8ff972-37f7-48f2-86b2-75346a5fa455" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8efdeb5e439bd262e29f76314ebb63a5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "927b6e7e-4d6f-4176-b3bf-cfae21a8e38f", + "x-ms-client-request-id": "8efdeb5e439bd262e29f76314ebb63a5", + "x-ms-correlation-request-id": "c8a8c9db-235b-4051-b438-b8d7f29b6267", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "f99eb88b-5626-4a51-93ae-c8e9867b3dc3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063708Z:c8a8c9db-235b-4051-b438-b8d7f29b6267" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b170af303ab742c9f8d7580c616a6ecf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2346def4-0d48-4140-8854-7669f802197b", + "x-ms-client-request-id": "b170af303ab742c9f8d7580c616a6ecf", + "x-ms-correlation-request-id": "b2626da7-1733-4778-b0a9-323bab9f9325", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "81bcd7f5-600d-4b18-b313-b662896b227d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063709Z:b2626da7-1733-4778-b0a9-323bab9f9325" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1fb2449fffb67b5ccde64bf5a287f4d3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ba609218-ec4a-494c-8b89-dcccfce63475", + "x-ms-client-request-id": "1fb2449fffb67b5ccde64bf5a287f4d3", + "x-ms-correlation-request-id": "aec05d97-1801-4f39-bc12-72db11c4a6b4", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "08c6ea8a-3acb-49bf-9dea-5b5f4a9ae4fe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063710Z:aec05d97-1801-4f39-bc12-72db11c4a6b4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aa56b52f2e7623ad22ba96c4ea557177", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "f6d5904b-7a88-4134-acb3-281f4584af4f", + "x-ms-client-request-id": "aa56b52f2e7623ad22ba96c4ea557177", + "x-ms-correlation-request-id": "4356efa1-97e3-470c-a009-4b8b30b98478", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "89b71f39-2f52-4cc4-b058-ae2a979975c5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063712Z:4356efa1-97e3-470c-a009-4b8b30b98478" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0a92a731440931ee53f5e3d0efd3a071", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2e94d834-f401-400c-aa6a-a27c60218829", + "x-ms-client-request-id": "0a92a731440931ee53f5e3d0efd3a071", + "x-ms-correlation-request-id": "e8e3692b-2ffc-4073-a212-e2291dc36abf", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "ec619dd8-83b4-413a-b7ee-2d5c688268c3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063713Z:e8e3692b-2ffc-4073-a212-e2291dc36abf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "acdd85e2c3137058968efdfb68989077", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4d1df1c2-c054-4456-bc65-ef2739b1f92d", + "x-ms-client-request-id": "acdd85e2c3137058968efdfb68989077", + "x-ms-correlation-request-id": "8f4b21b8-61ea-4a26-833a-467f9f8d0657", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "b1391cf8-3cbb-439a-ad40-748f30e63956", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063714Z:8f4b21b8-61ea-4a26-833a-467f9f8d0657" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fac4d375eaf4ebc9c62557814adc334f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "aa70d113-6d61-4cf7-9a9b-21e00f54de7e", + "x-ms-client-request-id": "fac4d375eaf4ebc9c62557814adc334f", + "x-ms-correlation-request-id": "971882ad-6083-407c-86e0-2c11ede66492", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "4284cf90-d774-43b6-bdcb-0799ed522a4e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063715Z:971882ad-6083-407c-86e0-2c11ede66492" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "65e1251ac5786d634e21737a47f2c9bb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "1c55bfd0-d3ab-4856-abf6-150986709788", + "x-ms-client-request-id": "65e1251ac5786d634e21737a47f2c9bb", + "x-ms-correlation-request-id": "a3a89857-00b9-4896-9336-d70912c23725", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "62e452bc-5195-40c9-9991-b235ae094117", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063717Z:a3a89857-00b9-4896-9336-d70912c23725" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1c5b6b64a50ef87cbbf2e5ee6cd725ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "05da9b32-a7d5-4b25-a9d9-7fbc62418472", + "x-ms-client-request-id": "1c5b6b64a50ef87cbbf2e5ee6cd725ba", + "x-ms-correlation-request-id": "b50df64f-99ac-4c14-8d78-296fc32fbb62", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "6d2ab6cb-b515-462d-aab0-6ad783e57cad", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063718Z:b50df64f-99ac-4c14-8d78-296fc32fbb62" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "43e1ad5b2ab6b0ff6f56acd3764fa4d4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f499577f-86c8-41f2-9df2-c2a2e215d583", + "x-ms-client-request-id": "43e1ad5b2ab6b0ff6f56acd3764fa4d4", + "x-ms-correlation-request-id": "856b2de0-1214-4e85-9068-dc8bc6ab6e15", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "ff81f9bc-304e-4fb7-820a-c93ee568965a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063720Z:856b2de0-1214-4e85-9068-dc8bc6ab6e15" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "df1d9c5c17817440a9e8aa86df750177", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "09082917-0db5-4702-81dd-4ac4662091b9", + "x-ms-client-request-id": "df1d9c5c17817440a9e8aa86df750177", + "x-ms-correlation-request-id": "6b10fc1e-6173-4836-8e20-2eef1391d2b6", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "d3f07196-6a9e-47c1-b3d3-293dde1a0f1e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063721Z:6b10fc1e-6173-4836-8e20-2eef1391d2b6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "991fb9fc861039046cabacb8f9a8816b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "d329f994-7439-41da-ba58-5743bda3e176", + "x-ms-client-request-id": "991fb9fc861039046cabacb8f9a8816b", + "x-ms-correlation-request-id": "238dedf9-d2fd-4b42-a068-97879b2b37f2", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "09d99fe0-5796-434f-8336-6b749b8b0c2d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063722Z:238dedf9-d2fd-4b42-a068-97879b2b37f2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d092114d46b943386d6c99ce8079d0fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "aab70593-96f6-409e-8a5a-351ec22e6908", + "x-ms-client-request-id": "d092114d46b943386d6c99ce8079d0fa", + "x-ms-correlation-request-id": "17110ba7-fbfb-4ad2-8797-5fc46f403053", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "632fc891-bd87-4f22-b08b-b07b350c660c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063723Z:17110ba7-fbfb-4ad2-8797-5fc46f403053" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bdd735550a2fd6c398e372d66a887b00", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "813e8f22-a61a-49a4-ba7f-f5fcab52caee", + "x-ms-client-request-id": "bdd735550a2fd6c398e372d66a887b00", + "x-ms-correlation-request-id": "12a99fac-c69d-4be6-96ec-c8ce470a15c0", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "bd9c6b0b-a7b4-41aa-9d3a-d741df2ed814", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063725Z:12a99fac-c69d-4be6-96ec-c8ce470a15c0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ce383e6631e3b5bd80db2ca3ec35b9f3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3b6b2d73-785f-4a31-8f0e-46c533f171e9", + "x-ms-client-request-id": "ce383e6631e3b5bd80db2ca3ec35b9f3", + "x-ms-correlation-request-id": "7043710e-bf50-449c-909c-aa9a3d02f375", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "ff470785-5ce1-4e01-a611-510bc0be2b55", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063726Z:7043710e-bf50-449c-909c-aa9a3d02f375" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c463b1dac4d1423c4ebb37d6d362d8e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e7667d9c-7336-4a40-be2e-99306934212a", + "x-ms-client-request-id": "c463b1dac4d1423c4ebb37d6d362d8e5", + "x-ms-correlation-request-id": "0bf4a8a6-9b7f-4862-80c5-6bf74bf5e5e7", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "1cb7104c-1340-49e5-900f-d292af594d0b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063728Z:0bf4a8a6-9b7f-4862-80c5-6bf74bf5e5e7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "416799f10140231777213d53de1fea62", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "086a156a-e9cf-4be8-a87f-ac2c7255c638", + "x-ms-client-request-id": "416799f10140231777213d53de1fea62", + "x-ms-correlation-request-id": "f23f48b6-123a-4461-943c-a91df5d6cd3f", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "fac25fbd-d067-411d-9b4a-d3a1ccb22649", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063729Z:f23f48b6-123a-4461-943c-a91df5d6cd3f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b9fb7f2ab724a12e02f58027f9e7e21d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "606e4d5e-75af-40e1-a4d0-7c8e0a85ffed", + "x-ms-client-request-id": "b9fb7f2ab724a12e02f58027f9e7e21d", + "x-ms-correlation-request-id": "012ca9b2-8816-49c5-87b1-d2bad4d28274", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-request-id": "37ff13f6-fc30-422a-aa41-9b723c6805b6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063730Z:012ca9b2-8816-49c5-87b1-d2bad4d28274" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "52b2470378cdd9b39a3f4cb087e8642e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "78e90b25-4052-42de-8f7e-146f287bff79", + "x-ms-client-request-id": "52b2470378cdd9b39a3f4cb087e8642e", + "x-ms-correlation-request-id": "833a3bfe-b0d5-4fad-9bba-0d149c3ca6bf", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "b3654c73-2869-45cf-b8ba-e5ffa8dca852", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063732Z:833a3bfe-b0d5-4fad-9bba-0d149c3ca6bf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "54abd5d11f673ac06ac63e4a81ef2a90", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "dc9506c4-572d-49d3-a397-8b51adbd5900", + "x-ms-client-request-id": "54abd5d11f673ac06ac63e4a81ef2a90", + "x-ms-correlation-request-id": "79418d48-354f-4d06-80fb-1ab3fb85e3e0", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "3d213061-21a9-4b68-9542-4b8e975b4c46", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063733Z:79418d48-354f-4d06-80fb-1ab3fb85e3e0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "97501f3f976cb294cc221ee56a7e1a1a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "fcb53218-b64f-4972-91d3-cf7633ad462d", + "x-ms-client-request-id": "97501f3f976cb294cc221ee56a7e1a1a", + "x-ms-correlation-request-id": "4eed288c-bc68-43aa-8897-83955a9857dc", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "4665dde1-c4b6-4e19-bbd7-62db33eb5219", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063734Z:4eed288c-bc68-43aa-8897-83955a9857dc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "235551918d3be3b58677e707396857aa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "0ee3de28-3cc1-46c4-aff0-59384191b249", + "x-ms-client-request-id": "235551918d3be3b58677e707396857aa", + "x-ms-correlation-request-id": "ebdafb85-c112-4f5b-a116-b582fe3fe199", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "a73f04c2-e99b-4236-81d3-69bc8c611c0c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063736Z:ebdafb85-c112-4f5b-a116-b582fe3fe199" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6871bc15cd973ac140f9884501dbd0ec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "cbd275b7-baae-4d14-9b84-9e375bbe3b0e", + "x-ms-client-request-id": "6871bc15cd973ac140f9884501dbd0ec", + "x-ms-correlation-request-id": "8589c192-acff-43fe-983f-fbf35ce1fd72", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "8a31d061-ddfa-4604-82fa-254ed1cfe269", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063737Z:8589c192-acff-43fe-983f-fbf35ce1fd72" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2fb923ab069ab154696c10f5af8d7863", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ac1d7c20-cbb9-4605-a9d8-461af9ae138a", + "x-ms-client-request-id": "2fb923ab069ab154696c10f5af8d7863", + "x-ms-correlation-request-id": "18d7b5d5-c29c-4e5f-9e2d-e6f0e5374220", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "2c962416-ecb1-41b1-ba47-9c04e096bef9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063738Z:18d7b5d5-c29c-4e5f-9e2d-e6f0e5374220" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "adcf73cab20dc4828f1be3420570e2ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "69011947-45a8-4582-83f9-8ec94c72053b", + "x-ms-client-request-id": "adcf73cab20dc4828f1be3420570e2ab", + "x-ms-correlation-request-id": "2ce489c0-474a-49b0-8b57-d087d99eaf07", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "255acbe7-2249-41be-8e7b-5b71af33a533", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063739Z:2ce489c0-474a-49b0-8b57-d087d99eaf07" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "155bfaa727af0e1067bffe2bbccc8ab3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "10e118ab-c04e-4223-a0b8-5d032c0d9ee0", + "x-ms-client-request-id": "155bfaa727af0e1067bffe2bbccc8ab3", + "x-ms-correlation-request-id": "f6fc408e-e080-4de5-9610-9a66c8feb66f", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "1ccff705-7233-4133-b632-71600a1ae564", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063742Z:f6fc408e-e080-4de5-9610-9a66c8feb66f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8d7a2480220bf9dfa1f5a07e2312acf9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "34c1201e-72df-4128-81d2-b8e32f004080", + "x-ms-client-request-id": "8d7a2480220bf9dfa1f5a07e2312acf9", + "x-ms-correlation-request-id": "7bb11993-1a61-4b92-b33e-e4c9a5a1daa4", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "c66dc795-5f9e-42f9-8075-cba36dd45d82", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063743Z:7bb11993-1a61-4b92-b33e-e4c9a5a1daa4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b44e648a6231a2b462c1464db35707c2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ff970fe3-0fd2-4f4b-85b7-943f3aec9f85", + "x-ms-client-request-id": "b44e648a6231a2b462c1464db35707c2", + "x-ms-correlation-request-id": "6d02787f-3b8f-40b1-bbf9-4868c82b298d", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "e37a8c54-3e0b-4703-851e-0fb96cc84004", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063744Z:6d02787f-3b8f-40b1-bbf9-4868c82b298d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e0c12f9055f584a01a6274ba8792eb54", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "fd4ccc07-7f4a-4603-b725-f866cb6729a8", + "x-ms-client-request-id": "e0c12f9055f584a01a6274ba8792eb54", + "x-ms-correlation-request-id": "29087952-dc4b-4f65-a096-a9bcfef25555", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "0f7bf4c6-68e4-4c99-92ca-9e5599738ff0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063745Z:29087952-dc4b-4f65-a096-a9bcfef25555" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "58a00512d57e1d8270d82a49dc924549", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "66327929-7d88-4239-8635-e21eb33b62af", + "x-ms-client-request-id": "58a00512d57e1d8270d82a49dc924549", + "x-ms-correlation-request-id": "3e61eefd-57db-440f-a3bc-e6030e4b687f", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "bdbe9b26-c6b1-4133-927f-1009bb00d544", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063747Z:3e61eefd-57db-440f-a3bc-e6030e4b687f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f3eeddedcc513503c3c999ceeef91ad0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "43bf9b2b-e7d3-4d74-8139-c665382f71a7", + "x-ms-client-request-id": "f3eeddedcc513503c3c999ceeef91ad0", + "x-ms-correlation-request-id": "b6fd7d27-afab-4ac6-b7ca-3cf77243daa7", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "0735c307-11e4-4fa1-91ae-8eeeeb81ffd8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063748Z:b6fd7d27-afab-4ac6-b7ca-3cf77243daa7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ae3af1d6aeb6ba44ada36f1d2a56a888", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "921c08d8-b184-468d-9270-65a19462417e", + "x-ms-client-request-id": "ae3af1d6aeb6ba44ada36f1d2a56a888", + "x-ms-correlation-request-id": "cfe24bb8-19ed-4fe4-83fd-d76843956651", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "327a21fd-69cd-4c16-aacb-c389e05b008b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063750Z:cfe24bb8-19ed-4fe4-83fd-d76843956651" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aacc2a1cf7a34603026b94b53cb32f76", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8caef467-8975-41a5-99d8-ad9d9ab4d7c1", + "x-ms-client-request-id": "aacc2a1cf7a34603026b94b53cb32f76", + "x-ms-correlation-request-id": "070b8a67-7ada-4b29-8b7b-0101c0f7f709", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "f5c810ce-8ec9-412b-a7e4-e0aebbb8917e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063751Z:070b8a67-7ada-4b29-8b7b-0101c0f7f709" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ea7359bd97573e93983346ad5ce60a6d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a93ef68d-2f18-428b-b227-c8a4fb23e0e9", + "x-ms-client-request-id": "ea7359bd97573e93983346ad5ce60a6d", + "x-ms-correlation-request-id": "a3d45b56-1060-4aca-8706-e52cc245ffcd", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "c35dfc3c-0e0e-4d6e-a904-8041a0dd1163", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063752Z:a3d45b56-1060-4aca-8706-e52cc245ffcd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c4b21120702dde2cedf4ac4a1a8f7ef9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ed8a2a03-368d-4685-a3a3-8a94fc41a53d", + "x-ms-client-request-id": "c4b21120702dde2cedf4ac4a1a8f7ef9", + "x-ms-correlation-request-id": "388b2710-2bb7-4ada-accc-8f7f6c47e232", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "f340d15d-d51c-4942-9a24-4b2b62f3cc85", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063754Z:388b2710-2bb7-4ada-accc-8f7f6c47e232" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d05ff874bde38431968d1170b156e91b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "c95ccd61-901a-4c57-a69d-aad3d693c360", + "x-ms-client-request-id": "d05ff874bde38431968d1170b156e91b", + "x-ms-correlation-request-id": "89026f4f-65ec-4fe8-b588-09d62538f7a4", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "c0636f92-35b5-476e-b686-ed4ca99d80a9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063755Z:89026f4f-65ec-4fe8-b588-09d62538f7a4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2b9427616a014d492c95fd62eb482409", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2b8f3033-fe3e-4c49-9cad-7ddb0ddd2441", + "x-ms-client-request-id": "2b9427616a014d492c95fd62eb482409", + "x-ms-correlation-request-id": "fc125eb6-4d73-4ee0-80dc-41deb0389918", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "aeccb6a1-8af2-43f1-ba42-20e3fbd43b11", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063756Z:fc125eb6-4d73-4ee0-80dc-41deb0389918" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "63384cb43986628adf2d2d9f5ebc2d97", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "18823bbc-7ec8-4128-b72b-626ca8fb4c7b", + "x-ms-client-request-id": "63384cb43986628adf2d2d9f5ebc2d97", + "x-ms-correlation-request-id": "e61426ec-53dc-4e51-8fea-4c2e931372f7", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "82370a3d-aee8-46a8-a7a5-323fafa62c5f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063758Z:e61426ec-53dc-4e51-8fea-4c2e931372f7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f2e9900b53fa09f8af12a34dc0ce994d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c04305f5-67de-48a3-9883-ce02f070a892", + "x-ms-client-request-id": "f2e9900b53fa09f8af12a34dc0ce994d", + "x-ms-correlation-request-id": "744032ad-2032-46c3-90fd-c2e26d0555f7", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "3089cd36-9956-4be2-b528-e7b5f89cd8a6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063759Z:744032ad-2032-46c3-90fd-c2e26d0555f7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "64bc0768851d27959d314bd33da9ee70", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "9537a269-6f18-4ef1-b8c0-ac2492a3db18", + "x-ms-client-request-id": "64bc0768851d27959d314bd33da9ee70", + "x-ms-correlation-request-id": "cc9624ef-f70b-410d-b7ba-ab7aeda672ed", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "929e3f17-4f07-4881-b3bb-c513417c5819", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063800Z:cc9624ef-f70b-410d-b7ba-ab7aeda672ed" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5b576568315f600f532fb474963ca210", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "416301da-7102-4eb1-abf1-9b49c05b530e", + "x-ms-client-request-id": "5b576568315f600f532fb474963ca210", + "x-ms-correlation-request-id": "3a534c1e-78a7-43e6-9fc9-9982773caf13", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "cb93a1aa-af69-4e3b-8a3b-1ada5f6975a0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063801Z:3a534c1e-78a7-43e6-9fc9-9982773caf13" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5737df94c800857afbc255c80825cc06", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8eb4011b-d910-4526-97f5-70a4d22819b3", + "x-ms-client-request-id": "5737df94c800857afbc255c80825cc06", + "x-ms-correlation-request-id": "0e40955e-81ee-42da-955d-1bf5e9f022eb", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "3417d2d1-fc64-4308-9f41-8a305375438f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063803Z:0e40955e-81ee-42da-955d-1bf5e9f022eb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5be533233d7737eef85b11eed1209161", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "63ba512c-fbb2-4b84-8855-ec880dcab8e2", + "x-ms-client-request-id": "5be533233d7737eef85b11eed1209161", + "x-ms-correlation-request-id": "889319cd-c282-4d0c-bafe-003099124148", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "695b1561-7cee-4ff4-86e5-3a94db297754", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063804Z:889319cd-c282-4d0c-bafe-003099124148" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5d3f3a8f97729f70ead1609ddc46582e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "ed551a66-51da-44ba-af67-ee61a5f4984e", + "x-ms-client-request-id": "5d3f3a8f97729f70ead1609ddc46582e", + "x-ms-correlation-request-id": "e8e38cd8-0bac-49a2-9f72-a80e8a612b8e", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "2ccd5766-e192-4d79-a731-10b2975efad1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063805Z:e8e38cd8-0bac-49a2-9f72-a80e8a612b8e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6251ad6246565699f1ff5ea4b78cb4da", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e20fddce-ba2c-4c3f-a50a-55fde4f40ef7", + "x-ms-client-request-id": "6251ad6246565699f1ff5ea4b78cb4da", + "x-ms-correlation-request-id": "41c91373-0f94-4ee8-a07d-1a02302ba12c", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "b82f8e87-6547-434a-8d5b-88b3b4545f5b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063807Z:41c91373-0f94-4ee8-a07d-1a02302ba12c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cd39f4306ee68c94c24670a5dd505ab2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2428ea78-5759-4363-8260-30414e2b53e7", + "x-ms-client-request-id": "cd39f4306ee68c94c24670a5dd505ab2", + "x-ms-correlation-request-id": "f224423e-7161-4e9d-96a8-92623cccbe6f", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "3f6ee59c-e4c7-4c79-805b-d585cb898887", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063808Z:f224423e-7161-4e9d-96a8-92623cccbe6f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "238be3022ecf480aa1e86c7238cbe85e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "f32c60bd-4e45-406e-916a-75f762c5dee8", + "x-ms-client-request-id": "238be3022ecf480aa1e86c7238cbe85e", + "x-ms-correlation-request-id": "57acc66a-1835-467f-9b82-e4bfdba9c21b", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "f7b38442-69ec-40d8-adff-ff2b9ad61953", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063809Z:57acc66a-1835-467f-9b82-e4bfdba9c21b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e86c851c8b0df34719c4a010d6f378a1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0da0e398-9db5-49eb-8d35-42734d2ec35c", + "x-ms-client-request-id": "e86c851c8b0df34719c4a010d6f378a1", + "x-ms-correlation-request-id": "5b67c9f0-9e1a-48b9-b852-d28ad0081d44", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "cc514f9a-977b-40b2-bd39-1cbedead35f1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063810Z:5b67c9f0-9e1a-48b9-b852-d28ad0081d44" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d4a2aca49101020be9f02cfd022153f6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2475c571-77ba-4330-a183-6fad74f59d50", + "x-ms-client-request-id": "d4a2aca49101020be9f02cfd022153f6", + "x-ms-correlation-request-id": "84a1070f-5a8b-4338-8943-844d60edc71d", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "6d36f7ae-4678-4099-b233-88edf51d768d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063812Z:84a1070f-5a8b-4338-8943-844d60edc71d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5889115d72e377a49b970a0a8efa72ad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0c917931-a645-4492-b052-684f6b106ef9", + "x-ms-client-request-id": "5889115d72e377a49b970a0a8efa72ad", + "x-ms-correlation-request-id": "b8f29ce8-8ffc-45bf-ad98-ce0c6f1b5a70", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "9ac81172-ea02-43d3-80e2-7cb1fc911db2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063813Z:b8f29ce8-8ffc-45bf-ad98-ce0c6f1b5a70" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8bcdcb6f14298b5d7a6afe1c5e4af1f7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "87843603-1d14-4ae1-a321-7d5b98844e99", + "x-ms-client-request-id": "8bcdcb6f14298b5d7a6afe1c5e4af1f7", + "x-ms-correlation-request-id": "dd02acef-0ffb-4e13-847c-688c6ea87440", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "98c675b3-7e55-4231-bee1-20bb56fd1977", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063814Z:dd02acef-0ffb-4e13-847c-688c6ea87440" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c4b2a971206a32bd072a3969870074ee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e9c52b58-9034-4165-a32e-ae174aced34c", + "x-ms-client-request-id": "c4b2a971206a32bd072a3969870074ee", + "x-ms-correlation-request-id": "8ca7a2be-f444-493c-8b26-deba71b7fddb", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "fa8290db-35e5-4d01-a0a7-16c8b8422013", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063815Z:8ca7a2be-f444-493c-8b26-deba71b7fddb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "378d7e7dc75449cdb4fddd7973881850", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0661fc84-30fd-4fd2-b22c-505ffcbe8e18", + "x-ms-client-request-id": "378d7e7dc75449cdb4fddd7973881850", + "x-ms-correlation-request-id": "30f2d7f1-6893-4ab5-9715-43ca5a228701", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "f230bb7f-93f8-4668-9c99-26b866e32424", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063817Z:30f2d7f1-6893-4ab5-9715-43ca5a228701" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e59912a6ae484f430d9b84fedbf40479", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7dc89809-1266-4bbd-8f86-a4a7381bcc7e", + "x-ms-client-request-id": "e59912a6ae484f430d9b84fedbf40479", + "x-ms-correlation-request-id": "933b699b-861d-4fa4-a8b6-91e8df567f9e", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "f95147e3-61e6-4b79-b6b8-53459826e3e8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063818Z:933b699b-861d-4fa4-a8b6-91e8df567f9e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "df9e10f5b9bca9a2db69106c4243be7f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "985eed0a-2c89-464e-9a87-5b8cd188426f", + "x-ms-client-request-id": "df9e10f5b9bca9a2db69106c4243be7f", + "x-ms-correlation-request-id": "942ec490-4c89-4759-91b5-7dcfc375f769", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "c8c81e14-8b83-4464-9996-b4fb2952c9de", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063819Z:942ec490-4c89-4759-91b5-7dcfc375f769" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "74c2e8118f66cfa63b3e2ab943cf6dc0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0e991c48-d935-4cd4-a394-e07ea7eeb2f8", + "x-ms-client-request-id": "74c2e8118f66cfa63b3e2ab943cf6dc0", + "x-ms-correlation-request-id": "3c35cca6-acb7-4ebe-8ac7-5c6d1ecbe592", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "5ca4a33e-44ce-4987-9b77-69a4d76fab19", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063821Z:3c35cca6-acb7-4ebe-8ac7-5c6d1ecbe592" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "638363f939e9ed946ff009de9ed70cc9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "79b1fbfa-7817-4925-8714-ff8828b29f44", + "x-ms-client-request-id": "638363f939e9ed946ff009de9ed70cc9", + "x-ms-correlation-request-id": "17fc263e-cbcb-4b8f-a725-0a4799c0b03c", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "10e2903b-61a6-4158-b646-97a2770919b7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063822Z:17fc263e-cbcb-4b8f-a725-0a4799c0b03c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f3ec04dd8f3166136acfa47d8fe9650c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "746ec869-9809-4ab3-9057-a881481d6d5c", + "x-ms-client-request-id": "f3ec04dd8f3166136acfa47d8fe9650c", + "x-ms-correlation-request-id": "31b2d186-7301-427c-bdeb-93321c9eb93e", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "3059e9f2-b4ec-47e2-9860-27b49a46caaf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063823Z:31b2d186-7301-427c-bdeb-93321c9eb93e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "df724ffb5ac0d89553d5047685c73164", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3e9bf5e2-be0c-483f-9ef3-6c5ad411e807", + "x-ms-client-request-id": "df724ffb5ac0d89553d5047685c73164", + "x-ms-correlation-request-id": "f3a5f683-160b-4bf0-9526-ba3cc7e93bf3", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "84cb09a6-0efe-4006-aec7-c06b2a97254d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063825Z:f3a5f683-160b-4bf0-9526-ba3cc7e93bf3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3edb60327ae2698f501cf91a94165e86", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "244c796c-1cf0-4480-80de-db5df99a7461", + "x-ms-client-request-id": "3edb60327ae2698f501cf91a94165e86", + "x-ms-correlation-request-id": "7d93376b-4927-4fb7-b0c8-7cc317b71143", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "e2e4cb9a-5268-4343-852e-87051a948d0f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063826Z:7d93376b-4927-4fb7-b0c8-7cc317b71143" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4ee2fd8a2d6482096e139f5b8b9ce0a2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "2c8e8ef2-b544-4bc8-8ed3-8c7cc7c6b623", + "x-ms-client-request-id": "4ee2fd8a2d6482096e139f5b8b9ce0a2", + "x-ms-correlation-request-id": "9c5572a6-1290-4e21-84ec-6369d3ac0003", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "f919bba9-cbf5-47ce-b55f-6f8de6fe70ab", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063828Z:9c5572a6-1290-4e21-84ec-6369d3ac0003" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2e4b3f9d260d812ac0098ea3617b433d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "097a7206-3b68-4e48-acee-ab9d92d220ce", + "x-ms-client-request-id": "2e4b3f9d260d812ac0098ea3617b433d", + "x-ms-correlation-request-id": "bf2a8f24-f198-42f6-b89e-4be39371033b", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "b1d964e8-c651-4796-83ff-8f374a488e4f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063829Z:bf2a8f24-f198-42f6-b89e-4be39371033b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "88ec7e77e2e404005759d0ceda33deb4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9ad16aec-2a3e-4a32-b440-1d3367c06e95", + "x-ms-client-request-id": "88ec7e77e2e404005759d0ceda33deb4", + "x-ms-correlation-request-id": "045414a1-4c93-4e4d-9f63-d4d1e61eb836", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "b0344d0d-0308-4d24-91eb-c562d7297807", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063830Z:045414a1-4c93-4e4d-9f63-d4d1e61eb836" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "547c563b2fca6378d2618d5b9e6521f2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b1e8ada0-7405-4517-afa7-9a8b078cde9c", + "x-ms-client-request-id": "547c563b2fca6378d2618d5b9e6521f2", + "x-ms-correlation-request-id": "f082a867-2e59-4cbb-8669-32e6d56b2d15", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "8b49d2ac-8bc2-403e-a4c8-5d6137662b3b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063831Z:f082a867-2e59-4cbb-8669-32e6d56b2d15" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0de362cf58afbbbd3f46d7b4565ba68c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c0f300e7-1302-4c3b-861b-2effc4a0a93b", + "x-ms-client-request-id": "0de362cf58afbbbd3f46d7b4565ba68c", + "x-ms-correlation-request-id": "10a1c85a-f84a-4be2-bdc4-59d409684193", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "b82fe7f8-1525-4a8b-82b7-f7210e952fbe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063833Z:10a1c85a-f84a-4be2-bdc4-59d409684193" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0a67da2beeff47720689b58354a466f2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8f945bce-3dd9-44fe-bb37-fb6d6ada8cd6", + "x-ms-client-request-id": "0a67da2beeff47720689b58354a466f2", + "x-ms-correlation-request-id": "9296c0af-6f6d-409b-ab9d-5cf2a9f82d47", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "b9ecc2b6-6e9c-42c8-8f00-6fe9d0704da8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063834Z:9296c0af-6f6d-409b-ab9d-5cf2a9f82d47" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "78fedd38d04fe30499c1158458c30c77", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0bb906f6-f777-4623-bfbe-457fccf7fbdc", + "x-ms-client-request-id": "78fedd38d04fe30499c1158458c30c77", + "x-ms-correlation-request-id": "74fb5e6b-6b4e-473f-8cd5-cf1cf8028fdf", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "8614ee81-002e-4c45-886b-37150b7c2bfb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063835Z:74fb5e6b-6b4e-473f-8cd5-cf1cf8028fdf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c42f01ba16fde1f3f09c0625a23a669a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "49dceb7a-3d6f-4c31-991f-d3b51ae75357", + "x-ms-client-request-id": "c42f01ba16fde1f3f09c0625a23a669a", + "x-ms-correlation-request-id": "a52ba61f-da97-44e8-8444-cf5d757f14c2", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "3a1f0df5-7283-4060-b640-a83bafb0c76d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063837Z:a52ba61f-da97-44e8-8444-cf5d757f14c2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "797ce5e02e5c5a3dd584713ed9eeef42", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "88b8df60-d378-4adc-81b8-b93e6bdfec22", + "x-ms-client-request-id": "797ce5e02e5c5a3dd584713ed9eeef42", + "x-ms-correlation-request-id": "78f6e984-23f2-40fc-b084-1ecdf4de163e", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "510fa011-b9dd-4466-882a-6652b6c84adf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063838Z:78f6e984-23f2-40fc-b084-1ecdf4de163e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "53c83e7da17521f4e91d87b3cadf415e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c1794676-3018-4c84-93a2-ce7faf9e9038", + "x-ms-client-request-id": "53c83e7da17521f4e91d87b3cadf415e", + "x-ms-correlation-request-id": "19dd5498-6fde-47d0-9cda-72d6be2db4d4", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "870b06f6-9e3e-447f-9b3c-9b68d226f811", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063839Z:19dd5498-6fde-47d0-9cda-72d6be2db4d4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "73a37a5b93478c1ac3d5ef79a5b50702", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ffddde71-762c-4377-8b33-62368d70963c", + "x-ms-client-request-id": "73a37a5b93478c1ac3d5ef79a5b50702", + "x-ms-correlation-request-id": "22de331f-9b1e-4878-b7ba-f7205bf87b0d", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "9683bffa-3544-4d22-8c6c-bf55de3f6042", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063841Z:22de331f-9b1e-4878-b7ba-f7205bf87b0d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "64a8c4ac12723f25f05a8f3fa68990f6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b4ca10f8-0c29-422d-ae5f-9859948bcb0b", + "x-ms-client-request-id": "64a8c4ac12723f25f05a8f3fa68990f6", + "x-ms-correlation-request-id": "b7b50c1d-c5aa-4f7b-a13d-483db55affa2", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "7a00808e-92a8-4dfa-80b2-6ab3e7bc543e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063842Z:b7b50c1d-c5aa-4f7b-a13d-483db55affa2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5fe212437c4ae9fa233b8f9fb27a7b34", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e393ad53-7d4c-42a4-8864-0b6fe2ed2308", + "x-ms-client-request-id": "5fe212437c4ae9fa233b8f9fb27a7b34", + "x-ms-correlation-request-id": "94731125-78f2-4a0b-8316-e9a8fe07cc3b", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "522c3e35-4df0-46ff-b352-dc186226c101", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063843Z:94731125-78f2-4a0b-8316-e9a8fe07cc3b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "06078516dc3648ec546482ed03dbe63a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c7be0338-769c-46d3-830a-beee214e6735", + "x-ms-client-request-id": "06078516dc3648ec546482ed03dbe63a", + "x-ms-correlation-request-id": "d8319188-70d3-4dca-9ea5-adcc822f27bc", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "068e1bfd-9f87-4223-b7eb-a33807250a1e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063844Z:d8319188-70d3-4dca-9ea5-adcc822f27bc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9336f945a7d230b7c9bf413682868c75", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "5a59d139-d761-49c0-bcde-b753aebe1397", + "x-ms-client-request-id": "9336f945a7d230b7c9bf413682868c75", + "x-ms-correlation-request-id": "af2b0b69-cdfa-4bcd-a7e5-7d0498f85197", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "f13b5d27-debe-4469-a4f4-2034012d03b9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063846Z:af2b0b69-cdfa-4bcd-a7e5-7d0498f85197" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "20285bde898266bf26990be6f90de647", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "011e1352-4eff-4c78-b477-6064e949499d", + "x-ms-client-request-id": "20285bde898266bf26990be6f90de647", + "x-ms-correlation-request-id": "7a399dad-c718-4f90-a497-d7dd828f5f40", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "a9049a45-3434-477f-b4b3-a8cc5f00d889", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063847Z:7a399dad-c718-4f90-a497-d7dd828f5f40" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b85a5555e8446f61ced63d779bb5c6ce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "62a2a2ea-5f43-419d-935c-a9d322e207a9", + "x-ms-client-request-id": "b85a5555e8446f61ced63d779bb5c6ce", + "x-ms-correlation-request-id": "ae3edb41-b483-4542-b699-fe04ca25b480", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-request-id": "64818fb8-f110-4379-b4f7-8f6aa0852a50", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063848Z:ae3edb41-b483-4542-b699-fe04ca25b480" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a70e0cd7c5b2bbb839cf6d389bd136bb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f959313c-a5aa-4f34-8e80-340a8d6d4316", + "x-ms-client-request-id": "a70e0cd7c5b2bbb839cf6d389bd136bb", + "x-ms-correlation-request-id": "79228603-7eb8-46ca-9a37-0f49c800173c", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "f8a45768-8848-4ec3-bd6a-ef9f53ce8dae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063850Z:79228603-7eb8-46ca-9a37-0f49c800173c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2ce1f9d8d42cf631fab952ab4c48ca70", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "a3c25c63-80f2-4de7-a9dd-961dfd3cc85b", + "x-ms-client-request-id": "2ce1f9d8d42cf631fab952ab4c48ca70", + "x-ms-correlation-request-id": "a3fe3758-8b81-4756-b4e8-704d9d311994", + "x-ms-ratelimit-remaining-subscription-reads": "11788", + "x-ms-request-id": "61b60446-59c9-4c7c-9d9b-f86dbb451fdf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063851Z:a3fe3758-8b81-4756-b4e8-704d9d311994" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ed0e3dd33eff8f949d9e7e747b28d3fc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "78f60cd2-c659-460e-b397-cf323e598725", + "x-ms-client-request-id": "ed0e3dd33eff8f949d9e7e747b28d3fc", + "x-ms-correlation-request-id": "438447f4-e5d6-4d50-b3d2-665ea48f3e6a", + "x-ms-ratelimit-remaining-subscription-reads": "11787", + "x-ms-request-id": "685f3f69-6735-47c4-aa37-a2ebecabf727", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063852Z:438447f4-e5d6-4d50-b3d2-665ea48f3e6a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a29e81a099d403a2db18adf9720c6ef0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7237d638-abf9-4896-bdb6-c293c1874957", + "x-ms-client-request-id": "a29e81a099d403a2db18adf9720c6ef0", + "x-ms-correlation-request-id": "5b4b9e28-7d5b-45cd-b43c-3f1e282f82b4", + "x-ms-ratelimit-remaining-subscription-reads": "11786", + "x-ms-request-id": "8762c0f4-68ef-41ce-8905-987304032474", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063854Z:5b4b9e28-7d5b-45cd-b43c-3f1e282f82b4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5e65fc0449c29abc64518f8d55bc7bd1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "09f12c26-5d7b-4ef8-9e35-762d29cf534a", + "x-ms-client-request-id": "5e65fc0449c29abc64518f8d55bc7bd1", + "x-ms-correlation-request-id": "d59afd17-7c47-439a-825b-3d80aa562e2c", + "x-ms-ratelimit-remaining-subscription-reads": "11785", + "x-ms-request-id": "46a4388f-0622-4afb-a050-ac7510a73fe1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063855Z:d59afd17-7c47-439a-825b-3d80aa562e2c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cb0b56e628aa399b9b0b11e7909b1c90", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "d71e1ed7-69db-42dd-8ad0-77b453a8d89d", + "x-ms-client-request-id": "cb0b56e628aa399b9b0b11e7909b1c90", + "x-ms-correlation-request-id": "37166bae-cf55-47d5-8132-47c87b852940", + "x-ms-ratelimit-remaining-subscription-reads": "11784", + "x-ms-request-id": "3a1ba012-612f-4b44-ac78-877ab7e6c978", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063856Z:37166bae-cf55-47d5-8132-47c87b852940" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7e6f8d2f75c35639c5043d820a14ad1e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "11623b22-6fc0-433a-9caf-eee2bd036db6", + "x-ms-client-request-id": "7e6f8d2f75c35639c5043d820a14ad1e", + "x-ms-correlation-request-id": "a7ed1ac9-3614-442a-9514-8d3cecee7c17", + "x-ms-ratelimit-remaining-subscription-reads": "11783", + "x-ms-request-id": "d063a097-a07f-4ace-bfea-b5fe25d2b166", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063857Z:a7ed1ac9-3614-442a-9514-8d3cecee7c17" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1c13dc9da301dc46602bc3b737d409c9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "332b7be8-9c87-4ec2-9d81-827cd208622f", + "x-ms-client-request-id": "1c13dc9da301dc46602bc3b737d409c9", + "x-ms-correlation-request-id": "64cffe78-0cc1-47ec-aac6-fbd02935a930", + "x-ms-ratelimit-remaining-subscription-reads": "11782", + "x-ms-request-id": "ca2b5333-1d8c-4b2d-bdb9-e06cd98cf1ce", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063859Z:64cffe78-0cc1-47ec-aac6-fbd02935a930" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c75dfe34fc4d700e1cb405a5eb192f86", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5eeb2bef-fa96-4bb5-b74e-9ad9f3acd210", + "x-ms-client-request-id": "c75dfe34fc4d700e1cb405a5eb192f86", + "x-ms-correlation-request-id": "915efd6a-4c31-431d-ba65-378ad8474813", + "x-ms-ratelimit-remaining-subscription-reads": "11781", + "x-ms-request-id": "5de62bec-9f47-4d4d-9305-d5cc2dcb3274", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063900Z:915efd6a-4c31-431d-ba65-378ad8474813" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b44af35eff888c8f47931d98b2821ff0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "835f1384-149a-4cb0-9f2c-74656c49aad0", + "x-ms-client-request-id": "b44af35eff888c8f47931d98b2821ff0", + "x-ms-correlation-request-id": "73571e2b-0800-4ccc-b343-2abcdb2e9792", + "x-ms-ratelimit-remaining-subscription-reads": "11780", + "x-ms-request-id": "22ab4b77-5cc3-4730-8f80-49398fd28ef6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063901Z:73571e2b-0800-4ccc-b343-2abcdb2e9792" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0b4e74fae5b6a0d1cea2004c9da0f147", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "08d401b8-910d-42ed-af6e-2951daa6057a", + "x-ms-client-request-id": "0b4e74fae5b6a0d1cea2004c9da0f147", + "x-ms-correlation-request-id": "499a8ed0-3ce8-4aeb-8a2c-37a95aac77a0", + "x-ms-ratelimit-remaining-subscription-reads": "11779", + "x-ms-request-id": "ea1e1396-8487-411e-b47f-68d4b97dd548", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063903Z:499a8ed0-3ce8-4aeb-8a2c-37a95aac77a0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "44593cfb548a34416ed180b9df76be99", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4497a822-6b6d-43fa-b44e-e94176f8064b", + "x-ms-client-request-id": "44593cfb548a34416ed180b9df76be99", + "x-ms-correlation-request-id": "914d4ef1-739f-4662-a1dd-1dff772e2855", + "x-ms-ratelimit-remaining-subscription-reads": "11778", + "x-ms-request-id": "75b345b9-4260-4098-b53e-ba55130ae20d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063904Z:914d4ef1-739f-4662-a1dd-1dff772e2855" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "76aa149524ca78d021a9e6e5ff43eea6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "64ff95cb-b231-4515-be79-e6747bfb5bca", + "x-ms-client-request-id": "76aa149524ca78d021a9e6e5ff43eea6", + "x-ms-correlation-request-id": "bcdf70f4-db23-4441-8edb-9c77d04b8284", + "x-ms-ratelimit-remaining-subscription-reads": "11777", + "x-ms-request-id": "83887c46-b48a-4ab5-b3d7-06f078f05834", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063905Z:bcdf70f4-db23-4441-8edb-9c77d04b8284" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fffd1956-4375-4adc-a37e-f1c361550987?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "759cd5a2da29a66533199ce46517c158", + "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, 08 Sep 2021 06:39:06 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": "54c39556-d39d-4255-905c-cf36b2f44437", + "x-ms-client-request-id": "759cd5a2da29a66533199ce46517c158", + "x-ms-correlation-request-id": "ea41ba18-fc3c-4628-a322-88df9a9da496", + "x-ms-ratelimit-remaining-subscription-reads": "11776", + "x-ms-request-id": "fe7472bc-e4ca-4d3c-ad71-03143a5d2d91", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063906Z:ea41ba18-fc3c-4628-a322-88df9a9da496" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + } + ], + "Variables": { + "LOCATION": "westus2", + "RandomSeed": "285037186", + "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/BastionHostContainerTests/CheckIfExistsAsync.json b/sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/BastionHostContainerTests/CheckIfExistsAsync.json new file mode 100644 index 0000000000000..8699269826c93 --- /dev/null +++ b/sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/BastionHostContainerTests/CheckIfExistsAsync.json @@ -0,0 +1,17112 @@ +{ + "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-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eeafa5c8f39df74731cc9d85db34885f", + "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, 08 Sep 2021 07:16:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "df7ddba1-622e-4961-8f10-bee4dfbdf0da", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "df7ddba1-622e-4961-8f10-bee4dfbdf0da", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071642Z:df7ddba1-622e-4961-8f10-bee4dfbdf0da" + }, + "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/bastionrg-7251?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-2c5b457dfb09104891d9ec4af8992bc0-9b23a96ad78e3747-00", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "49ec8bab0bdbd70200bb00c990d5c857", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "226", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:16:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "560fd2d8-d285-4cf8-b84e-2d88a2320fcb", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "560fd2d8-d285-4cf8-b84e-2d88a2320fcb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071642Z:560fd2d8-d285-4cf8-b84e-2d88a2320fcb" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251", + "name": "bastionrg-7251", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "024919ae3a19d1af67b85f15f03b4715", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1249", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:16:42 GMT", + "ETag": "W/\u00226213a7bd-1b77-45de-a444-55e2f717b82f\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": "7516b9bc-bcc5-4bd5-9f3c-221c8cca9e8e", + "x-ms-client-request-id": "024919ae3a19d1af67b85f15f03b4715", + "x-ms-correlation-request-id": "11177255-f3ca-46a9-aab2-2f8cfa963f00", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "4e30ceae-f78a-4341-90d7-14dee7f72ecf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071642Z:11177255-f3ca-46a9-aab2-2f8cfa963f00" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022vnet-6121\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00226213a7bd-1b77-45de-a444-55e2f717b82f\\\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: \u0022a7067e65-d510-4fab-b894-da0e03df110f\u0022,\r\n", + " \u0022addressSpace\u0022: {\r\n", + " \u0022addressPrefixes\u0022: [\r\n", + " \u002210.0.0.0/16\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022subnets\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022AzureBastionSubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121/subnets/AzureBastionSubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00226213a7bd-1b77-45de-a444-55e2f717b82f\\\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/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121/subnets/AzureBastionSubnet?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3e2bd922139fbd90a2d8eee2f37e675b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "551", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:16:42 GMT", + "ETag": "W/\u00226213a7bd-1b77-45de-a444-55e2f717b82f\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": "7481c55b-b5b1-4714-8631-b12e2fec549e", + "x-ms-client-request-id": "3e2bd922139fbd90a2d8eee2f37e675b", + "x-ms-correlation-request-id": "7ead0930-6571-4ff9-948b-f47293b1a64c", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "d0560361-50d1-4ba3-8ddc-6ca608ec165c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071642Z:7ead0930-6571-4ff9-948b-f47293b1a64c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022AzureBastionSubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121/subnets/AzureBastionSubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00226213a7bd-1b77-45de-a444-55e2f717b82f\\\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/bastionrg-7251/providers/Microsoft.Network/publicIPAddresses/ip-3184?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c2d7460486ea7046db1be222abece6c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "664", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:16:42 GMT", + "ETag": "W/\u002297a4ade2-772e-4c6a-8e18-9406802a5f4b\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": "4cdfaca8-2c85-4949-b05f-5ee2a2f8508d", + "x-ms-client-request-id": "c2d7460486ea7046db1be222abece6c5", + "x-ms-correlation-request-id": "47884d5b-20ad-4acf-a97f-fba83732c8a6", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "bf4a1e3e-37c9-4304-9161-67726e9203ae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071642Z:47884d5b-20ad-4acf-a97f-fba83732c8a6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022ip-3184\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/publicIPAddresses/ip-3184\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002297a4ade2-772e-4c6a-8e18-9406802a5f4b\\\u0022\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022cf12151e-bd67-4380-9ac6-86981f12aa37\u0022,\r\n", + " \u0022ipAddress\u0022: \u002220.98.77.111\u0022,\r\n", + " \u0022publicIPAddressVersion\u0022: \u0022IPv4\u0022,\r\n", + " \u0022publicIPAllocationMethod\u0022: \u0022Static\u0022,\r\n", + " \u0022idleTimeoutInMinutes\u0022: 4,\r\n", + " \u0022ipTags\u0022: []\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/publicIPAddresses\u0022,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Standard\u0022,\r\n", + " \u0022tier\u0022: \u0022Regional\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-5223?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "469", + "Content-Type": "application/json", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aab6a7eab789889a8c5f404ccddee951", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "id": null, + "properties": { + "ipConfigurations": [ + { + "name": "bastionIPConfig-8440", + "id": null, + "properties": { + "subnet": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121/subnets/AzureBastionSubnet" + }, + "publicIPAddress": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/publicIPAddresses/ip-3184" + } + } + } + ] + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "1456", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:16:46 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": "804cbd89-a08f-4d67-8ab5-8b9a482cf144", + "x-ms-client-request-id": "aab6a7eab789889a8c5f404ccddee951", + "x-ms-correlation-request-id": "7b178c85-7fb7-4649-adcc-052a9d879cd2", + "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-request-id": "52e0b492-2ff1-456b-8b93-fce5e896d9f8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071646Z:7b178c85-7fb7-4649-adcc-052a9d879cd2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022bastion-5223\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-5223\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00228d7ff35a-01db-4818-83dd-cae8b8313b4b\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022scaleUnits\u0022: 2,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022bastionIPConfig-8440\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-5223/bastionHostIpConfigurations/bastionIPConfig-8440\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00228d7ff35a-01db-4818-83dd-cae8b8313b4b\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts/bastionHostIpConfigurations\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/bastionrg-7251/providers/Microsoft.Network/publicIPAddresses/ip-3184\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121/subnets/AzureBastionSubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022bastionShareableLinks\u0022: {}\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d7086e28b1b08e7a3d395e2605230e3c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:16:46 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": "a0ab5252-ec9b-45fc-bd5a-5082b636d06e", + "x-ms-client-request-id": "d7086e28b1b08e7a3d395e2605230e3c", + "x-ms-correlation-request-id": "5c5020bb-dd69-4db3-8493-ddc96bde471b", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "d3fc8d02-5263-4e74-b5ba-726aa595c6a8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071646Z:5c5020bb-dd69-4db3-8493-ddc96bde471b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dba7d1f9613cbfee0b23ef2733681a7a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:16:48 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": "64d8e8c2-c9f7-4430-b74f-deb229e16500", + "x-ms-client-request-id": "dba7d1f9613cbfee0b23ef2733681a7a", + "x-ms-correlation-request-id": "3495c10b-479e-4222-89d2-c98db9dbc193", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "4e2f5c75-35c2-4164-aaa7-23db142a3068", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071648Z:3495c10b-479e-4222-89d2-c98db9dbc193" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5e234fa912d553a0961b264bcc748d96", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:16:49 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": "0b55682b-ff39-4f0e-ad16-13a05dbea7a6", + "x-ms-client-request-id": "5e234fa912d553a0961b264bcc748d96", + "x-ms-correlation-request-id": "b939212e-2341-4109-b5be-bc7cbdb66c24", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "5f77075b-a28c-4ed4-a77a-9365b0c2fb7a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071649Z:b939212e-2341-4109-b5be-bc7cbdb66c24" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9d384753d96ac7b57f49cb8cc1535bd4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:16:50 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": "c65c4bd6-8925-4960-9f03-2d01f9aa16c9", + "x-ms-client-request-id": "9d384753d96ac7b57f49cb8cc1535bd4", + "x-ms-correlation-request-id": "89e9d4e4-540f-448b-ad3f-31c779d5586f", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "37684d35-70f5-471c-878e-976b6c5213d9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071650Z:89e9d4e4-540f-448b-ad3f-31c779d5586f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b67de31fb000e766305345213aa3f296", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:16:51 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": "fb9cc750-c9ef-4695-a71c-31c705fad52d", + "x-ms-client-request-id": "b67de31fb000e766305345213aa3f296", + "x-ms-correlation-request-id": "d4185128-f5b9-4ee7-bab1-1860b4a64ae8", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "c41f2b8e-df24-4c26-84f5-fa1ea5daec57", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071652Z:d4185128-f5b9-4ee7-bab1-1860b4a64ae8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ecd358967c30cf10995cdf8b46149142", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:16:53 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": "38ca29c0-b3be-48f6-a53d-e9b0c01fe1e4", + "x-ms-client-request-id": "ecd358967c30cf10995cdf8b46149142", + "x-ms-correlation-request-id": "a8bd2864-cba5-4d72-bdd0-89f4f5c28e13", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "adc84088-74a1-43eb-92fa-2c056262ff75", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071653Z:a8bd2864-cba5-4d72-bdd0-89f4f5c28e13" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e82b52c0d6f7a396e0506c1694948ddb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:16:54 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": "531b5f8f-c3d6-482d-bfa9-6e2929bf4ad7", + "x-ms-client-request-id": "e82b52c0d6f7a396e0506c1694948ddb", + "x-ms-correlation-request-id": "ca748c0f-6330-4d3c-b49d-dee917423d61", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "4698310e-f8e4-4d7b-ba70-19bec4023405", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071654Z:ca748c0f-6330-4d3c-b49d-dee917423d61" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "68f634576e80a2a3d3ad1da4d0daa01b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:16:55 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": "acad5c7c-1163-4b62-93ce-5cf863f9153b", + "x-ms-client-request-id": "68f634576e80a2a3d3ad1da4d0daa01b", + "x-ms-correlation-request-id": "00eaec28-e821-48e1-bed9-683cf9b50c3f", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "19f5abf4-e107-4363-913e-5f6815d47919", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071655Z:00eaec28-e821-48e1-bed9-683cf9b50c3f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e86003c20978c09fc1300bdf0ff93b05", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:16:57 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": "f0633880-912c-4279-8e25-0721b0ce7952", + "x-ms-client-request-id": "e86003c20978c09fc1300bdf0ff93b05", + "x-ms-correlation-request-id": "7807bb42-4023-436a-8306-b00d0d5f3db0", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "719928e0-2161-4aee-9a5f-90dac65fb88a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071657Z:7807bb42-4023-436a-8306-b00d0d5f3db0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "113403cf281d51c2ae88144ab9f2d205", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b740352c-b816-40da-8791-7907ab9a2265", + "x-ms-client-request-id": "113403cf281d51c2ae88144ab9f2d205", + "x-ms-correlation-request-id": "6f1c01a7-c0cf-45ff-a595-5f67895ae040", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "c9f1e4b9-368d-47a7-8fb5-c88fa005a206", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071658Z:6f1c01a7-c0cf-45ff-a595-5f67895ae040" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "915450b0a4334d639536a65062c492d9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a535b17a-389e-4691-9ea6-108b9b959e3b", + "x-ms-client-request-id": "915450b0a4334d639536a65062c492d9", + "x-ms-correlation-request-id": "d4f5e2f3-ffba-476a-88e8-f4a411c94118", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "726dfef5-578b-45a9-920b-139cac185db1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071659Z:d4f5e2f3-ffba-476a-88e8-f4a411c94118" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cdd517718fa699fe400f39eff55406cf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:17: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": "a4711244-d094-4799-b5c3-226ae2101752", + "x-ms-client-request-id": "cdd517718fa699fe400f39eff55406cf", + "x-ms-correlation-request-id": "36f82346-01c0-4825-a3e1-a8940adadd12", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "cf309ab3-6b70-436c-a6ac-6f4eaf704c6a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071701Z:36f82346-01c0-4825-a3e1-a8940adadd12" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "be2f065daaa52ad29fe77ce78272eeea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c604d128-e061-4f5a-8401-8548056f2519", + "x-ms-client-request-id": "be2f065daaa52ad29fe77ce78272eeea", + "x-ms-correlation-request-id": "c26a1214-f2bc-4593-a26a-f02043b8937e", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "fafb25a2-80f0-4443-9d71-302fb9c8bfd1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071702Z:c26a1214-f2bc-4593-a26a-f02043b8937e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a1d93af5051d215f52bb50236a745840", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9c641b7e-5d3c-4ace-8446-0bd83f3f6a38", + "x-ms-client-request-id": "a1d93af5051d215f52bb50236a745840", + "x-ms-correlation-request-id": "34e76927-2bdf-4e2b-831c-578e76497226", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "a98f5b83-a5d2-4f90-ba73-e34219863ed6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071703Z:34e76927-2bdf-4e2b-831c-578e76497226" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5cf2d72fd395c73445aa2dbe121616ce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "79a5d3c6-b6c7-4264-975c-963e58b708b8", + "x-ms-client-request-id": "5cf2d72fd395c73445aa2dbe121616ce", + "x-ms-correlation-request-id": "eb435829-3928-4342-af9e-7b00e616db0a", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "73c9c63b-0bee-4a74-86b6-fd2d147c701c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071705Z:eb435829-3928-4342-af9e-7b00e616db0a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "baf94f20657b57b2a70e6cea59aebf2b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "12201abd-d39c-4446-a3ca-f088654fe106", + "x-ms-client-request-id": "baf94f20657b57b2a70e6cea59aebf2b", + "x-ms-correlation-request-id": "b0d3847b-2a62-4748-ae24-78a0dab796f3", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "65a80a13-a6c1-411b-b4cc-360d1b6271a6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071706Z:b0d3847b-2a62-4748-ae24-78a0dab796f3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aab73b8f917f215506115c72d8a00e3b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "83bd032a-4451-46a4-a4e9-a11299c88751", + "x-ms-client-request-id": "aab73b8f917f215506115c72d8a00e3b", + "x-ms-correlation-request-id": "88aa131e-d149-4985-96d7-a50ea39ee9e9", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "74ada37f-27f7-4616-bf6d-2abfe66abfa2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071707Z:88aa131e-d149-4985-96d7-a50ea39ee9e9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1b0382a49e7acac4259bb586674a6d97", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "37ce08b9-a4e5-4fff-9c86-7b253e3ad16b", + "x-ms-client-request-id": "1b0382a49e7acac4259bb586674a6d97", + "x-ms-correlation-request-id": "b658632e-ee30-47f6-9c70-9afcb3afecfe", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "93052419-0c9c-469a-83d4-0cc73c08475a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071708Z:b658632e-ee30-47f6-9c70-9afcb3afecfe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d62f02eb6c5f8e4efad7b369083f7f06", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5b489f99-2e3b-486c-a485-882a80148f82", + "x-ms-client-request-id": "d62f02eb6c5f8e4efad7b369083f7f06", + "x-ms-correlation-request-id": "b32d357c-3581-48a9-813a-fd9a145e5cb3", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "2feacaae-994c-4cd4-8700-4d3ea89b1f67", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071710Z:b32d357c-3581-48a9-813a-fd9a145e5cb3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d74630ffa4abf1b076ed85e4dccebabc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "77bb5b99-f00d-486d-95f4-b66de6295ce6", + "x-ms-client-request-id": "d74630ffa4abf1b076ed85e4dccebabc", + "x-ms-correlation-request-id": "4d6a9ccf-792b-46b3-b0b4-fd281f91aa6b", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "95bd0776-aab6-46f4-a39f-c10892ccd322", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071711Z:4d6a9ccf-792b-46b3-b0b4-fd281f91aa6b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d687c5a4377037dc337420a2ea5bc1e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a73293e9-bee2-4d33-8fe4-bfdd206d8b64", + "x-ms-client-request-id": "d687c5a4377037dc337420a2ea5bc1e5", + "x-ms-correlation-request-id": "05da866b-8986-4872-a33a-afe7dfe05f44", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "028da929-f23a-4902-9f64-ab116025cbee", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071712Z:05da866b-8986-4872-a33a-afe7dfe05f44" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3787ae1b960347eb513e6072e66ab22c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:17: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": "26b12228-2e7d-4d4f-aeb8-3717f8eee69b", + "x-ms-client-request-id": "3787ae1b960347eb513e6072e66ab22c", + "x-ms-correlation-request-id": "352cfe20-0018-4f21-877b-eabb0e273622", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "c1b8ed5e-8173-47f4-b596-31f1494fab3e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071714Z:352cfe20-0018-4f21-877b-eabb0e273622" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "43c5f71da9b8c796530ea336840d061b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3171d7a7-b32c-4e67-9de4-f53eefae52dc", + "x-ms-client-request-id": "43c5f71da9b8c796530ea336840d061b", + "x-ms-correlation-request-id": "8d310724-28a1-4c64-8329-af91ec645224", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "675eef48-3483-4e37-a560-6bb0ef7ba97c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071715Z:8d310724-28a1-4c64-8329-af91ec645224" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2dc89f2b82460db8d93f8431d76a51c8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f4f4e287-ee9c-41b5-9661-d873b78beb74", + "x-ms-client-request-id": "2dc89f2b82460db8d93f8431d76a51c8", + "x-ms-correlation-request-id": "475a398c-1f70-4d83-a840-ce040300f459", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "1b22dbe7-37fd-4ed7-8b31-3415c91ab1d4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071716Z:475a398c-1f70-4d83-a840-ce040300f459" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f384f3c17e95722d18bfe3f5f2b4c343", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1aee0271-6ee1-4fe7-8a12-9608e40f1935", + "x-ms-client-request-id": "f384f3c17e95722d18bfe3f5f2b4c343", + "x-ms-correlation-request-id": "42feaac9-d822-4647-8a22-e7a31ed4652f", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "9a3c3565-0cee-41e3-8308-329c6d2f5746", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071718Z:42feaac9-d822-4647-8a22-e7a31ed4652f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4746443885a29be63eb86a782564f0e8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "c73db262-e3ab-46f7-84c0-5f38b1abdec9", + "x-ms-client-request-id": "4746443885a29be63eb86a782564f0e8", + "x-ms-correlation-request-id": "b72869ab-776f-4377-94c5-9d4ad66b54e8", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "c4af9f2b-e787-4c78-ace6-4c408bc5661d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071719Z:b72869ab-776f-4377-94c5-9d4ad66b54e8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9075dbbc1388ad86725514879ec21a24", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ea8aa9ac-59d2-4f3d-8067-b86c1819b769", + "x-ms-client-request-id": "9075dbbc1388ad86725514879ec21a24", + "x-ms-correlation-request-id": "b5a9d262-c701-4eb3-9f89-38bae72e18ac", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "043b94f8-05a8-4646-9d0d-69611784230d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071721Z:b5a9d262-c701-4eb3-9f89-38bae72e18ac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "93f9407c09243c260de9b4dc14b44db4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8a1f050a-8cb3-4efa-9bdf-56ddf66650b7", + "x-ms-client-request-id": "93f9407c09243c260de9b4dc14b44db4", + "x-ms-correlation-request-id": "68438486-4414-43a0-97e8-fd34edc6cb57", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "e8a4be9a-f294-4d9a-8bc6-257b5ea0cf3f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071722Z:68438486-4414-43a0-97e8-fd34edc6cb57" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1738facf323f24bbbd99d54c705efc7b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "304ca988-588e-42a5-8ece-391f8ba5fde9", + "x-ms-client-request-id": "1738facf323f24bbbd99d54c705efc7b", + "x-ms-correlation-request-id": "79aaeb2a-1482-4e6e-975c-977e43718abe", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "14d13311-7bab-407a-9355-b948df80d72d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071723Z:79aaeb2a-1482-4e6e-975c-977e43718abe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e4fc459d5d6ab3c4b539829e5eaa99bd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "95750498-6b13-4dbf-a290-c03da9ebd81b", + "x-ms-client-request-id": "e4fc459d5d6ab3c4b539829e5eaa99bd", + "x-ms-correlation-request-id": "0ff32f3b-c666-431b-b1bc-40987e66c73f", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "47cfc771-0a9f-4f66-aeaa-3948de196127", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071725Z:0ff32f3b-c666-431b-b1bc-40987e66c73f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a4b75f08038a49e585d5d58a34d9cbae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "10497b8a-b47d-4028-8c71-87e9aeca8811", + "x-ms-client-request-id": "a4b75f08038a49e585d5d58a34d9cbae", + "x-ms-correlation-request-id": "305c2409-fbdf-429b-9a58-81b2202f6b73", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "6f8f2b86-165e-4980-b2bf-cfbcd0a24cde", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071726Z:305c2409-fbdf-429b-9a58-81b2202f6b73" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ce3f39ed68b8724a35856106af1cc513", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1df1be4a-4c8c-4f35-b832-d47d5de508d8", + "x-ms-client-request-id": "ce3f39ed68b8724a35856106af1cc513", + "x-ms-correlation-request-id": "230c9b4a-3de1-4620-a5bc-7744e3589892", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "e8440dd6-f61f-4a87-a101-6de67ea78263", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071727Z:230c9b4a-3de1-4620-a5bc-7744e3589892" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1044170058a699f160b25f95873a7edc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "34db24e6-8ade-45c2-b9e6-1a61f1f05774", + "x-ms-client-request-id": "1044170058a699f160b25f95873a7edc", + "x-ms-correlation-request-id": "8c60c088-8471-4bdb-9bd8-961dab6bf0d9", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "4a88c102-b463-4215-ae63-ac7a1d0ad404", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071729Z:8c60c088-8471-4bdb-9bd8-961dab6bf0d9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "25b1d46dca6b9f0515456e04a2de9a68", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5fb09133-ac66-40e9-80ac-91dbcbbdb679", + "x-ms-client-request-id": "25b1d46dca6b9f0515456e04a2de9a68", + "x-ms-correlation-request-id": "334ba2d3-1b75-4f15-a429-9a3d441e81ea", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "9522131b-6096-42ec-9c77-2ddf502ceaed", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071730Z:334ba2d3-1b75-4f15-a429-9a3d441e81ea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1d8ac20fba94950747a56d0609b4eafb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5d134ea8-b0f2-4981-bd9f-a83efa76a1b4", + "x-ms-client-request-id": "1d8ac20fba94950747a56d0609b4eafb", + "x-ms-correlation-request-id": "d4bf8d7d-19e3-4d43-adb1-09be81b66844", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "58f812cf-f63e-4c76-92bd-8345e25f8357", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071731Z:d4bf8d7d-19e3-4d43-adb1-09be81b66844" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "db988507a06b35a812a5fb61eaedf781", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c7d7ec0f-1263-4313-9827-fcf0f362fbbe", + "x-ms-client-request-id": "db988507a06b35a812a5fb61eaedf781", + "x-ms-correlation-request-id": "bcca642c-8386-4888-ba1e-ee62113763b9", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "01b73ea5-c2f7-44f0-a0fc-9806b2f4cf54", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071732Z:bcca642c-8386-4888-ba1e-ee62113763b9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c586f61760afb347cc1bdec55cfe9560", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "69bfa18a-f9db-4ad6-a3eb-930143aaeb94", + "x-ms-client-request-id": "c586f61760afb347cc1bdec55cfe9560", + "x-ms-correlation-request-id": "07369686-24b6-4a7e-b22c-43cf8f2774c9", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "301ce92b-0805-4467-933a-b854f63a137b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071734Z:07369686-24b6-4a7e-b22c-43cf8f2774c9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1cfd725bbe466efd19550beebfa6ab5a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "001164ad-0c16-48cb-b193-e71b564ec7cb", + "x-ms-client-request-id": "1cfd725bbe466efd19550beebfa6ab5a", + "x-ms-correlation-request-id": "f574351c-b75d-4ad0-88b1-d5aa8ae85adb", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "d52915ef-7347-4f5a-a35d-42adf0f0c94d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071735Z:f574351c-b75d-4ad0-88b1-d5aa8ae85adb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "12eeebad242ea64c3de50e4fc2e2d813", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4096ece2-e349-4dcc-b1c0-e67c53e01838", + "x-ms-client-request-id": "12eeebad242ea64c3de50e4fc2e2d813", + "x-ms-correlation-request-id": "715173cd-5dbb-4c9b-ad29-e27ff5ec687a", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "de970314-3702-44e1-a541-ea7f0c3bb6f3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071736Z:715173cd-5dbb-4c9b-ad29-e27ff5ec687a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "77059a0fdbf0593bf917ac5a5558f426", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d60bb9ab-d89e-472f-82dc-70bf0b700060", + "x-ms-client-request-id": "77059a0fdbf0593bf917ac5a5558f426", + "x-ms-correlation-request-id": "cbd10998-3ef6-4fc2-bb14-c73744cf296a", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "d8b2ad67-637c-4ff3-8a67-1ac16cee658b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071738Z:cbd10998-3ef6-4fc2-bb14-c73744cf296a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "70188470831036312656de60b0adac36", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4e415c25-c0fd-40c4-b835-1b13964c53dd", + "x-ms-client-request-id": "70188470831036312656de60b0adac36", + "x-ms-correlation-request-id": "dca94388-d950-442c-98d2-ce9953b96703", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "244e74f8-4bf5-4503-a76d-faf9bc07970a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071739Z:dca94388-d950-442c-98d2-ce9953b96703" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "24dff77c33a1d269b095181778f151e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9ed7ba7d-8d71-4f97-a884-674cd8e8f13c", + "x-ms-client-request-id": "24dff77c33a1d269b095181778f151e4", + "x-ms-correlation-request-id": "d04e95d4-954d-46c4-aa53-064f26886a3f", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "0e4f8b29-b214-47af-a65c-3370fff6e128", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071740Z:d04e95d4-954d-46c4-aa53-064f26886a3f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3edfe8f167ca8b0368cf5199fcdaa94b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6d95a518-bc78-4bbf-9645-cc6acb0a18b1", + "x-ms-client-request-id": "3edfe8f167ca8b0368cf5199fcdaa94b", + "x-ms-correlation-request-id": "f50dac95-73c0-404e-aac2-bf1dda8604cc", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "d8df6f83-c621-4671-bc55-bf9ef59ae06c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071742Z:f50dac95-73c0-404e-aac2-bf1dda8604cc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5ddd756acf793c851a46c07a6b1abd34", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:17: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": "7c70413d-ddcd-4a07-901c-96947b8b8115", + "x-ms-client-request-id": "5ddd756acf793c851a46c07a6b1abd34", + "x-ms-correlation-request-id": "4d88e4ee-7900-4205-96c1-3554862b444c", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "dc0e463b-0b79-40b6-ad95-cc22adc87803", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071743Z:4d88e4ee-7900-4205-96c1-3554862b444c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c76ffa046ece156cf453bbd1e2d0d5d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4ddf58dc-9868-4026-9185-cb688f2325d0", + "x-ms-client-request-id": "c76ffa046ece156cf453bbd1e2d0d5d5", + "x-ms-correlation-request-id": "a17ee0e8-8be4-4c9b-8763-e9b45c1c9921", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "153d28c6-96ca-4737-ae61-f3f5585db922", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071744Z:a17ee0e8-8be4-4c9b-8763-e9b45c1c9921" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "03adcdecf313216b63a32384a688204e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8deeecbb-e38e-4c94-a264-2575bb6d6afa", + "x-ms-client-request-id": "03adcdecf313216b63a32384a688204e", + "x-ms-correlation-request-id": "fcadc177-b07a-4244-8703-d521bf636e3f", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "52524ede-b997-43a6-97cb-744e3a7aec16", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071746Z:fcadc177-b07a-4244-8703-d521bf636e3f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "02941d11e16afb7c09c8682614b35a4a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "83dd3d5f-ac92-4db5-9ce8-cd7350edab2c", + "x-ms-client-request-id": "02941d11e16afb7c09c8682614b35a4a", + "x-ms-correlation-request-id": "715aa8a4-cf94-4fbd-88b6-6f3e828467bd", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "b8f17d6d-b082-479c-ad69-bf226d99ea83", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071747Z:715aa8a4-cf94-4fbd-88b6-6f3e828467bd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9d8eeb70ba6d10208e4e632b4ae76e6c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:17: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": "56abde6f-4dbe-4bfb-804a-db326b61ee91", + "x-ms-client-request-id": "9d8eeb70ba6d10208e4e632b4ae76e6c", + "x-ms-correlation-request-id": "8656a35b-0b76-46df-ad6e-b1ba7a108eb5", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "f7a9653e-c0c8-4812-b32b-5acaa8105b49", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071748Z:8656a35b-0b76-46df-ad6e-b1ba7a108eb5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c4c06d32d33b0a6a50b1fa4b8b450cb0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f5e278b0-1a7d-42de-882c-442006751777", + "x-ms-client-request-id": "c4c06d32d33b0a6a50b1fa4b8b450cb0", + "x-ms-correlation-request-id": "344da966-c94a-4151-b8a1-30a6bb6f85cb", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "846f7c33-d913-4a24-9e25-b1c065173f0d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071749Z:344da966-c94a-4151-b8a1-30a6bb6f85cb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bb14d94882f956e1fd84731c7e51b021", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c9618215-b795-4c06-98a6-858c490aad70", + "x-ms-client-request-id": "bb14d94882f956e1fd84731c7e51b021", + "x-ms-correlation-request-id": "ba05f9b3-cbf6-4d50-8907-07c1ea2444b9", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-request-id": "c417e5d2-e3ca-4ed5-ac92-954c10bc2e8a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071751Z:ba05f9b3-cbf6-4d50-8907-07c1ea2444b9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a7f3fc5a95f29c0f80834dbbc0d48549", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8c367601-f64c-4c2c-baea-84860c7be8df", + "x-ms-client-request-id": "a7f3fc5a95f29c0f80834dbbc0d48549", + "x-ms-correlation-request-id": "7c505fc4-86e3-4cd4-9b81-692382e15149", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "9e50281e-f600-4700-8a2c-15c30da7ff0a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071752Z:7c505fc4-86e3-4cd4-9b81-692382e15149" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "71e2b341b2d3af728b69c7b6604e8cfe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:17: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": "d79fc056-0bed-4896-a0f9-704aace6c5d7", + "x-ms-client-request-id": "71e2b341b2d3af728b69c7b6604e8cfe", + "x-ms-correlation-request-id": "ef7a80be-3f82-4a6c-b011-459f488ab1b6", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "6eab34a8-c415-4771-b338-6ca716c05016", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071754Z:ef7a80be-3f82-4a6c-b011-459f488ab1b6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8ef0d8006551b3beca783a7635259628", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "901fe8c0-96f7-44c9-ac6e-df88ef8efc8e", + "x-ms-client-request-id": "8ef0d8006551b3beca783a7635259628", + "x-ms-correlation-request-id": "f7217480-9850-45b9-a302-069a19cba253", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "53bc77b7-64bf-4357-870f-19a2c6f7265a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071755Z:f7217480-9850-45b9-a302-069a19cba253" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cada29fe3f6ea74e8a431b88cd583c32", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f7eb0f18-568f-4f6c-8423-744f05041793", + "x-ms-client-request-id": "cada29fe3f6ea74e8a431b88cd583c32", + "x-ms-correlation-request-id": "0efd41cc-f45a-47bd-9688-aaae41d608b7", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "c34f6e33-a2cf-4a0d-a45f-a30d8c03fe6a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071756Z:0efd41cc-f45a-47bd-9688-aaae41d608b7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e7bb4ff7f6e4dcf7f52fa65b77fc7a66", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:17: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": "191b1c49-e5ee-48a5-a84b-dd53479184bb", + "x-ms-client-request-id": "e7bb4ff7f6e4dcf7f52fa65b77fc7a66", + "x-ms-correlation-request-id": "2651f819-3551-40f8-ac0f-0dc713ea37b5", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "983890c1-cb09-4d70-bc18-25b9f2072b74", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071757Z:2651f819-3551-40f8-ac0f-0dc713ea37b5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "36b89fd3c174c08f8a48040e4a35e572", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "98896e0c-278a-49f0-916e-d3e2e8441006", + "x-ms-client-request-id": "36b89fd3c174c08f8a48040e4a35e572", + "x-ms-correlation-request-id": "49ab0cec-6657-4bfa-a3ef-3e144de82d0f", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "7e64482a-79e4-4225-acc7-dd3162fe11d3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071759Z:49ab0cec-6657-4bfa-a3ef-3e144de82d0f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e67e083bae6a074332fed53f99f2308d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "cf30884f-76a8-4fb6-abf5-a370c597a116", + "x-ms-client-request-id": "e67e083bae6a074332fed53f99f2308d", + "x-ms-correlation-request-id": "699e8ebc-9d30-4552-b4f1-895a7f0faad0", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "799edb09-7567-4fff-889a-75dde16a2c48", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071800Z:699e8ebc-9d30-4552-b4f1-895a7f0faad0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2eb5b5c9059f35bebffa5d9bf2e991bf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b219d523-bc03-450c-817d-73335d4dbad5", + "x-ms-client-request-id": "2eb5b5c9059f35bebffa5d9bf2e991bf", + "x-ms-correlation-request-id": "052bf397-6f16-440d-8af1-52caac0ca50d", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "acf632e0-9107-4ae4-b8e6-438da80726be", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071801Z:052bf397-6f16-440d-8af1-52caac0ca50d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6f1f3449947d24fc5bb10475ec502797", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:18: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": "8b3890f3-66d6-440f-9317-7a27f365de6d", + "x-ms-client-request-id": "6f1f3449947d24fc5bb10475ec502797", + "x-ms-correlation-request-id": "3c6de11c-8cf8-43fb-a53a-dcf17b183346", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "9c6ee0f9-ad2f-4d3f-8602-9f8c8720f5db", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071803Z:3c6de11c-8cf8-43fb-a53a-dcf17b183346" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "95457618b68036d34a49276f51a81548", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "cd1af448-6627-4dec-9046-31038b1bcd51", + "x-ms-client-request-id": "95457618b68036d34a49276f51a81548", + "x-ms-correlation-request-id": "915e54c8-9f7a-4a7e-9fc0-06dba4558480", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "8db3128e-f6b9-49c9-96f9-abfa73cfe5af", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071804Z:915e54c8-9f7a-4a7e-9fc0-06dba4558480" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "65f5166cc0d33410b890d3ee0148496e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b669bbc0-2610-43c9-a718-a3f481d1b443", + "x-ms-client-request-id": "65f5166cc0d33410b890d3ee0148496e", + "x-ms-correlation-request-id": "57f748d8-7de8-4446-bdad-1fefca5b8488", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "51e04210-7a5a-4082-a8f7-a210e1c01a94", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071806Z:57f748d8-7de8-4446-bdad-1fefca5b8488" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7b82c5d2fca4933f61e924336d8cd3b2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a89f0021-5985-4a3e-9157-58a53da97999", + "x-ms-client-request-id": "7b82c5d2fca4933f61e924336d8cd3b2", + "x-ms-correlation-request-id": "4e5c839c-bbcc-4256-94dd-1b92b028e6ff", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "ecd54fc2-4fd4-497e-97b0-149c3b88a679", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071807Z:4e5c839c-bbcc-4256-94dd-1b92b028e6ff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d509bb9bc25a57c36510dcefe3e43402", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "7e3d0984-ce75-47f1-b042-579d78240e7d", + "x-ms-client-request-id": "d509bb9bc25a57c36510dcefe3e43402", + "x-ms-correlation-request-id": "866fff41-fd81-4ca5-bd3e-dd01323611b9", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "46264855-5869-47aa-a7f9-845f63af8f17", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071808Z:866fff41-fd81-4ca5-bd3e-dd01323611b9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8b9cb80099256fa3d66204ea9cdcc72c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "25dac89d-cc57-428b-80cf-7615cf3bce12", + "x-ms-client-request-id": "8b9cb80099256fa3d66204ea9cdcc72c", + "x-ms-correlation-request-id": "4fa3d067-02eb-484f-988d-76abc937f810", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "cce63ee6-c8aa-4164-8cbc-51743d9b3e5b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071809Z:4fa3d067-02eb-484f-988d-76abc937f810" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "455220bd733e1014022a15942050af7c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "afc1f6c9-cc95-4e9e-85f8-445d465fdea1", + "x-ms-client-request-id": "455220bd733e1014022a15942050af7c", + "x-ms-correlation-request-id": "9eb3103a-b8d8-4fce-804d-ce7cb068480a", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "638d0552-953e-4879-b494-66cd9bc0326a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071811Z:9eb3103a-b8d8-4fce-804d-ce7cb068480a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b53322b447ef018d1899fff8bed9bb89", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "d07a2c49-139b-4ce5-8c2f-e06aeca0082b", + "x-ms-client-request-id": "b53322b447ef018d1899fff8bed9bb89", + "x-ms-correlation-request-id": "0bf9b809-fd98-4ed6-be45-624824be1ff7", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "0bba3e64-4b67-412c-9014-542fa7e0c77e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071812Z:0bf9b809-fd98-4ed6-be45-624824be1ff7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c331af48ef928cc3a48c89fa840f4f86", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "37de89cb-2b24-4bdd-be1f-8dadd6cea14d", + "x-ms-client-request-id": "c331af48ef928cc3a48c89fa840f4f86", + "x-ms-correlation-request-id": "4ec50c62-f74b-4735-9a3e-016add47a933", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "0535d487-f164-4615-a6db-29afb072f874", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071813Z:4ec50c62-f74b-4735-9a3e-016add47a933" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "793587b212a9753c93502da5741c5228", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "fa00bbc5-6831-460a-a6c1-a5a82d2db700", + "x-ms-client-request-id": "793587b212a9753c93502da5741c5228", + "x-ms-correlation-request-id": "fd54b030-7824-4de7-9a90-ec30696996b4", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "aaa96e19-6ad1-4c5c-b038-589cb9966843", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071815Z:fd54b030-7824-4de7-9a90-ec30696996b4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "704b8c6fec1ec5ea5fa71163be927d08", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3822f114-0359-4f5d-ba4c-5a3c25d9541f", + "x-ms-client-request-id": "704b8c6fec1ec5ea5fa71163be927d08", + "x-ms-correlation-request-id": "88d727c8-0ce2-4302-9e61-5840d1132107", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "bb2d4286-7dcf-407f-9b6c-7824be97c7c3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071816Z:88d727c8-0ce2-4302-9e61-5840d1132107" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3645794a42a336df72bb2f41c11e1887", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "3a569ba1-5a50-4328-b3d7-732107b56bb0", + "x-ms-client-request-id": "3645794a42a336df72bb2f41c11e1887", + "x-ms-correlation-request-id": "6063af12-38ae-4a32-8d7c-1d70bb97ae33", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "de004c9a-9ae6-4c10-b281-af5f6b0b4be9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071817Z:6063af12-38ae-4a32-8d7c-1d70bb97ae33" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f88b603adfc3c6679d70190200d9b701", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2c4074f8-43de-40de-b5c1-a3e9b4398b08", + "x-ms-client-request-id": "f88b603adfc3c6679d70190200d9b701", + "x-ms-correlation-request-id": "0ccfd10e-830b-4903-a43c-9ebb3cbcf563", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "eb2f7c18-2018-42b1-ba80-2bc48cabfe42", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071818Z:0ccfd10e-830b-4903-a43c-9ebb3cbcf563" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fa5b24d31bd62c84ac14fd63bca80341", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9abba159-74a5-4648-8889-f307d1e22d41", + "x-ms-client-request-id": "fa5b24d31bd62c84ac14fd63bca80341", + "x-ms-correlation-request-id": "66213301-85ea-41c3-96a5-0019c084a150", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "2d6c67c2-0be6-4b03-9066-20b3ee50d91c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071820Z:66213301-85ea-41c3-96a5-0019c084a150" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5d29898e85066a44117e983329dd3599", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "676b80c9-6fbc-446f-b278-3e22f81c4407", + "x-ms-client-request-id": "5d29898e85066a44117e983329dd3599", + "x-ms-correlation-request-id": "4a6ad552-0329-4589-92c1-1c9f2d533683", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "6f0d2178-7f27-4e4a-88c3-03eeeb6d1f7d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071821Z:4a6ad552-0329-4589-92c1-1c9f2d533683" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9d6e2e041dc21eb1db5f4bafe10409f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "15cab074-abeb-4923-97d1-fd02303ec479", + "x-ms-client-request-id": "9d6e2e041dc21eb1db5f4bafe10409f5", + "x-ms-correlation-request-id": "56e4b122-e685-4383-bfef-83496871628f", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "2cb102c9-d80c-4cca-be50-6eca9c4c9bf3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071822Z:56e4b122-e685-4383-bfef-83496871628f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7773d76c59b04efbdff0e858825103ce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6776c8f6-5298-4c78-8bc8-4a1203cf6619", + "x-ms-client-request-id": "7773d76c59b04efbdff0e858825103ce", + "x-ms-correlation-request-id": "18b517c1-33f8-4431-831c-cf55a7f48f0e", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "7ced6748-3552-4ef8-af0f-40a84e2ea8f7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071824Z:18b517c1-33f8-4431-831c-cf55a7f48f0e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8e5e64de663a707ed80a81a63995890d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d90f7e43-87ce-4902-826f-009b864316e9", + "x-ms-client-request-id": "8e5e64de663a707ed80a81a63995890d", + "x-ms-correlation-request-id": "da1fec75-692c-4cbc-9193-ffb4067f5caf", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "b97ecc22-166e-46f9-8e96-9ed0e4be9165", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071825Z:da1fec75-692c-4cbc-9193-ffb4067f5caf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "51c7a375be6aaae9321fbdd234589c8a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "5db63980-e3f1-4d47-bde7-d1ed5c72a155", + "x-ms-client-request-id": "51c7a375be6aaae9321fbdd234589c8a", + "x-ms-correlation-request-id": "1f597cc5-0264-4cd1-99ee-a73402461de0", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "2e54272c-1d23-49f7-a4f4-dfaf1b35c4d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071826Z:1f597cc5-0264-4cd1-99ee-a73402461de0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7dd07c5b7aa505ba59029fa6d854144a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "62c083c1-8633-4629-8adc-f4f0b650b822", + "x-ms-client-request-id": "7dd07c5b7aa505ba59029fa6d854144a", + "x-ms-correlation-request-id": "adc67f93-bf4d-460e-92a3-d3bff9805c87", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "3c9874d1-c88e-4862-a193-61a4eefc6d92", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071827Z:adc67f93-bf4d-460e-92a3-d3bff9805c87" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dee2db66b28a20647ab45b1ba9ac3b7f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "12fc78d6-2059-45cb-b04e-bd0ca2106f99", + "x-ms-client-request-id": "dee2db66b28a20647ab45b1ba9ac3b7f", + "x-ms-correlation-request-id": "2a73143f-4760-4fb1-8e12-df3ef5d43c3f", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "0b878993-ee87-4dfa-a3c7-54cf0666162a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071829Z:2a73143f-4760-4fb1-8e12-df3ef5d43c3f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bc4af76e0cc4fa68e9c1f7681e43d2de", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "855369be-ca52-44a8-bd97-922848c8417a", + "x-ms-client-request-id": "bc4af76e0cc4fa68e9c1f7681e43d2de", + "x-ms-correlation-request-id": "f2f88c40-4a3e-4b57-a8f3-2e524e89afcd", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "7dca9893-cd44-4384-bad7-51b3e588c034", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071830Z:f2f88c40-4a3e-4b57-a8f3-2e524e89afcd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "596c730abd76a90018b002f01e9f5cad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "a7ac9fc3-f246-4ac1-a7ad-56deddd585a0", + "x-ms-client-request-id": "596c730abd76a90018b002f01e9f5cad", + "x-ms-correlation-request-id": "5ae7185e-b70f-40b1-bd35-4635f97eea4a", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "cdf56f48-19f5-4218-a708-cb77e7230c39", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071831Z:5ae7185e-b70f-40b1-bd35-4635f97eea4a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e03720c658095a8572e8f5c8bafc0237", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "bf554e44-3e26-41eb-9609-62faa0f8ea92", + "x-ms-client-request-id": "e03720c658095a8572e8f5c8bafc0237", + "x-ms-correlation-request-id": "e3f1fad5-9f3f-4477-87a3-bdc217d49ac2", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "cd97c6a2-d615-404c-a455-f735744305e6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071833Z:e3f1fad5-9f3f-4477-87a3-bdc217d49ac2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "35107de2e23fb008f6a1a4140a77db4a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "dd388608-ef4c-4a3a-83bd-f47fdc1c6289", + "x-ms-client-request-id": "35107de2e23fb008f6a1a4140a77db4a", + "x-ms-correlation-request-id": "d07f72bb-c75a-49b8-867e-71cdc5d1bad4", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "5858a970-f426-47a0-a7ed-b1ae346f9259", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071834Z:d07f72bb-c75a-49b8-867e-71cdc5d1bad4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fda14a65f10bb2d4ee12e78ec838ee1b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:18: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": "360d1483-c9dd-4012-b894-159f4584231c", + "x-ms-client-request-id": "fda14a65f10bb2d4ee12e78ec838ee1b", + "x-ms-correlation-request-id": "e59da08a-008f-494e-abb8-1bec72075c69", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "a2c2f27d-f1ef-40a2-bd44-02b27832001e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071835Z:e59da08a-008f-494e-abb8-1bec72075c69" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a10ecaad268ee46d1787ea68b3704ffb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4fdfbc1f-8203-4eee-8126-b6e5a1749158", + "x-ms-client-request-id": "a10ecaad268ee46d1787ea68b3704ffb", + "x-ms-correlation-request-id": "e171e702-a6c0-4df7-b59c-ba849dbc054f", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "cbe75e08-68ff-4e03-8f3f-fc5147c023dc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071836Z:e171e702-a6c0-4df7-b59c-ba849dbc054f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6f62aa0c045af02ca95e472dfa7ae8be", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "aa2a49d2-33ca-4f6f-8554-99e5b9cdff73", + "x-ms-client-request-id": "6f62aa0c045af02ca95e472dfa7ae8be", + "x-ms-correlation-request-id": "ad633fdc-91da-4ecc-aac1-45842af6f6be", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "976ddc7d-5e1d-46bd-ab9d-211c18062c11", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071838Z:ad633fdc-91da-4ecc-aac1-45842af6f6be" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3f6688b23a683fbbddbde683076bfe7d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "ab68a124-a11c-4cee-ac8b-f57f146b8a01", + "x-ms-client-request-id": "3f6688b23a683fbbddbde683076bfe7d", + "x-ms-correlation-request-id": "3f883536-8e27-42fd-971b-b2723c4c8139", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "9a396847-9100-46ac-9602-62420c77dfab", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071839Z:3f883536-8e27-42fd-971b-b2723c4c8139" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1d81ebc27fd6a9c19d1ef830de3fe99c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:18: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": "1b4982cf-d743-425f-85fd-afbf5739f252", + "x-ms-client-request-id": "1d81ebc27fd6a9c19d1ef830de3fe99c", + "x-ms-correlation-request-id": "9f3358ae-889e-4d70-8e04-45d5ae901b27", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "6e6faae9-e9d4-4dd7-81be-e901a513e629", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071841Z:9f3358ae-889e-4d70-8e04-45d5ae901b27" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2bb62c9f1009d192ef22929d1ea8e93d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "02dea994-4ed0-4f12-8fd8-af22106583bd", + "x-ms-client-request-id": "2bb62c9f1009d192ef22929d1ea8e93d", + "x-ms-correlation-request-id": "f99b1f6a-ddb4-459f-9ae0-238925514621", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "2e7189b9-0352-418b-bfdf-1c3768cbd5fa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071842Z:f99b1f6a-ddb4-459f-9ae0-238925514621" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0e6bc95fcaf933e7c7bda14a418a619d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e8247814-cd40-4850-b441-3b45e6736ed2", + "x-ms-client-request-id": "0e6bc95fcaf933e7c7bda14a418a619d", + "x-ms-correlation-request-id": "f222e911-c4ad-426f-a625-996872101ea6", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "4ddf21e1-ff84-4612-9e2b-89c0b5bf174e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071843Z:f222e911-c4ad-426f-a625-996872101ea6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dae449d3d3b5b17459af2eb3ec238af4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "05457b00-fb12-444d-8e9f-92ff34045838", + "x-ms-client-request-id": "dae449d3d3b5b17459af2eb3ec238af4", + "x-ms-correlation-request-id": "13cc4c8c-9075-400e-a620-cc14019a0c6b", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "b43ebfc4-a183-4e35-95d1-29af8ee2d81d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071844Z:13cc4c8c-9075-400e-a620-cc14019a0c6b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "14d1bb34dad3d4a34482634b6e478f64", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "92e72568-d2a5-4fdd-87a4-baffd5ad49b3", + "x-ms-client-request-id": "14d1bb34dad3d4a34482634b6e478f64", + "x-ms-correlation-request-id": "07b0876c-4c52-4fa7-838b-6229842c84f9", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "7e927154-a95b-4d29-80cf-e197f4edf3bd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071846Z:07b0876c-4c52-4fa7-838b-6229842c84f9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d5c9f4c00ec48c8755b9b5499c3446a3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "74b84c4a-3045-4971-9d26-2df2c4cdb90d", + "x-ms-client-request-id": "d5c9f4c00ec48c8755b9b5499c3446a3", + "x-ms-correlation-request-id": "316e8e9e-1cf0-4cbc-8fa6-fcdc355efc57", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "6d1a9eaf-7666-4b7c-b1c2-f44731c35126", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071847Z:316e8e9e-1cf0-4cbc-8fa6-fcdc355efc57" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8616ad334db9f8caa50f96326f284311", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1b1bbc6c-ce7c-47a1-a618-175072405cb7", + "x-ms-client-request-id": "8616ad334db9f8caa50f96326f284311", + "x-ms-correlation-request-id": "b319dffb-9458-445d-86cb-0c29daae876d", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "6c983ec3-fcdc-4a23-9f7f-273d486a6989", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071849Z:b319dffb-9458-445d-86cb-0c29daae876d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f7f2c91fb55925303345be1a255a380f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "19d8de45-9c39-4050-96aa-b282a62fedb5", + "x-ms-client-request-id": "f7f2c91fb55925303345be1a255a380f", + "x-ms-correlation-request-id": "667bd922-26e5-4c44-b3f2-4bac77c56341", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "4adbc51e-45c8-42c1-9df6-ba2a7419486e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071850Z:667bd922-26e5-4c44-b3f2-4bac77c56341" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c118c03c093173ab2ad12fb478541c2d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e9facbc9-4672-422b-97e5-49dc6f809314", + "x-ms-client-request-id": "c118c03c093173ab2ad12fb478541c2d", + "x-ms-correlation-request-id": "2adf4281-da23-41fd-a23a-88b79c13a4a8", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "cbb589ef-9662-4d65-8a2d-f3e669107e31", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071851Z:2adf4281-da23-41fd-a23a-88b79c13a4a8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d229a3764e417d4a7cf053748eafd34b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "09cfb8a9-1ab0-4da2-9bea-b979719fe09a", + "x-ms-client-request-id": "d229a3764e417d4a7cf053748eafd34b", + "x-ms-correlation-request-id": "5cb1669c-c72f-4d28-8227-4c9957229d5f", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "98c76dcc-28d7-40e2-805e-04b8964aec42", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071853Z:5cb1669c-c72f-4d28-8227-4c9957229d5f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aff686d7820f16e01e7fcd88857badde", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "cbd18410-4ec1-4684-8e7a-d97e7ee6b424", + "x-ms-client-request-id": "aff686d7820f16e01e7fcd88857badde", + "x-ms-correlation-request-id": "037532f8-c5c8-4e95-aa94-bccd9eaf8974", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "ea4d2313-bf22-4ff6-9421-613a0153b5c5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071854Z:037532f8-c5c8-4e95-aa94-bccd9eaf8974" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "81a391286530edce769b4441b536e47a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:18: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": "25fbff05-0e2f-4d59-be67-146d5defc503", + "x-ms-client-request-id": "81a391286530edce769b4441b536e47a", + "x-ms-correlation-request-id": "3feca581-cd3b-4236-92d9-b434400babdf", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "3d51e1b9-fc6e-415b-b139-1b35ed810f9a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071855Z:3feca581-cd3b-4236-92d9-b434400babdf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f1dde4fd6d5ef31dc312b4c281c1f801", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "28709786-d145-4825-9f8e-0627798eb452", + "x-ms-client-request-id": "f1dde4fd6d5ef31dc312b4c281c1f801", + "x-ms-correlation-request-id": "52556214-c8db-4ef1-a7f9-ed342acde5d8", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "85ee91b3-460e-4e3b-893f-07550f296ac5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071856Z:52556214-c8db-4ef1-a7f9-ed342acde5d8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fd4c7442510b721ab80939743e9e60e8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "86c9a695-a97e-412c-bcb9-68c37b201aa7", + "x-ms-client-request-id": "fd4c7442510b721ab80939743e9e60e8", + "x-ms-correlation-request-id": "02f6f2c4-abbb-4d9a-b4b2-0e9a2c9a157b", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "bf247a91-3e47-45c1-a294-5c580b409e2b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071858Z:02f6f2c4-abbb-4d9a-b4b2-0e9a2c9a157b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a08b529abb9eba8073b0be1db00b6bb4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f963a723-ebda-4709-95fd-839d69137967", + "x-ms-client-request-id": "a08b529abb9eba8073b0be1db00b6bb4", + "x-ms-correlation-request-id": "3cd4ad8c-10db-4b51-b7b1-99dbb82fbd65", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "46cfbd52-ff5f-41a7-a8d5-b3bf209c531c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071859Z:3cd4ad8c-10db-4b51-b7b1-99dbb82fbd65" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "41fe42a2e7eaab6eca6a395534a9b524", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "c8da4e50-f46c-454a-a2b5-be44a8c6d9b9", + "x-ms-client-request-id": "41fe42a2e7eaab6eca6a395534a9b524", + "x-ms-correlation-request-id": "7cf470b7-56ca-42c0-96f8-08b978b3fbe7", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "27ce2305-67a6-4bb7-911e-bdcd05b58a2e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071900Z:7cf470b7-56ca-42c0-96f8-08b978b3fbe7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2f28ccb257368763f491895b93fcc1ac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0f9415b1-724f-4787-b77a-5e9fa58adc25", + "x-ms-client-request-id": "2f28ccb257368763f491895b93fcc1ac", + "x-ms-correlation-request-id": "382c5019-cb93-4f42-b1ca-60147d09907c", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "af71d6f1-a9ac-4a2b-b691-a25851e6ba81", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071902Z:382c5019-cb93-4f42-b1ca-60147d09907c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fbd1849d1f9fb2fde3dfd633812b86ca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d3c9834f-ba33-4092-b425-2a0eb3fbdee4", + "x-ms-client-request-id": "fbd1849d1f9fb2fde3dfd633812b86ca", + "x-ms-correlation-request-id": "abe0fce8-a6a7-44b2-8e07-f54ddd2d8801", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "55123589-e282-496f-ad60-aec9ceaf5e5d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071903Z:abe0fce8-a6a7-44b2-8e07-f54ddd2d8801" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e46b99fb3ce34b7edf774d585d1317cd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:19: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": "384e5a02-0d3b-480a-a1ec-39fe84efdbbb", + "x-ms-client-request-id": "e46b99fb3ce34b7edf774d585d1317cd", + "x-ms-correlation-request-id": "a91ccda9-9fe6-4dc5-a420-6d964a975448", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "f1128e8f-62a3-42a5-8e97-3e85e7a8f06e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071904Z:a91ccda9-9fe6-4dc5-a420-6d964a975448" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b0b78da9b9d79284ce754b56803005c9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "507e7545-36af-4ed4-82ef-dcead106a43d", + "x-ms-client-request-id": "b0b78da9b9d79284ce754b56803005c9", + "x-ms-correlation-request-id": "d79bb41c-8e44-43e3-94df-9ce93ef0ff0d", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "31c46ad4-da6a-479b-80e0-473743d1d5dd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071905Z:d79bb41c-8e44-43e3-94df-9ce93ef0ff0d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fa60bf0bdd9161c906851c28d2a455d0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c1d8e9bd-29ee-4e6f-96dc-f60af367829c", + "x-ms-client-request-id": "fa60bf0bdd9161c906851c28d2a455d0", + "x-ms-correlation-request-id": "1de46029-0275-4253-a85d-2ecacf1e74d7", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "ee8903bd-adbb-4ed4-82b6-3da493ba74d6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071907Z:1de46029-0275-4253-a85d-2ecacf1e74d7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f48a09c7d57341f214d8156df127cbae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2eb92311-e400-48cb-b357-f34ef46d84ed", + "x-ms-client-request-id": "f48a09c7d57341f214d8156df127cbae", + "x-ms-correlation-request-id": "8a9dadbe-08ea-470a-b4dd-532eb5edffee", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-request-id": "b4014cfd-97a5-4ffb-8a5f-27374f5cde28", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071908Z:8a9dadbe-08ea-470a-b4dd-532eb5edffee" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9d4d83721db2cb3cc355a9529c5cc02a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c07893d5-c213-4166-8722-89bfb463e71b", + "x-ms-client-request-id": "9d4d83721db2cb3cc355a9529c5cc02a", + "x-ms-correlation-request-id": "e1123b17-2b04-4ecc-abc6-e2fe8920035c", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "451c3e54-9821-436b-83f2-c29db73acac3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071909Z:e1123b17-2b04-4ecc-abc6-e2fe8920035c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "768f7a2010a63555cd1ee6b8c75c70de", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2a055d6a-021f-46b9-b9af-74acb482629c", + "x-ms-client-request-id": "768f7a2010a63555cd1ee6b8c75c70de", + "x-ms-correlation-request-id": "c4f774d0-1493-4a35-95a0-2b374d04f396", + "x-ms-ratelimit-remaining-subscription-reads": "11788", + "x-ms-request-id": "f20c47e0-721d-4fec-9b26-c344397ebb90", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071911Z:c4f774d0-1493-4a35-95a0-2b374d04f396" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4eb66dbab756aa1ecdbe311e2ba0a4b7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "9c4328c3-0b52-42c1-a184-d56e462c973f", + "x-ms-client-request-id": "4eb66dbab756aa1ecdbe311e2ba0a4b7", + "x-ms-correlation-request-id": "c0ef2969-953a-4fb8-9eb7-88af17c9a362", + "x-ms-ratelimit-remaining-subscription-reads": "11787", + "x-ms-request-id": "26ccbcd9-a6b2-4a6e-8d1a-b1a010261550", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071912Z:c0ef2969-953a-4fb8-9eb7-88af17c9a362" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "764deb17549861082e18d09336830367", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "66b91dd6-ab4c-4d11-bb05-3d2ef0b5d685", + "x-ms-client-request-id": "764deb17549861082e18d09336830367", + "x-ms-correlation-request-id": "3a41d281-6775-4774-b3d1-360330ab308f", + "x-ms-ratelimit-remaining-subscription-reads": "11786", + "x-ms-request-id": "6e1cd7b6-b4a5-42b8-9525-e5cbb1b024b3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071913Z:3a41d281-6775-4774-b3d1-360330ab308f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2e98cae572a568d35ce4a8e7df36092d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ec87e5ae-3f6c-40e4-b6b2-aba876e7937a", + "x-ms-client-request-id": "2e98cae572a568d35ce4a8e7df36092d", + "x-ms-correlation-request-id": "cc610fc4-c461-49dd-acd6-774592f844bc", + "x-ms-ratelimit-remaining-subscription-reads": "11785", + "x-ms-request-id": "29144f9d-9955-43cd-b670-c47fc4c0a419", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071914Z:cc610fc4-c461-49dd-acd6-774592f844bc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dca02e7af90e654665551f3ee78a744a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "91f3944b-e91a-4adf-8e26-c69b486b48bd", + "x-ms-client-request-id": "dca02e7af90e654665551f3ee78a744a", + "x-ms-correlation-request-id": "636c7792-5a46-4aad-86eb-2f6ed50be576", + "x-ms-ratelimit-remaining-subscription-reads": "11784", + "x-ms-request-id": "f4076840-9c4d-4d96-94f0-fe409170b007", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071916Z:636c7792-5a46-4aad-86eb-2f6ed50be576" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6038c9ba7508a51118e41ab3ab2081f7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "60d67e96-a2bf-422c-b7f5-ddb8c35c0643", + "x-ms-client-request-id": "6038c9ba7508a51118e41ab3ab2081f7", + "x-ms-correlation-request-id": "2ab7bc01-594c-4bae-a57c-f207b7bbff76", + "x-ms-ratelimit-remaining-subscription-reads": "11783", + "x-ms-request-id": "203515f0-e3e7-470e-99cf-dd5387f42b4f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071917Z:2ab7bc01-594c-4bae-a57c-f207b7bbff76" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0719a30e26e2ec588432c950539481d2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "76d3d5f3-b964-4a99-95f0-a13b0af1fffd", + "x-ms-client-request-id": "0719a30e26e2ec588432c950539481d2", + "x-ms-correlation-request-id": "3dfae835-21ed-4e3d-9603-951f29b664cc", + "x-ms-ratelimit-remaining-subscription-reads": "11782", + "x-ms-request-id": "dac658bc-ccc3-4441-ab45-f1fda0270d93", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071918Z:3dfae835-21ed-4e3d-9603-951f29b664cc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "152c5e70a8fe04241cfbc429de93b944", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "fbd475cc-e5ab-4046-95f0-eec6c30859b2", + "x-ms-client-request-id": "152c5e70a8fe04241cfbc429de93b944", + "x-ms-correlation-request-id": "8383e78d-5925-4d46-95c4-bae6bbe38153", + "x-ms-ratelimit-remaining-subscription-reads": "11781", + "x-ms-request-id": "6868e8fb-9be2-4873-be7f-3698b796421d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071919Z:8383e78d-5925-4d46-95c4-bae6bbe38153" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "433027d36c709367704cdcd5acc15283", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "1abe3118-1579-47e7-8ede-f800b4aad079", + "x-ms-client-request-id": "433027d36c709367704cdcd5acc15283", + "x-ms-correlation-request-id": "ab11c441-c053-4670-906e-e6a36c9cccf7", + "x-ms-ratelimit-remaining-subscription-reads": "11780", + "x-ms-request-id": "86ad8bae-e99c-4a7d-b460-732ac5305d89", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071921Z:ab11c441-c053-4670-906e-e6a36c9cccf7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4d4348636cf366f97e14ebe6622e0df0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d9bbb4d9-a80e-444f-8647-9ba6cfe6ff3e", + "x-ms-client-request-id": "4d4348636cf366f97e14ebe6622e0df0", + "x-ms-correlation-request-id": "14bb4bac-2bc8-4a79-ad05-0c9750004be1", + "x-ms-ratelimit-remaining-subscription-reads": "11779", + "x-ms-request-id": "09afebe3-7b48-484c-a4c0-679666707814", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071922Z:14bb4bac-2bc8-4a79-ad05-0c9750004be1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2b7d84793d640461f699a5b1cb4f585b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ca7d268d-add7-4928-b9cd-c6533f7a77f8", + "x-ms-client-request-id": "2b7d84793d640461f699a5b1cb4f585b", + "x-ms-correlation-request-id": "4deee919-b1c1-4c58-bd1c-359cee1372d6", + "x-ms-ratelimit-remaining-subscription-reads": "11778", + "x-ms-request-id": "a75e7938-752e-4304-ad94-50f292d3676a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071923Z:4deee919-b1c1-4c58-bd1c-359cee1372d6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "96c640a96b5067512dc9c55c80813141", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "583f459c-c713-4521-bde8-bac686a23ed2", + "x-ms-client-request-id": "96c640a96b5067512dc9c55c80813141", + "x-ms-correlation-request-id": "e582257d-5aff-44b5-8aaf-c0b60f32cc66", + "x-ms-ratelimit-remaining-subscription-reads": "11777", + "x-ms-request-id": "879f5c78-397c-4038-a7fe-0d5852d99123", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071925Z:e582257d-5aff-44b5-8aaf-c0b60f32cc66" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "275bec3f2643251fe73e565ac7479a2e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "c7460799-2033-47b0-ad42-b9037b0f1a4b", + "x-ms-client-request-id": "275bec3f2643251fe73e565ac7479a2e", + "x-ms-correlation-request-id": "a31cd028-dda7-4b88-9db5-3b04dd55bdf9", + "x-ms-ratelimit-remaining-subscription-reads": "11776", + "x-ms-request-id": "2f0a6275-1590-4524-a1f8-91e8d31fc359", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071926Z:a31cd028-dda7-4b88-9db5-3b04dd55bdf9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "213c8fbc76680da03316fd9a78048375", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "696a50ef-a0c5-4e66-b2fa-7a576426bb7b", + "x-ms-client-request-id": "213c8fbc76680da03316fd9a78048375", + "x-ms-correlation-request-id": "ef580644-b6fd-418d-be82-0968e702b951", + "x-ms-ratelimit-remaining-subscription-reads": "11775", + "x-ms-request-id": "bd2717df-3df0-426e-8bbd-dd4191dfeb2c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071927Z:ef580644-b6fd-418d-be82-0968e702b951" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "df72636730f4831721a0af1115f6a0e6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "84be6648-b808-401e-b159-90fe4ea0656f", + "x-ms-client-request-id": "df72636730f4831721a0af1115f6a0e6", + "x-ms-correlation-request-id": "7ab27672-d510-4eb5-a139-3cf117456eb6", + "x-ms-ratelimit-remaining-subscription-reads": "11774", + "x-ms-request-id": "4cacfed5-5a10-48c3-9271-64b08c6c931c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071929Z:7ab27672-d510-4eb5-a139-3cf117456eb6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f0a0962f1044c8d94b4df42d2884ade2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6ca3671d-a9ec-4b87-bf3d-b77423de848a", + "x-ms-client-request-id": "f0a0962f1044c8d94b4df42d2884ade2", + "x-ms-correlation-request-id": "9c042340-600e-439f-9652-c1095aedf77a", + "x-ms-ratelimit-remaining-subscription-reads": "11773", + "x-ms-request-id": "9c6798e2-be57-4ecb-95ee-f207b5ef1c21", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071930Z:9c042340-600e-439f-9652-c1095aedf77a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "63f2e0bbbad58b3a78b9ffc7c78ff83c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "862c4c53-93a8-4300-a29b-b37d7eb19dc5", + "x-ms-client-request-id": "63f2e0bbbad58b3a78b9ffc7c78ff83c", + "x-ms-correlation-request-id": "13169b18-1adc-48aa-b886-8a7b00b7a28f", + "x-ms-ratelimit-remaining-subscription-reads": "11772", + "x-ms-request-id": "77d60e3c-ef69-4b19-8fb0-eb37f6eef66c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071932Z:13169b18-1adc-48aa-b886-8a7b00b7a28f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e16b17769264573189a993a63be95b9c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "61f7874d-bad0-4a79-bfcd-cf3ba06e4d76", + "x-ms-client-request-id": "e16b17769264573189a993a63be95b9c", + "x-ms-correlation-request-id": "e3d93322-1228-4374-9a3e-34e3d12847e2", + "x-ms-ratelimit-remaining-subscription-reads": "11771", + "x-ms-request-id": "d3a164c7-eab2-4540-8797-c5500b610517", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071933Z:e3d93322-1228-4374-9a3e-34e3d12847e2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3556ccf33c0374105c14788b101101bc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "27be1e18-37c0-45ae-be8e-0dd1fa87639c", + "x-ms-client-request-id": "3556ccf33c0374105c14788b101101bc", + "x-ms-correlation-request-id": "7ea53040-7155-4cd6-ae82-9ea98d180320", + "x-ms-ratelimit-remaining-subscription-reads": "11770", + "x-ms-request-id": "fe9916a5-9c2b-4463-96b5-ff0fcf00af87", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071935Z:7ea53040-7155-4cd6-ae82-9ea98d180320" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "10b7b855cb19287daf9bd92b26934f8f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b8308685-5e08-47cb-9f0d-5646240dcaf5", + "x-ms-client-request-id": "10b7b855cb19287daf9bd92b26934f8f", + "x-ms-correlation-request-id": "588c7933-763e-48a9-ba35-21e8332bff1f", + "x-ms-ratelimit-remaining-subscription-reads": "11769", + "x-ms-request-id": "2a5b6c6e-c65c-4f8c-b0d7-fe0283150e7f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071936Z:588c7933-763e-48a9-ba35-21e8332bff1f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fad3625ec238393806f685501aa64678", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:19: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": "4aba8be7-2c9d-4d1f-81a6-951a068a8580", + "x-ms-client-request-id": "fad3625ec238393806f685501aa64678", + "x-ms-correlation-request-id": "f62797d6-d41c-487f-b545-8492311d1e64", + "x-ms-ratelimit-remaining-subscription-reads": "11768", + "x-ms-request-id": "28277ee4-6abc-4001-916f-16136b0f016f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071937Z:f62797d6-d41c-487f-b545-8492311d1e64" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8351d7a84a3228834f2d866862e54dc9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c39650ec-015d-4926-9b94-ce70869a3444", + "x-ms-client-request-id": "8351d7a84a3228834f2d866862e54dc9", + "x-ms-correlation-request-id": "d1a05b6c-b282-4703-9a59-76711be6dea4", + "x-ms-ratelimit-remaining-subscription-reads": "11767", + "x-ms-request-id": "af505655-e06e-4d27-a555-1733618205a8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071939Z:d1a05b6c-b282-4703-9a59-76711be6dea4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ad2ce9c5063e9283807d0923462d0e08", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "190f3640-69bb-4d01-8635-34bc3d2bef6a", + "x-ms-client-request-id": "ad2ce9c5063e9283807d0923462d0e08", + "x-ms-correlation-request-id": "b2c0d819-72b3-4953-9352-a9797431dc98", + "x-ms-ratelimit-remaining-subscription-reads": "11766", + "x-ms-request-id": "f7a49a9e-865b-49f7-9519-432aaaffdc78", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071940Z:b2c0d819-72b3-4953-9352-a9797431dc98" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4f836154cc41145ddfaaab0b3ccfd621", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "fa04f72f-bf12-4cf7-82c5-90010c167066", + "x-ms-client-request-id": "4f836154cc41145ddfaaab0b3ccfd621", + "x-ms-correlation-request-id": "d6f3281f-320f-49ec-beae-9580a16adae2", + "x-ms-ratelimit-remaining-subscription-reads": "11765", + "x-ms-request-id": "bfa8d0f5-13fd-4739-8d9f-63bfdb4d57ef", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071941Z:d6f3281f-320f-49ec-beae-9580a16adae2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "318bbba99879a13953be02b44060e221", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "53b81e1c-59de-4acd-bda6-6f9209858586", + "x-ms-client-request-id": "318bbba99879a13953be02b44060e221", + "x-ms-correlation-request-id": "7d8ef501-d403-4fa6-9045-f9e792923b55", + "x-ms-ratelimit-remaining-subscription-reads": "11764", + "x-ms-request-id": "f389fd4e-a0ee-44c0-8104-642ce6d71c1e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071943Z:7d8ef501-d403-4fa6-9045-f9e792923b55" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "01137d1ffe62f8888c18ce935b7855b0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1b5e3733-43fd-4720-b133-0e58aeb1cd33", + "x-ms-client-request-id": "01137d1ffe62f8888c18ce935b7855b0", + "x-ms-correlation-request-id": "07e1bb8a-f833-4595-9985-f89486d1c65f", + "x-ms-ratelimit-remaining-subscription-reads": "11763", + "x-ms-request-id": "39807780-cdd7-4f52-86b8-de799cc9ea17", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071944Z:07e1bb8a-f833-4595-9985-f89486d1c65f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8a79e8a6dca2bb8f28e1fb82c9a8d37f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ae747f9a-7c3c-4b91-b95e-86c2bd6232ff", + "x-ms-client-request-id": "8a79e8a6dca2bb8f28e1fb82c9a8d37f", + "x-ms-correlation-request-id": "219733de-6b9e-4f7e-8b61-0cb0d9aa05ab", + "x-ms-ratelimit-remaining-subscription-reads": "11762", + "x-ms-request-id": "f8fd87f8-fd7a-45d5-8d5b-f6bc79c0c45d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071945Z:219733de-6b9e-4f7e-8b61-0cb0d9aa05ab" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bfeb89c8d5bcaabe3392a461caa646db", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b9ac7d41-e210-4c73-a01b-f5c44d139b10", + "x-ms-client-request-id": "bfeb89c8d5bcaabe3392a461caa646db", + "x-ms-correlation-request-id": "1303e8a5-607b-4ba9-9274-27cf85f15c6a", + "x-ms-ratelimit-remaining-subscription-reads": "11761", + "x-ms-request-id": "3592dcc5-02db-4a87-b970-b61cb594b95e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071946Z:1303e8a5-607b-4ba9-9274-27cf85f15c6a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "570d526858e6427fed57d98102052fe3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6ae2ca72-83c6-4981-acf4-4b3480edce5e", + "x-ms-client-request-id": "570d526858e6427fed57d98102052fe3", + "x-ms-correlation-request-id": "337762c5-2b6e-47ad-938a-a90a0684dcb3", + "x-ms-ratelimit-remaining-subscription-reads": "11760", + "x-ms-request-id": "730ab340-54a2-4436-9180-819c9c67ed6b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071948Z:337762c5-2b6e-47ad-938a-a90a0684dcb3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d1cb4f44968cd0f32ace560f382ef181", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4db55e1c-c4da-431c-ae05-59f05ece7c15", + "x-ms-client-request-id": "d1cb4f44968cd0f32ace560f382ef181", + "x-ms-correlation-request-id": "2a47b06f-3eef-4720-b704-be0cf33c7e26", + "x-ms-ratelimit-remaining-subscription-reads": "11759", + "x-ms-request-id": "6be14038-2773-45c2-8fa4-2e3c2ef4bd02", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071949Z:2a47b06f-3eef-4720-b704-be0cf33c7e26" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "77191f9b7c9b709809a9d165fc3da82e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "191ef650-c7ee-4ae4-b652-e8c39878d5f4", + "x-ms-client-request-id": "77191f9b7c9b709809a9d165fc3da82e", + "x-ms-correlation-request-id": "59da09a3-1b13-488f-b2c4-3a04a3ba40ec", + "x-ms-ratelimit-remaining-subscription-reads": "11758", + "x-ms-request-id": "f7d3b2d7-a79f-4e34-9dc2-bc0a98b5099c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071950Z:59da09a3-1b13-488f-b2c4-3a04a3ba40ec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7b1cc16374dbd24f5e3c2d1701700abf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4890aef0-516d-405e-a08f-a6af0385282d", + "x-ms-client-request-id": "7b1cc16374dbd24f5e3c2d1701700abf", + "x-ms-correlation-request-id": "b4571bda-2336-4886-b60e-13f859ad8079", + "x-ms-ratelimit-remaining-subscription-reads": "11757", + "x-ms-request-id": "ab85cc10-358f-4493-8f8d-1d76f8278598", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071952Z:b4571bda-2336-4886-b60e-13f859ad8079" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e3e55766b7ebc847b65ac7e2c48ed4ec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "94531270-cd77-41b8-899b-54183fbea63a", + "x-ms-client-request-id": "e3e55766b7ebc847b65ac7e2c48ed4ec", + "x-ms-correlation-request-id": "57004e12-2853-49eb-a0fb-5ed22659d767", + "x-ms-ratelimit-remaining-subscription-reads": "11756", + "x-ms-request-id": "ae35e203-6be2-453e-86d0-1abc3c839514", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071953Z:57004e12-2853-49eb-a0fb-5ed22659d767" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "76ac2826751127a6cf47185f4f816e99", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5ed7294c-d2a0-40a7-bec0-d26e65dc1153", + "x-ms-client-request-id": "76ac2826751127a6cf47185f4f816e99", + "x-ms-correlation-request-id": "3c0bfcfc-1ae7-4f62-91d1-261ced343c94", + "x-ms-ratelimit-remaining-subscription-reads": "11755", + "x-ms-request-id": "988bac39-9627-4677-8a7e-2cd5f5e5b939", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071954Z:3c0bfcfc-1ae7-4f62-91d1-261ced343c94" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a5ff119fc557ab427954c580ac6d0ed0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "fa110866-1074-481a-a8d7-2f28b6d46fc5", + "x-ms-client-request-id": "a5ff119fc557ab427954c580ac6d0ed0", + "x-ms-correlation-request-id": "3a783e85-fd46-4090-9021-030b0407354f", + "x-ms-ratelimit-remaining-subscription-reads": "11754", + "x-ms-request-id": "8bce5dc2-a418-4475-a669-1af6990e09e4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071955Z:3a783e85-fd46-4090-9021-030b0407354f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d8f0406893c4f0aeb0be13a49fe87934", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b25a1ea1-5298-491f-8cf1-f367b27b5108", + "x-ms-client-request-id": "d8f0406893c4f0aeb0be13a49fe87934", + "x-ms-correlation-request-id": "68f99ca4-2063-4025-9ac2-9666d51590b6", + "x-ms-ratelimit-remaining-subscription-reads": "11753", + "x-ms-request-id": "5f357138-f12c-4a35-a3e3-7ae104f7be68", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071957Z:68f99ca4-2063-4025-9ac2-9666d51590b6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b2432eeb2e8f6194e500fcbdb0267a62", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8040e02c-337f-4d37-84a5-4c286c061675", + "x-ms-client-request-id": "b2432eeb2e8f6194e500fcbdb0267a62", + "x-ms-correlation-request-id": "27c96240-d5d7-4a4c-8448-1fdbac5e6f7b", + "x-ms-ratelimit-remaining-subscription-reads": "11752", + "x-ms-request-id": "6e960c1c-7d4f-41da-adc6-54cf0feb10d5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071958Z:27c96240-d5d7-4a4c-8448-1fdbac5e6f7b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0ef7483896910bd5630ef499b19e0c91", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c61a8100-4bfd-4c0f-8c64-4efdd09d4a58", + "x-ms-client-request-id": "0ef7483896910bd5630ef499b19e0c91", + "x-ms-correlation-request-id": "c5d4384a-a598-4df0-b66c-4d679f3f2163", + "x-ms-ratelimit-remaining-subscription-reads": "11751", + "x-ms-request-id": "9770821b-84c2-4f74-8ea3-085b0a6ac40c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071959Z:c5d4384a-a598-4df0-b66c-4d679f3f2163" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7e9490db5b293940ab8ef3c397f0408a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5e108bee-4515-410b-9179-74ea23cea0a2", + "x-ms-client-request-id": "7e9490db5b293940ab8ef3c397f0408a", + "x-ms-correlation-request-id": "a735efc6-8c16-411d-9f43-31632d22654f", + "x-ms-ratelimit-remaining-subscription-reads": "11750", + "x-ms-request-id": "4c40a4ff-60cc-466b-8640-280f502100aa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072000Z:a735efc6-8c16-411d-9f43-31632d22654f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "566bb0436af055a358384e8039fbaf46", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f37e39a6-2d3a-45d5-9dd8-a63f8dce9f77", + "x-ms-client-request-id": "566bb0436af055a358384e8039fbaf46", + "x-ms-correlation-request-id": "7cdc9a8f-1a38-4666-8a66-c8a94bdc80eb", + "x-ms-ratelimit-remaining-subscription-reads": "11749", + "x-ms-request-id": "3dcf5ee7-59f1-4ad3-99d6-355383d42592", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072002Z:7cdc9a8f-1a38-4666-8a66-c8a94bdc80eb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1fe26af4fc91dd3908bd6302a2127373", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9566664a-3eeb-49b1-aaec-70865bb71142", + "x-ms-client-request-id": "1fe26af4fc91dd3908bd6302a2127373", + "x-ms-correlation-request-id": "3ed78074-41aa-4559-858c-aaa232f29086", + "x-ms-ratelimit-remaining-subscription-reads": "11748", + "x-ms-request-id": "0071ec1d-f015-4a2d-8343-b96fe49c4e49", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072003Z:3ed78074-41aa-4559-858c-aaa232f29086" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "01556aceb53370a0ed3e25f10dbf00af", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e4022f76-1447-4c36-b9ca-82a20f5c39c6", + "x-ms-client-request-id": "01556aceb53370a0ed3e25f10dbf00af", + "x-ms-correlation-request-id": "2d607e48-a5f4-4353-8d36-ecb97ac0b3bd", + "x-ms-ratelimit-remaining-subscription-reads": "11747", + "x-ms-request-id": "c3d9af07-7ee8-4b86-8375-11d45539cb84", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072004Z:2d607e48-a5f4-4353-8d36-ecb97ac0b3bd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2ccfacdf200e47f9768e4e3306a1b246", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b6ef650d-edaf-4ddf-8712-1adf5c483521", + "x-ms-client-request-id": "2ccfacdf200e47f9768e4e3306a1b246", + "x-ms-correlation-request-id": "29853c38-b109-4989-9bad-ffc66ad2e361", + "x-ms-ratelimit-remaining-subscription-reads": "11746", + "x-ms-request-id": "213697e1-9c40-414e-a33c-e398759ddefa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072006Z:29853c38-b109-4989-9bad-ffc66ad2e361" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ceb2dbc4aea63e13c9713252d647d048", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d86a51a9-50cb-4544-a1f8-84ee0346f681", + "x-ms-client-request-id": "ceb2dbc4aea63e13c9713252d647d048", + "x-ms-correlation-request-id": "d74c9086-52a1-4d72-b37e-4a40eb28971a", + "x-ms-ratelimit-remaining-subscription-reads": "11745", + "x-ms-request-id": "89c500c3-f494-42ce-9b52-f92533e96ade", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072007Z:d74c9086-52a1-4d72-b37e-4a40eb28971a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f623b3bd4642ae64710e8aa5666d6a4b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7aae0654-013b-4149-a36f-506e1a15c11d", + "x-ms-client-request-id": "f623b3bd4642ae64710e8aa5666d6a4b", + "x-ms-correlation-request-id": "2f002b2a-47f4-4a8c-9b7c-b62e501ccad0", + "x-ms-ratelimit-remaining-subscription-reads": "11744", + "x-ms-request-id": "260ec2a5-3c4a-4dc3-b775-55eb16cb735a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072008Z:2f002b2a-47f4-4a8c-9b7c-b62e501ccad0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "312cdf8c310d30099991639ceea6702e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b2281277-0967-4487-8858-b4d9731b2dd1", + "x-ms-client-request-id": "312cdf8c310d30099991639ceea6702e", + "x-ms-correlation-request-id": "6295a98e-8fcb-4336-b246-f6d029873238", + "x-ms-ratelimit-remaining-subscription-reads": "11743", + "x-ms-request-id": "57831405-ace2-4566-acee-9140e9298d7f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072009Z:6295a98e-8fcb-4336-b246-f6d029873238" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "527606bebc7e7d0376045d97236ed75c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b072a63f-20b0-445b-a266-879ade6831b8", + "x-ms-client-request-id": "527606bebc7e7d0376045d97236ed75c", + "x-ms-correlation-request-id": "dc847fee-e9aa-4a2e-a962-4d1b6e055665", + "x-ms-ratelimit-remaining-subscription-reads": "11742", + "x-ms-request-id": "572aa21d-0d05-4a63-a045-0880a24057b0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072011Z:dc847fee-e9aa-4a2e-a962-4d1b6e055665" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f6c6e6079e1b8b3aaaf25db1e3c7bfca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "99dd3dad-4d76-49e0-a761-f34022ec91b0", + "x-ms-client-request-id": "f6c6e6079e1b8b3aaaf25db1e3c7bfca", + "x-ms-correlation-request-id": "678b65ed-bcd7-4055-9d6e-9daafeec926d", + "x-ms-ratelimit-remaining-subscription-reads": "11741", + "x-ms-request-id": "2f5b0ca4-cfa1-47b8-a885-319183e02ada", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072012Z:678b65ed-bcd7-4055-9d6e-9daafeec926d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "60e75b9d17f6cfcddbafba09d3710d2b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5dff5130-d89a-4350-9ba3-6a8d2188ff2b", + "x-ms-client-request-id": "60e75b9d17f6cfcddbafba09d3710d2b", + "x-ms-correlation-request-id": "99b1b6b0-d0ba-436a-95c5-d968d91a838a", + "x-ms-ratelimit-remaining-subscription-reads": "11740", + "x-ms-request-id": "c5c5371a-558a-4206-a81e-7378885befac", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072013Z:99b1b6b0-d0ba-436a-95c5-d968d91a838a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "089506b979e01f13cceaa88b5f529aae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1a929906-5aba-409d-b560-44ffe77c6b02", + "x-ms-client-request-id": "089506b979e01f13cceaa88b5f529aae", + "x-ms-correlation-request-id": "28a4f3f1-096c-4cfd-bec9-ffd2d360337f", + "x-ms-ratelimit-remaining-subscription-reads": "11739", + "x-ms-request-id": "4efcc63d-faaa-4f4d-8223-b64f77405448", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072015Z:28a4f3f1-096c-4cfd-bec9-ffd2d360337f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c7fa92447786f06518f61b6ce330b738", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d79a4f93-be0c-462e-9489-e3bb3ac532e2", + "x-ms-client-request-id": "c7fa92447786f06518f61b6ce330b738", + "x-ms-correlation-request-id": "0dafe908-3f9a-49c1-8298-a90c5e51a226", + "x-ms-ratelimit-remaining-subscription-reads": "11738", + "x-ms-request-id": "fd58aae2-02bd-409a-bbcc-1b8c3aa429f2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072016Z:0dafe908-3f9a-49c1-8298-a90c5e51a226" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ddf732e5b73223ea48c7940c6e417088", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "75d9f3dc-715a-4755-899f-cb21619ec633", + "x-ms-client-request-id": "ddf732e5b73223ea48c7940c6e417088", + "x-ms-correlation-request-id": "86acba41-a839-4e71-a221-765bb0a2ff21", + "x-ms-ratelimit-remaining-subscription-reads": "11737", + "x-ms-request-id": "d925bc31-94d4-416a-9b24-a568983ed6b7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072017Z:86acba41-a839-4e71-a221-765bb0a2ff21" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "41c50b14457742a4a0a4efe95ea73b9b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "62b58abd-e9e0-4728-ae43-5f363347d801", + "x-ms-client-request-id": "41c50b14457742a4a0a4efe95ea73b9b", + "x-ms-correlation-request-id": "36c18b65-2d73-42ad-ae9c-a4c000d5fb74", + "x-ms-ratelimit-remaining-subscription-reads": "11736", + "x-ms-request-id": "2a2c8516-d427-4f8c-bf2c-d9ecc07b12c1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072018Z:36c18b65-2d73-42ad-ae9c-a4c000d5fb74" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2da66f32bc5b8c7ca8d67fbee25982d7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "111cab19-0c58-4018-b4cb-9cf9c2c973f4", + "x-ms-client-request-id": "2da66f32bc5b8c7ca8d67fbee25982d7", + "x-ms-correlation-request-id": "c2887050-fd55-4f49-bf84-4ef7780a5cb3", + "x-ms-ratelimit-remaining-subscription-reads": "11735", + "x-ms-request-id": "5479e90b-9fad-4fa3-9165-0f5abab136da", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072020Z:c2887050-fd55-4f49-bf84-4ef7780a5cb3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d8579286766b9fc18db53c8dc701c5a0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "dbb2988f-c591-4902-9765-620f6d0dea43", + "x-ms-client-request-id": "d8579286766b9fc18db53c8dc701c5a0", + "x-ms-correlation-request-id": "e5b397fa-96ce-4ee8-8ba1-028405a9c86f", + "x-ms-ratelimit-remaining-subscription-reads": "11734", + "x-ms-request-id": "8fdff9ca-e1e9-429d-a195-51ee1709fc45", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072021Z:e5b397fa-96ce-4ee8-8ba1-028405a9c86f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fed9f88c439a582d8f3899a0c5e55f47", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "af789673-2a3d-4b10-9761-0e3707d40c2f", + "x-ms-client-request-id": "fed9f88c439a582d8f3899a0c5e55f47", + "x-ms-correlation-request-id": "6d4c3f00-78e3-47b1-b71f-648eaf860958", + "x-ms-ratelimit-remaining-subscription-reads": "11733", + "x-ms-request-id": "e8ec2395-c7e1-47a5-b940-cea59b431ebf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072023Z:6d4c3f00-78e3-47b1-b71f-648eaf860958" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cc6318226350bc30ae079fa680eec4a7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "30aef3d2-8a0e-4995-8565-c12da7ec8776", + "x-ms-client-request-id": "cc6318226350bc30ae079fa680eec4a7", + "x-ms-correlation-request-id": "d79c55a9-9343-48fd-a4ed-589c70ce0e02", + "x-ms-ratelimit-remaining-subscription-reads": "11732", + "x-ms-request-id": "2bef7396-fb16-4f7f-9be5-57b73495f62d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072024Z:d79c55a9-9343-48fd-a4ed-589c70ce0e02" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ea32df118380423c65ff4832dd21d9a7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "506e739b-c4b2-4e05-99eb-a930f6ab656d", + "x-ms-client-request-id": "ea32df118380423c65ff4832dd21d9a7", + "x-ms-correlation-request-id": "d1782878-5566-4f8e-b651-b30eef9eda29", + "x-ms-ratelimit-remaining-subscription-reads": "11731", + "x-ms-request-id": "a3bdffcb-a057-4da8-87e7-b267d9faec9e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072025Z:d1782878-5566-4f8e-b651-b30eef9eda29" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "af6bf455f99d2850c81d5093a387d7a1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "2d6e648c-93ed-474a-8e04-43ab356578ba", + "x-ms-client-request-id": "af6bf455f99d2850c81d5093a387d7a1", + "x-ms-correlation-request-id": "56aa5313-c40e-415f-a6be-2eed5b944fc5", + "x-ms-ratelimit-remaining-subscription-reads": "11730", + "x-ms-request-id": "8f338940-30c8-45b7-bb72-623247caed4b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072027Z:56aa5313-c40e-415f-a6be-2eed5b944fc5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e68ff27375b39fc7db2066511bfdde8c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2debb04e-698a-43d5-b4e3-731d00ec78ff", + "x-ms-client-request-id": "e68ff27375b39fc7db2066511bfdde8c", + "x-ms-correlation-request-id": "1aad5f3d-6562-40ca-9332-063eb356f00b", + "x-ms-ratelimit-remaining-subscription-reads": "11729", + "x-ms-request-id": "e5339408-ae5a-4c12-9d49-706532bc82c7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072028Z:1aad5f3d-6562-40ca-9332-063eb356f00b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8b50f72d158218098f09216332a99ede", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1ee0c024-b247-424b-a8c3-06639d228ed2", + "x-ms-client-request-id": "8b50f72d158218098f09216332a99ede", + "x-ms-correlation-request-id": "ae9e9e89-24e7-4074-bceb-b50b20c47feb", + "x-ms-ratelimit-remaining-subscription-reads": "11728", + "x-ms-request-id": "f50e85e1-9139-45cb-b116-8db4320887c7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072029Z:ae9e9e89-24e7-4074-bceb-b50b20c47feb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ebbfa627f392e0f42dcbd37c92ff0dcb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c2aa552b-2fbe-4560-aa25-0bc15f87c419", + "x-ms-client-request-id": "ebbfa627f392e0f42dcbd37c92ff0dcb", + "x-ms-correlation-request-id": "dd4e6b9f-d407-47c3-8ed4-6e33ed62df9b", + "x-ms-ratelimit-remaining-subscription-reads": "11727", + "x-ms-request-id": "86b29584-991a-4e6e-bb92-3f069f39871c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072030Z:dd4e6b9f-d407-47c3-8ed4-6e33ed62df9b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ac65c33e4b365e1ee87657a953646c32", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "96688763-cb92-495b-9b38-803c1d441541", + "x-ms-client-request-id": "ac65c33e4b365e1ee87657a953646c32", + "x-ms-correlation-request-id": "cfaba771-0149-4752-9074-905921c71f2d", + "x-ms-ratelimit-remaining-subscription-reads": "11726", + "x-ms-request-id": "54921408-19d5-41e0-a9d5-68c2e5741bc5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072032Z:cfaba771-0149-4752-9074-905921c71f2d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "74298882f33d3afa02705db6418d868f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "74bc4be6-1097-47e7-b611-576ed1f58116", + "x-ms-client-request-id": "74298882f33d3afa02705db6418d868f", + "x-ms-correlation-request-id": "c19f4a30-21f9-46f1-b158-067b1c53312a", + "x-ms-ratelimit-remaining-subscription-reads": "11725", + "x-ms-request-id": "99381fc7-ee17-4c11-b8cf-87d7373f0905", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072034Z:c19f4a30-21f9-46f1-b158-067b1c53312a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6f2456fcf243dba78861021b9b4b8cc9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0b31f430-75a6-45e1-95ba-97e1aa25e3e9", + "x-ms-client-request-id": "6f2456fcf243dba78861021b9b4b8cc9", + "x-ms-correlation-request-id": "0656d919-7495-4a42-bf1a-9056324f08c1", + "x-ms-ratelimit-remaining-subscription-reads": "11724", + "x-ms-request-id": "3ebeaba1-194c-4750-8cf6-5349213fa117", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072035Z:0656d919-7495-4a42-bf1a-9056324f08c1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "09faa05f98d54b8dc92ba9c5ed671c5b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9f7a6c33-6ab5-49c2-aebb-fd6e644b5256", + "x-ms-client-request-id": "09faa05f98d54b8dc92ba9c5ed671c5b", + "x-ms-correlation-request-id": "2ff93135-a1a3-4211-9175-4011df4cb304", + "x-ms-ratelimit-remaining-subscription-reads": "11723", + "x-ms-request-id": "48560944-224b-4d50-a906-22c68a8ce0e6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072036Z:2ff93135-a1a3-4211-9175-4011df4cb304" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fdadc7f0fd3f90efe04decdcf0df9eb7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "be073cab-cb2e-4142-a588-6ad842baea1f", + "x-ms-client-request-id": "fdadc7f0fd3f90efe04decdcf0df9eb7", + "x-ms-correlation-request-id": "2cda1ce1-5803-4083-8f78-3ec7d7bb4b58", + "x-ms-ratelimit-remaining-subscription-reads": "11722", + "x-ms-request-id": "76f81456-b72b-4096-88c2-4d3a64bf9f6a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072038Z:2cda1ce1-5803-4083-8f78-3ec7d7bb4b58" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a05794e47c9263bac8d9a51748e2ed20", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c21922ef-b798-43c0-83c2-203d05111279", + "x-ms-client-request-id": "a05794e47c9263bac8d9a51748e2ed20", + "x-ms-correlation-request-id": "9cc361f5-99ac-4c83-b02a-a30595e22a87", + "x-ms-ratelimit-remaining-subscription-reads": "11721", + "x-ms-request-id": "56fe09e2-3968-4464-a529-6a38b6ff6ad6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072039Z:9cc361f5-99ac-4c83-b02a-a30595e22a87" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d42aa7448e9e6289b16a2888acb05bea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "536b5c72-3ea4-41fa-b9da-e094a0a46313", + "x-ms-client-request-id": "d42aa7448e9e6289b16a2888acb05bea", + "x-ms-correlation-request-id": "e7d5b1af-3a48-4f3f-9747-b187ba319736", + "x-ms-ratelimit-remaining-subscription-reads": "11720", + "x-ms-request-id": "5409f813-b69b-4625-aeca-8e319c60408e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072040Z:e7d5b1af-3a48-4f3f-9747-b187ba319736" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "59e0f28c7b1074c80d49356657d847fe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "402d3f2d-aa68-41bb-ad85-95bb7c691b77", + "x-ms-client-request-id": "59e0f28c7b1074c80d49356657d847fe", + "x-ms-correlation-request-id": "181f4dcd-b162-4d91-aece-1a33d69971df", + "x-ms-ratelimit-remaining-subscription-reads": "11719", + "x-ms-request-id": "eb1a47f9-97d8-4f94-90f8-fd730a781c45", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072042Z:181f4dcd-b162-4d91-aece-1a33d69971df" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4898cc5fcab456190af4ef285431b717", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c9725334-15d6-401d-b8aa-af7c4e6da310", + "x-ms-client-request-id": "4898cc5fcab456190af4ef285431b717", + "x-ms-correlation-request-id": "5ac944e1-ff81-47d2-8836-e01795cbd2f7", + "x-ms-ratelimit-remaining-subscription-reads": "11718", + "x-ms-request-id": "462c1aca-2a86-41ec-b15c-1a5a89f1209b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072043Z:5ac944e1-ff81-47d2-8836-e01795cbd2f7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "568abb7d9401c80fdeb6c65459230bd8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "45e9189e-23a4-47a2-a503-82307af17e09", + "x-ms-client-request-id": "568abb7d9401c80fdeb6c65459230bd8", + "x-ms-correlation-request-id": "cea288a1-1e64-4674-b4b9-25003d835fcf", + "x-ms-ratelimit-remaining-subscription-reads": "11717", + "x-ms-request-id": "873911a9-f3ac-45ba-b964-82784b94eef7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072044Z:cea288a1-1e64-4674-b4b9-25003d835fcf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e0282a221218c235d98a4e1b8b9f20dc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f7714365-e515-4e19-8510-b67ebe32cb4f", + "x-ms-client-request-id": "e0282a221218c235d98a4e1b8b9f20dc", + "x-ms-correlation-request-id": "d0e25f36-90a6-4f4d-9cb9-e92a709593c8", + "x-ms-ratelimit-remaining-subscription-reads": "11716", + "x-ms-request-id": "5c6cf7ad-3495-4b81-984b-7b7ddc898518", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072045Z:d0e25f36-90a6-4f4d-9cb9-e92a709593c8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9be81d92f14dcbfcbccf69fd04c4fde7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "082413e1-de16-4332-a562-2616412680fb", + "x-ms-client-request-id": "9be81d92f14dcbfcbccf69fd04c4fde7", + "x-ms-correlation-request-id": "950f0bf1-dad3-4f8d-b1d9-d76b4ad5a9b0", + "x-ms-ratelimit-remaining-subscription-reads": "11715", + "x-ms-request-id": "7922e3c3-71f4-40d1-9130-24676912a5b3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072047Z:950f0bf1-dad3-4f8d-b1d9-d76b4ad5a9b0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "290616e9d7086bff86c87c7745f43c3e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3bcf6096-3679-48d6-9334-9471bff5371e", + "x-ms-client-request-id": "290616e9d7086bff86c87c7745f43c3e", + "x-ms-correlation-request-id": "d2191933-8c9b-4ef1-85ba-21ac436cf254", + "x-ms-ratelimit-remaining-subscription-reads": "11714", + "x-ms-request-id": "28c4fc04-8c68-491c-9668-7270064695bd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072048Z:d2191933-8c9b-4ef1-85ba-21ac436cf254" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3bc2ea966f3a308b2d5d2348a837be14", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "818abb5e-78a4-4a9e-bb60-ea35fe856922", + "x-ms-client-request-id": "3bc2ea966f3a308b2d5d2348a837be14", + "x-ms-correlation-request-id": "041c48b2-f784-4d63-8e6f-31c5cfc6b9fd", + "x-ms-ratelimit-remaining-subscription-reads": "11713", + "x-ms-request-id": "8336c3c4-5257-4f77-ba8b-64f3154099b1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072049Z:041c48b2-f784-4d63-8e6f-31c5cfc6b9fd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7431678df699bad31d7d1584748585c7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "72c89077-26c3-4bcc-888b-aedcec94aa3f", + "x-ms-client-request-id": "7431678df699bad31d7d1584748585c7", + "x-ms-correlation-request-id": "9aeb604e-dc9c-493d-8cef-f089bd1f8202", + "x-ms-ratelimit-remaining-subscription-reads": "11712", + "x-ms-request-id": "59e75040-adbf-4285-ae9d-70c5e7d4e5f3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072050Z:9aeb604e-dc9c-493d-8cef-f089bd1f8202" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "19672a92c1017aad8bd5fcaab3b6c24e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1ebb20dd-3d0f-4bd8-abbd-762e4e6ec165", + "x-ms-client-request-id": "19672a92c1017aad8bd5fcaab3b6c24e", + "x-ms-correlation-request-id": "c2de447d-9d4c-4924-a4fe-5d314ab270c8", + "x-ms-ratelimit-remaining-subscription-reads": "11711", + "x-ms-request-id": "338e95ca-0485-4ba8-8baf-89a70673f48c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072052Z:c2de447d-9d4c-4924-a4fe-5d314ab270c8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "deea680ac7c2a0a516071ebc5a06bba8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "dc70b48e-0c29-48b4-ab9a-0d9e01f6e32d", + "x-ms-client-request-id": "deea680ac7c2a0a516071ebc5a06bba8", + "x-ms-correlation-request-id": "3086938e-0020-4c60-b80c-130aa17bae7b", + "x-ms-ratelimit-remaining-subscription-reads": "11710", + "x-ms-request-id": "fb1b6638-d230-4658-a157-1ff2be678b5e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072053Z:3086938e-0020-4c60-b80c-130aa17bae7b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7db65cd8a4d0cb13bab7e9c3f9280766", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "ed8a63bd-56ec-46f3-9793-08aef5a39180", + "x-ms-client-request-id": "7db65cd8a4d0cb13bab7e9c3f9280766", + "x-ms-correlation-request-id": "2a3f40ea-7f1b-4661-84f3-2ed1b607648d", + "x-ms-ratelimit-remaining-subscription-reads": "11709", + "x-ms-request-id": "bb62f928-ed5c-4656-a919-7ce0e44cafae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072054Z:2a3f40ea-7f1b-4661-84f3-2ed1b607648d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0c7ac7bba79bca0585c703f9a3f01f84", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b7bd026e-485a-400c-a1ff-26f83bb11bdc", + "x-ms-client-request-id": "0c7ac7bba79bca0585c703f9a3f01f84", + "x-ms-correlation-request-id": "679ddefb-a0fb-4f98-811a-1770102d427d", + "x-ms-ratelimit-remaining-subscription-reads": "11708", + "x-ms-request-id": "3be1ba2a-eb8d-4800-a1f0-68ec95af5468", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072056Z:679ddefb-a0fb-4f98-811a-1770102d427d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "57d2531a4400667e541e240adee1a6ee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1711de5c-0a47-4de9-b24b-19f0e6f14cbc", + "x-ms-client-request-id": "57d2531a4400667e541e240adee1a6ee", + "x-ms-correlation-request-id": "c61bb341-7266-4d85-bd9f-3991967f662f", + "x-ms-ratelimit-remaining-subscription-reads": "11707", + "x-ms-request-id": "6ada2b18-9700-434d-b348-812970a7e025", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072057Z:c61bb341-7266-4d85-bd9f-3991967f662f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9300b700ae8c300d56ebf809a01928c9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "d7aeb64f-64e5-46ce-aaf6-c2fa392943b4", + "x-ms-client-request-id": "9300b700ae8c300d56ebf809a01928c9", + "x-ms-correlation-request-id": "9d3ebfca-6633-419e-aa87-3b95626c6462", + "x-ms-ratelimit-remaining-subscription-reads": "11706", + "x-ms-request-id": "6d6d7bf7-1cfc-4ca9-b638-f1ea4ab19278", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072059Z:9d3ebfca-6633-419e-aa87-3b95626c6462" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a5a96598b05677664813b87c83faeca4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "64b341db-d454-4794-af61-a465b85a2d54", + "x-ms-client-request-id": "a5a96598b05677664813b87c83faeca4", + "x-ms-correlation-request-id": "2d9dee6b-9b9e-4574-8ad1-a1c320542c2b", + "x-ms-ratelimit-remaining-subscription-reads": "11705", + "x-ms-request-id": "89436950-a69d-45f0-9093-b04cfd5485f0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072100Z:2d9dee6b-9b9e-4574-8ad1-a1c320542c2b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ecf914208cf06bf746a100154b74c53b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2a3cc4bd-e9bd-4941-9bac-e1fd37373b85", + "x-ms-client-request-id": "ecf914208cf06bf746a100154b74c53b", + "x-ms-correlation-request-id": "b0077c22-e0c3-4989-a787-1d65f7cccfa8", + "x-ms-ratelimit-remaining-subscription-reads": "11704", + "x-ms-request-id": "bf044dc8-f627-43dc-a209-18c21dd14126", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072101Z:b0077c22-e0c3-4989-a787-1d65f7cccfa8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "78725af60037509750894a79f690ad5c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "61654487-cb01-4e24-98c1-dd52f4d7b33f", + "x-ms-client-request-id": "78725af60037509750894a79f690ad5c", + "x-ms-correlation-request-id": "5de5084b-eb87-4851-a0a9-4a06138ad6b6", + "x-ms-ratelimit-remaining-subscription-reads": "11703", + "x-ms-request-id": "7c2b61fa-4697-4eef-9455-1341b62df278", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072103Z:5de5084b-eb87-4851-a0a9-4a06138ad6b6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8be853ff3b200bd96e3e5fb4af512bd4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "573c51f0-4ede-45e0-8fd2-52c4bcdcd65b", + "x-ms-client-request-id": "8be853ff3b200bd96e3e5fb4af512bd4", + "x-ms-correlation-request-id": "43f8b021-5c17-4eee-99d1-889938310e84", + "x-ms-ratelimit-remaining-subscription-reads": "11702", + "x-ms-request-id": "7b798c7f-3c6b-43e0-9bbe-0ebf87b96ca1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072105Z:43f8b021-5c17-4eee-99d1-889938310e84" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "28867c4e7487206c7da89b66427e74b6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b69b5cb2-1846-40c5-8f9d-0a59e3848257", + "x-ms-client-request-id": "28867c4e7487206c7da89b66427e74b6", + "x-ms-correlation-request-id": "9d62fded-5992-4662-9cf0-5a503d9725ea", + "x-ms-ratelimit-remaining-subscription-reads": "11701", + "x-ms-request-id": "a2fc311f-87e2-4c7a-9650-88b78b4c96b6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072106Z:9d62fded-5992-4662-9cf0-5a503d9725ea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f816a3f4398cba1a81670af8a1e3a0ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f966c218-c4ec-44c0-b041-1dcd467fa19e", + "x-ms-client-request-id": "f816a3f4398cba1a81670af8a1e3a0ff", + "x-ms-correlation-request-id": "b1a7e1c0-1a4e-4265-bb65-428610b59b1b", + "x-ms-ratelimit-remaining-subscription-reads": "11700", + "x-ms-request-id": "b45722eb-937c-4a24-addf-019222ea1b2e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072107Z:b1a7e1c0-1a4e-4265-bb65-428610b59b1b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/52e0b492-2ff1-456b-8b93-fce5e896d9f8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7a2a765e84098ad4e6c70e77a072c9ef", + "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, 08 Sep 2021 07:21: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": "45b17f5b-66c4-48b3-9e7c-f82f56522910", + "x-ms-client-request-id": "7a2a765e84098ad4e6c70e77a072c9ef", + "x-ms-correlation-request-id": "40be9da8-4d9e-4b8a-ab5a-9f0da1dd7236", + "x-ms-ratelimit-remaining-subscription-reads": "11699", + "x-ms-request-id": "4946a45c-bde5-4d38-bee6-bb21f78ef356", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072109Z:40be9da8-4d9e-4b8a-ab5a-9f0da1dd7236" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-5223?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0bbfa8ca333b144761cba62069747f99", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1536", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:21:09 GMT", + "ETag": "W/\u002236cb58ad-447b-4522-b65a-0a9acab98613\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": "cad64472-a1dc-4c39-aa60-e1097c701a16", + "x-ms-client-request-id": "0bbfa8ca333b144761cba62069747f99", + "x-ms-correlation-request-id": "074b44e2-b9f0-4e06-aa4b-50b9f28e6087", + "x-ms-ratelimit-remaining-subscription-reads": "11698", + "x-ms-request-id": "0113e34a-491e-4309-b9ab-5957d4f91c3f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072109Z:074b44e2-b9f0-4e06-aa4b-50b9f28e6087" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022bastion-5223\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-5223\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002236cb58ad-447b-4522-b65a-0a9acab98613\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022dnsName\u0022: \u0022bst-66b83842-9d42-4c8c-bb09-72c908edafa2.bastion.azure.com\u0022,\r\n", + " \u0022scaleUnits\u0022: 2,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022bastionIPConfig-8440\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-5223/bastionHostIpConfigurations/bastionIPConfig-8440\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002236cb58ad-447b-4522-b65a-0a9acab98613\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts/bastionHostIpConfigurations\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/bastionrg-7251/providers/Microsoft.Network/publicIPAddresses/ip-3184\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121/subnets/AzureBastionSubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022bastionShareableLinks\u0022: {}\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-5223?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cc089b07fa536faccf8b11c42aa31a0f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1536", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:21:09 GMT", + "ETag": "W/\u002236cb58ad-447b-4522-b65a-0a9acab98613\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": "1fcfd508-1b82-4e54-b006-4d763edf4d22", + "x-ms-client-request-id": "cc089b07fa536faccf8b11c42aa31a0f", + "x-ms-correlation-request-id": "828da672-399f-4dbf-894f-748a1a39115f", + "x-ms-ratelimit-remaining-subscription-reads": "11697", + "x-ms-request-id": "0e707ba4-eeba-493c-96cb-6d975781ec25", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072109Z:828da672-399f-4dbf-894f-748a1a39115f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022bastion-5223\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-5223\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002236cb58ad-447b-4522-b65a-0a9acab98613\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022dnsName\u0022: \u0022bst-66b83842-9d42-4c8c-bb09-72c908edafa2.bastion.azure.com\u0022,\r\n", + " \u0022scaleUnits\u0022: 2,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022bastionIPConfig-8440\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-5223/bastionHostIpConfigurations/bastionIPConfig-8440\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002236cb58ad-447b-4522-b65a-0a9acab98613\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts/bastionHostIpConfigurations\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/bastionrg-7251/providers/Microsoft.Network/publicIPAddresses/ip-3184\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121/subnets/AzureBastionSubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022bastionShareableLinks\u0022: {}\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-52231?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f82e1a9e94232ac42e16183edeb42072", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "230", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:21:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "4daab7f6-754c-4a8c-bc24-7cb545cd7c6c", + "x-ms-failure-cause": "gateway", + "x-ms-request-id": "4daab7f6-754c-4a8c-bc24-7cb545cd7c6c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072109Z:4daab7f6-754c-4a8c-bc24-7cb545cd7c6c" + }, + "ResponseBody": { + "error": { + "code": "ResourceNotFound", + "message": "The Resource \u0027Microsoft.Network/bastionHosts/bastion-52231\u0027 under resource group \u0027bastionrg-7251\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "04707548fc69d09cfb503cb02282eabe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1697", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:21:10 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": "dd72f8dc-942f-4d72-8501-916d67d5a1da", + "x-ms-client-request-id": "04707548fc69d09cfb503cb02282eabe", + "x-ms-correlation-request-id": "ef53f5d8-626d-4277-b5ae-cb5bc6946f50", + "x-ms-ratelimit-remaining-subscription-reads": "11695", + "x-ms-request-id": "11a9a1fb-439b-4deb-b952-acbc6c5eaaaa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072110Z:ef53f5d8-626d-4277-b5ae-cb5bc6946f50" + }, + "ResponseBody": [ + "{\r\n", + " \u0022value\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022bastion-5223\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-5223\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002236cb58ad-447b-4522-b65a-0a9acab98613\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022dnsName\u0022: \u0022bst-66b83842-9d42-4c8c-bb09-72c908edafa2.bastion.azure.com\u0022,\r\n", + " \u0022scaleUnits\u0022: 2,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022bastionIPConfig-8440\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-5223/bastionHostIpConfigurations/bastionIPConfig-8440\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002236cb58ad-447b-4522-b65a-0a9acab98613\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts/bastionHostIpConfigurations\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/bastionrg-7251/providers/Microsoft.Network/publicIPAddresses/ip-3184\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121/subnets/AzureBastionSubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022bastionShareableLinks\u0022: {}\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022\r\n", + " }\r\n", + " }\r\n", + " ]\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-5223?api-version=2021-02-01", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4f8297b186457276d7dd9d3de16e911b", + "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/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 08 Sep 2021 07:21:10 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operationResults/471e3b04-4b08-4bbd-8967-69e97d42cd6f?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": "9c67345d-4cb4-4dde-84ea-8769d18afeed", + "x-ms-client-request-id": "4f8297b186457276d7dd9d3de16e911b", + "x-ms-correlation-request-id": "2b6b7653-98b7-4c04-be3f-84190694c0a3", + "x-ms-ratelimit-remaining-subscription-deletes": "14998", + "x-ms-request-id": "471e3b04-4b08-4bbd-8967-69e97d42cd6f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072110Z:2b6b7653-98b7-4c04-be3f-84190694c0a3" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "478c592cd131c22cfefd2d8c5f5eee8d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:21: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": "05853ca7-15f0-481a-a031-6138927c348c", + "x-ms-client-request-id": "478c592cd131c22cfefd2d8c5f5eee8d", + "x-ms-correlation-request-id": "f03ae4b5-7433-42d9-b5ba-43ddfbbcc8e4", + "x-ms-ratelimit-remaining-subscription-reads": "11694", + "x-ms-request-id": "59f373c2-3580-4200-99e6-a41db7fb66d1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072111Z:f03ae4b5-7433-42d9-b5ba-43ddfbbcc8e4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "834521be34069c8bf1e0d1e789a31ac2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:21: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": "91e932b9-162b-4c03-a238-f36c860c17e7", + "x-ms-client-request-id": "834521be34069c8bf1e0d1e789a31ac2", + "x-ms-correlation-request-id": "5c97f8ae-8f3c-4f41-a560-dd0be03152f3", + "x-ms-ratelimit-remaining-subscription-reads": "11693", + "x-ms-request-id": "10364210-dc84-49a5-a763-24b21c670504", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072112Z:5c97f8ae-8f3c-4f41-a560-dd0be03152f3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8711f0d54ae298e971b9b635e719411f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:21: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": "3b169c42-f2da-4457-85d7-9deecd717d99", + "x-ms-client-request-id": "8711f0d54ae298e971b9b635e719411f", + "x-ms-correlation-request-id": "b6a1d762-f1b7-449d-a21f-050a24bb5f70", + "x-ms-ratelimit-remaining-subscription-reads": "11692", + "x-ms-request-id": "da7a3316-b9e7-4ede-963d-ef4dc4aba269", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072113Z:b6a1d762-f1b7-449d-a21f-050a24bb5f70" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "36146f7084cef7a6cef055500045395b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:21:14 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": "07ceaf1b-137b-464e-99b8-e4043b198cf6", + "x-ms-client-request-id": "36146f7084cef7a6cef055500045395b", + "x-ms-correlation-request-id": "1f12dc8d-afcb-4d93-939e-c02c5c49fad3", + "x-ms-ratelimit-remaining-subscription-reads": "11691", + "x-ms-request-id": "2205d581-f393-4c8a-8e4b-e0245fe1764e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072115Z:1f12dc8d-afcb-4d93-939e-c02c5c49fad3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6eb66be2664d73aa38ad114c7d55b4d7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:21: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": "e758f4a8-9019-42e2-9309-6e4df45a51df", + "x-ms-client-request-id": "6eb66be2664d73aa38ad114c7d55b4d7", + "x-ms-correlation-request-id": "6dd237eb-5507-4790-8e4c-edf831b48786", + "x-ms-ratelimit-remaining-subscription-reads": "11690", + "x-ms-request-id": "9802c7f7-ada7-4d5f-ba1c-b9df09380150", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072116Z:6dd237eb-5507-4790-8e4c-edf831b48786" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1977b19fe38e50f44a19b9f2f498982c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:21:17 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": "1d982fcb-e52f-428e-bf04-db872598e49c", + "x-ms-client-request-id": "1977b19fe38e50f44a19b9f2f498982c", + "x-ms-correlation-request-id": "f04cce9c-f36d-4007-a0d9-e32a8e325a29", + "x-ms-ratelimit-remaining-subscription-reads": "11689", + "x-ms-request-id": "21a80668-3835-418c-b5f5-260acd380786", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072117Z:f04cce9c-f36d-4007-a0d9-e32a8e325a29" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7c535a80d26209d2c5a1fe2173597978", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:21:18 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": "0f415b57-dc70-4f01-8fc1-c9acfb449eaf", + "x-ms-client-request-id": "7c535a80d26209d2c5a1fe2173597978", + "x-ms-correlation-request-id": "a3cd4d0a-9e51-4ce4-a7b2-00b74c328506", + "x-ms-ratelimit-remaining-subscription-reads": "11688", + "x-ms-request-id": "a0166bdd-570a-487a-b175-98f6cfb4bc98", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072118Z:a3cd4d0a-9e51-4ce4-a7b2-00b74c328506" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4eb17e3b20cefecd76662433acb87ea0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:21:19 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": "ca57df68-d3d1-4807-8470-c6b7f94d6938", + "x-ms-client-request-id": "4eb17e3b20cefecd76662433acb87ea0", + "x-ms-correlation-request-id": "b87d96dc-c9b4-4c98-963d-cf240578e423", + "x-ms-ratelimit-remaining-subscription-reads": "11687", + "x-ms-request-id": "567661e8-121c-47e7-aeb3-4d9f79d957db", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072120Z:b87d96dc-c9b4-4c98-963d-cf240578e423" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "23cce5143802cc74df6d54ece5d2ddf1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:21:21 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": "95d59672-24a8-41b3-825a-af9c216da8be", + "x-ms-client-request-id": "23cce5143802cc74df6d54ece5d2ddf1", + "x-ms-correlation-request-id": "0f4b838c-d7e6-4649-8eee-d1a830525f61", + "x-ms-ratelimit-remaining-subscription-reads": "11686", + "x-ms-request-id": "ab4fca5f-4e08-4ce8-814e-5642ecbdccbd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072121Z:0f4b838c-d7e6-4649-8eee-d1a830525f61" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "76b641a049e6605e8c5405fcae9e5d0c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9834679c-60ee-47a1-acdf-967492c27246", + "x-ms-client-request-id": "76b641a049e6605e8c5405fcae9e5d0c", + "x-ms-correlation-request-id": "91b0c96d-03db-40a2-aec4-e4bf2d53aa60", + "x-ms-ratelimit-remaining-subscription-reads": "11685", + "x-ms-request-id": "0732d7df-24dc-4659-ae65-8cc54c884f93", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072122Z:91b0c96d-03db-40a2-aec4-e4bf2d53aa60" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8d0c5e22568d037609e56f60cbe019a3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b05ec7bb-7d1b-4852-8349-e2800fc585eb", + "x-ms-client-request-id": "8d0c5e22568d037609e56f60cbe019a3", + "x-ms-correlation-request-id": "fc38f416-51ee-4df4-ac5f-f0829f1510a9", + "x-ms-ratelimit-remaining-subscription-reads": "11684", + "x-ms-request-id": "6ebad1fe-d124-4912-a7d9-94d310b25216", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072123Z:fc38f416-51ee-4df4-ac5f-f0829f1510a9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6b9332890701cbb9876c96ad32781d40", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5bc3dba9-09c5-4eda-b5c1-dab7e922aff7", + "x-ms-client-request-id": "6b9332890701cbb9876c96ad32781d40", + "x-ms-correlation-request-id": "22f1ddbd-9b2a-422e-814c-3da05837a1e0", + "x-ms-ratelimit-remaining-subscription-reads": "11683", + "x-ms-request-id": "b8043dd9-f4f4-4cee-b7b5-a12feef115dc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072125Z:22f1ddbd-9b2a-422e-814c-3da05837a1e0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "87ca47104fc64a64cab36d01dafd94ac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0a28dfa7-22f5-458d-acb7-865c0124f9ff", + "x-ms-client-request-id": "87ca47104fc64a64cab36d01dafd94ac", + "x-ms-correlation-request-id": "c6e0010e-3094-4f23-bde6-813b02df1451", + "x-ms-ratelimit-remaining-subscription-reads": "11682", + "x-ms-request-id": "03dd82bf-a1d7-4d3f-836c-3b64336b135e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072126Z:c6e0010e-3094-4f23-bde6-813b02df1451" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7b72613bf10b1a0aa4410620bfc8d090", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c36c758c-ce48-4a35-9f23-50792706cad0", + "x-ms-client-request-id": "7b72613bf10b1a0aa4410620bfc8d090", + "x-ms-correlation-request-id": "d0e42cfb-241a-45ba-b50e-b4352a1ed20c", + "x-ms-ratelimit-remaining-subscription-reads": "11681", + "x-ms-request-id": "cedc804c-b30a-4976-ba59-7b962b03a9c7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072127Z:d0e42cfb-241a-45ba-b50e-b4352a1ed20c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "83502ec791163addce49a04e9ab8f089", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6dea2ed9-35aa-4bb3-8ac1-c187a8106f9d", + "x-ms-client-request-id": "83502ec791163addce49a04e9ab8f089", + "x-ms-correlation-request-id": "890ca2a0-df2e-4767-bccf-d2f92d7d8461", + "x-ms-ratelimit-remaining-subscription-reads": "11680", + "x-ms-request-id": "083a0c87-5e79-4e71-a68c-4be018295443", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072129Z:890ca2a0-df2e-4767-bccf-d2f92d7d8461" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d072ead7a1061e343dafe38548438a02", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e747a051-c597-41d4-a268-e965fa3abf6a", + "x-ms-client-request-id": "d072ead7a1061e343dafe38548438a02", + "x-ms-correlation-request-id": "466fdbfe-aef3-4787-9c30-1a8dd6b06ceb", + "x-ms-ratelimit-remaining-subscription-reads": "11679", + "x-ms-request-id": "fca9542f-c014-4833-b741-2116f704c9b1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072130Z:466fdbfe-aef3-4787-9c30-1a8dd6b06ceb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ab39dce210ada9958438acc251bb80eb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "964612c5-485e-4b79-a7ce-779b25957bc4", + "x-ms-client-request-id": "ab39dce210ada9958438acc251bb80eb", + "x-ms-correlation-request-id": "1e6f5b7b-06be-416c-a57e-e189e08d49c6", + "x-ms-ratelimit-remaining-subscription-reads": "11678", + "x-ms-request-id": "07de50e4-4370-4461-b64f-81f1d5caf7b4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072131Z:1e6f5b7b-06be-416c-a57e-e189e08d49c6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d5487d50ff56258af9324666ae57f18b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d88bddd7-8db3-4124-8adb-8243b89ed51d", + "x-ms-client-request-id": "d5487d50ff56258af9324666ae57f18b", + "x-ms-correlation-request-id": "119c458c-574a-46c8-954e-a92697b7c3b3", + "x-ms-ratelimit-remaining-subscription-reads": "11677", + "x-ms-request-id": "e6fd17c9-a477-447a-91c6-4c6a92f06847", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072132Z:119c458c-574a-46c8-954e-a92697b7c3b3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bd6c9ebe447ec7db54c84ccef572cd81", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6fac5a3b-f262-4173-a50d-c90285fda8b5", + "x-ms-client-request-id": "bd6c9ebe447ec7db54c84ccef572cd81", + "x-ms-correlation-request-id": "1721a7fb-4921-47d4-8612-8a6c340dea01", + "x-ms-ratelimit-remaining-subscription-reads": "11676", + "x-ms-request-id": "e08c97b7-0230-44bd-9d3f-ffbf1c50b3d4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072134Z:1721a7fb-4921-47d4-8612-8a6c340dea01" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cb35f72fb4fae2ab5214b27bca2ffa2c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ef3306eb-734a-4d6c-a409-d2ce96414586", + "x-ms-client-request-id": "cb35f72fb4fae2ab5214b27bca2ffa2c", + "x-ms-correlation-request-id": "609d7bb2-6052-46a7-b5bd-fdced2e22529", + "x-ms-ratelimit-remaining-subscription-reads": "11675", + "x-ms-request-id": "452d55cf-0b80-4a42-aef8-028ee4554298", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072135Z:609d7bb2-6052-46a7-b5bd-fdced2e22529" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b2032146c24f0b6ca181818db3bb3087", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "311394d4-14ad-4321-b123-4b37e018f2b7", + "x-ms-client-request-id": "b2032146c24f0b6ca181818db3bb3087", + "x-ms-correlation-request-id": "ce670e6e-4436-4e26-8e6f-3f4bb0eb9588", + "x-ms-ratelimit-remaining-subscription-reads": "11674", + "x-ms-request-id": "e53ce576-d831-4152-9394-cc6e013d207f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072136Z:ce670e6e-4436-4e26-8e6f-3f4bb0eb9588" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b737c46425220a90f2896b6a9260fd24", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "37d796ec-2b63-4643-80c3-cdb46478d39f", + "x-ms-client-request-id": "b737c46425220a90f2896b6a9260fd24", + "x-ms-correlation-request-id": "5d3e20ba-eda8-4b7c-9325-94d4ae146d3f", + "x-ms-ratelimit-remaining-subscription-reads": "11673", + "x-ms-request-id": "342c4987-ba82-4933-9ae8-aa2bc2f30e8c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072137Z:5d3e20ba-eda8-4b7c-9325-94d4ae146d3f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d3871fce1a6e6d328a292a79331e2f96", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "4163bbc4-01b8-4e4c-abbb-b6828f18802d", + "x-ms-client-request-id": "d3871fce1a6e6d328a292a79331e2f96", + "x-ms-correlation-request-id": "f3ecd749-ab94-45ef-985e-da9d973fe73a", + "x-ms-ratelimit-remaining-subscription-reads": "11672", + "x-ms-request-id": "0f63f707-6fac-4e54-a1fa-9aeb8e2bed85", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072139Z:f3ecd749-ab94-45ef-985e-da9d973fe73a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "05162ae342f8200a90f9c0c657017840", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "294d68e8-c1cc-45e2-b109-9a2ae044e43a", + "x-ms-client-request-id": "05162ae342f8200a90f9c0c657017840", + "x-ms-correlation-request-id": "0cd76886-c64c-4971-854e-5d5bca072cd8", + "x-ms-ratelimit-remaining-subscription-reads": "11671", + "x-ms-request-id": "2a6acd4b-7c88-481e-be8d-5b9ee60c0440", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072140Z:0cd76886-c64c-4971-854e-5d5bca072cd8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "93bf5c835c344a1992c92df8fb17d7d4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3c7bb12f-7712-4af0-9d9d-c9e1831e84e5", + "x-ms-client-request-id": "93bf5c835c344a1992c92df8fb17d7d4", + "x-ms-correlation-request-id": "1f19ff54-f649-4d76-a312-eca781b14811", + "x-ms-ratelimit-remaining-subscription-reads": "11670", + "x-ms-request-id": "0a9125c9-8c2c-4367-9a1c-bb121fc2c15f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072142Z:1f19ff54-f649-4d76-a312-eca781b14811" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6887d55af84a8b2c15674374596b1688", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ab4a017d-ff9c-478f-96d0-477c8f100d7d", + "x-ms-client-request-id": "6887d55af84a8b2c15674374596b1688", + "x-ms-correlation-request-id": "ff713a31-e779-4f13-89d5-6c17ed4414c2", + "x-ms-ratelimit-remaining-subscription-reads": "11669", + "x-ms-request-id": "6e31dde8-9949-4b9c-b895-71605b897e85", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072143Z:ff713a31-e779-4f13-89d5-6c17ed4414c2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d6f5e9b09b5f876211cb732e15112479", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4bb87712-7e00-4e60-803d-af720319c80f", + "x-ms-client-request-id": "d6f5e9b09b5f876211cb732e15112479", + "x-ms-correlation-request-id": "335cf0c3-194a-44d5-b25f-ed65fea74699", + "x-ms-ratelimit-remaining-subscription-reads": "11668", + "x-ms-request-id": "cb324f63-fb9e-4387-89be-18701499bedb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072145Z:335cf0c3-194a-44d5-b25f-ed65fea74699" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "816bec22107a8bf62f337ecc19a4f026", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "23faf911-cfb7-4be0-ae96-4cea921b2e21", + "x-ms-client-request-id": "816bec22107a8bf62f337ecc19a4f026", + "x-ms-correlation-request-id": "2bffd3b4-92d1-426c-b768-20b745188615", + "x-ms-ratelimit-remaining-subscription-reads": "11667", + "x-ms-request-id": "12c35a11-fa3b-4452-a130-52170c7a92c6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072147Z:2bffd3b4-92d1-426c-b768-20b745188615" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1247a4b30021be757200577e84fe7503", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "91482a7c-5351-480c-962b-f52eb2756db1", + "x-ms-client-request-id": "1247a4b30021be757200577e84fe7503", + "x-ms-correlation-request-id": "126be2a5-92db-48ea-bda1-ce7be9a86f5b", + "x-ms-ratelimit-remaining-subscription-reads": "11666", + "x-ms-request-id": "0b3cac03-13b0-46c5-b6c2-6db60a5ac33f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072148Z:126be2a5-92db-48ea-bda1-ce7be9a86f5b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6d52ca429400a00df36aa62b1d956d6c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f764d2be-ae3c-4b47-9a4f-5ff77eb5fac4", + "x-ms-client-request-id": "6d52ca429400a00df36aa62b1d956d6c", + "x-ms-correlation-request-id": "08ca3a39-5dd1-4c41-9efc-77820946f85f", + "x-ms-ratelimit-remaining-subscription-reads": "11665", + "x-ms-request-id": "f71430a5-059e-47ad-ae95-8a6a02e4024e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072149Z:08ca3a39-5dd1-4c41-9efc-77820946f85f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "717a4cda12c9215776ac0f7ab9770631", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8ce940b7-7ff4-409f-8211-0e727a476171", + "x-ms-client-request-id": "717a4cda12c9215776ac0f7ab9770631", + "x-ms-correlation-request-id": "4656e14a-aa2c-400e-9fac-9d1e3ffa6233", + "x-ms-ratelimit-remaining-subscription-reads": "11664", + "x-ms-request-id": "9b944cd9-0eb5-458e-b1b3-059378fa15a0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072150Z:4656e14a-aa2c-400e-9fac-9d1e3ffa6233" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4e8a7abd83511f2696a71eb75949a1dd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0d8a33e0-417c-4918-bcb2-af786d40ee92", + "x-ms-client-request-id": "4e8a7abd83511f2696a71eb75949a1dd", + "x-ms-correlation-request-id": "402f079f-312f-441d-a3c0-b59f7ce7427b", + "x-ms-ratelimit-remaining-subscription-reads": "11663", + "x-ms-request-id": "a5d93b6d-8912-4f5c-a89d-e773568b856a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072152Z:402f079f-312f-441d-a3c0-b59f7ce7427b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "38a4ea9204832f397231f6538593e67c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:21: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": "00269812-495b-4eb5-9cb1-a4a8c5d40a86", + "x-ms-client-request-id": "38a4ea9204832f397231f6538593e67c", + "x-ms-correlation-request-id": "1da3becc-649a-4159-bfa4-1c9b4fb354d7", + "x-ms-ratelimit-remaining-subscription-reads": "11662", + "x-ms-request-id": "e5626a0e-edde-4fb9-99d3-349a3f3493ae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072154Z:1da3becc-649a-4159-bfa4-1c9b4fb354d7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a36e75631f0a571b265ada22f4a0c72d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "bc4da09e-073c-4447-a450-0ae0eb3afa7b", + "x-ms-client-request-id": "a36e75631f0a571b265ada22f4a0c72d", + "x-ms-correlation-request-id": "5c88bf74-c3e4-4fc6-8bb6-6992998a96ee", + "x-ms-ratelimit-remaining-subscription-reads": "11661", + "x-ms-request-id": "c410bb8f-7179-4fa8-a80c-2f9df1efa53b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072155Z:5c88bf74-c3e4-4fc6-8bb6-6992998a96ee" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cee8310bced2b8ad405adb208cd39a03", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "db012e95-51b5-4ef0-9d5b-ba825856c155", + "x-ms-client-request-id": "cee8310bced2b8ad405adb208cd39a03", + "x-ms-correlation-request-id": "92783d33-8a1e-4079-ac42-7f16648d374d", + "x-ms-ratelimit-remaining-subscription-reads": "11660", + "x-ms-request-id": "ef4364e3-02b7-4786-aa5c-64524e6beab4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072156Z:92783d33-8a1e-4079-ac42-7f16648d374d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e353a2c0fedb73d2ce4c112929173bd2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "83962540-52e6-4b07-9ea9-8921438fca0e", + "x-ms-client-request-id": "e353a2c0fedb73d2ce4c112929173bd2", + "x-ms-correlation-request-id": "939fa5a5-9e0b-4557-afbd-aea6e9fe23b9", + "x-ms-ratelimit-remaining-subscription-reads": "11659", + "x-ms-request-id": "c33d8579-75c8-4591-af05-dbf1167b12e3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072158Z:939fa5a5-9e0b-4557-afbd-aea6e9fe23b9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5347c96917aa95a9c8b562af43fbcb53", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e351f60a-a195-4bc2-af8a-35c363aeee5f", + "x-ms-client-request-id": "5347c96917aa95a9c8b562af43fbcb53", + "x-ms-correlation-request-id": "48dc40ba-7115-411d-97db-fc5aa246171c", + "x-ms-ratelimit-remaining-subscription-reads": "11658", + "x-ms-request-id": "cc1a2f9a-6165-49cf-911c-efc57122462f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072159Z:48dc40ba-7115-411d-97db-fc5aa246171c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5161d7c0e44c0d525e750086bc848f28", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "41221f57-3de9-4b46-9004-b04ced037c49", + "x-ms-client-request-id": "5161d7c0e44c0d525e750086bc848f28", + "x-ms-correlation-request-id": "53a8910c-c084-4268-969f-05e18011e1d2", + "x-ms-ratelimit-remaining-subscription-reads": "11657", + "x-ms-request-id": "9f47bca2-d50a-426b-b67c-76d7e25b4582", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072200Z:53a8910c-c084-4268-969f-05e18011e1d2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c2b6091f468ba858f8be1b259b222fd3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5057553a-9002-483d-b986-c129b3e0cde7", + "x-ms-client-request-id": "c2b6091f468ba858f8be1b259b222fd3", + "x-ms-correlation-request-id": "6038b89f-c537-41ca-b63f-d4309a4a45c2", + "x-ms-ratelimit-remaining-subscription-reads": "11656", + "x-ms-request-id": "a1dbc637-90c0-47a9-85b8-a4584bd682dc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072202Z:6038b89f-c537-41ca-b63f-d4309a4a45c2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5268be81eab68585773af5341723d844", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "84a2b351-69e8-4e15-9746-8ccb87cbdc5a", + "x-ms-client-request-id": "5268be81eab68585773af5341723d844", + "x-ms-correlation-request-id": "041cf489-af04-41de-af80-21b3aa0162e9", + "x-ms-ratelimit-remaining-subscription-reads": "11655", + "x-ms-request-id": "598626af-1991-471c-8359-b1c950f8f9e1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072203Z:041cf489-af04-41de-af80-21b3aa0162e9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "39903926084479c87eb8588ec82c713b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9bb0d0ef-d795-4906-8cf0-bafbc9daf985", + "x-ms-client-request-id": "39903926084479c87eb8588ec82c713b", + "x-ms-correlation-request-id": "fe7d7ae5-04dc-4100-a4d0-a49e17038f23", + "x-ms-ratelimit-remaining-subscription-reads": "11654", + "x-ms-request-id": "8f95a7f4-a4aa-4551-8f8f-96ce16edeb1f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072204Z:fe7d7ae5-04dc-4100-a4d0-a49e17038f23" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fd042c453c1b357283314b50512491d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2a6ad00a-a1f5-4af0-b314-cf43ca871579", + "x-ms-client-request-id": "fd042c453c1b357283314b50512491d5", + "x-ms-correlation-request-id": "ad07490e-62b2-49fb-885c-5b702f9b2094", + "x-ms-ratelimit-remaining-subscription-reads": "11653", + "x-ms-request-id": "d8c3d5a1-ad20-4c22-a2a4-6b12edf3fcaf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072205Z:ad07490e-62b2-49fb-885c-5b702f9b2094" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "61ffd7e5f592788ff6efd4fd91f7bc4a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a996c39b-764d-4608-a6bb-444aff49695e", + "x-ms-client-request-id": "61ffd7e5f592788ff6efd4fd91f7bc4a", + "x-ms-correlation-request-id": "86b0ce89-3a6a-4ea8-835f-2c52ef06394c", + "x-ms-ratelimit-remaining-subscription-reads": "11652", + "x-ms-request-id": "edd4859a-212d-496c-a190-a61b81722657", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072207Z:86b0ce89-3a6a-4ea8-835f-2c52ef06394c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ebefb9c9da1ee928c75bb613bd77275a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c5c00279-dd62-40e1-834e-a810a319a48f", + "x-ms-client-request-id": "ebefb9c9da1ee928c75bb613bd77275a", + "x-ms-correlation-request-id": "09d645f0-5277-4f38-9a40-abdb69b6689e", + "x-ms-ratelimit-remaining-subscription-reads": "11651", + "x-ms-request-id": "991e7ead-0a3c-4892-b554-0dbf01cd0c29", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072208Z:09d645f0-5277-4f38-9a40-abdb69b6689e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f1a883270f2c4fa99d8c072b6874a38b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "459937f6-715a-4d08-9744-da7e35b717d4", + "x-ms-client-request-id": "f1a883270f2c4fa99d8c072b6874a38b", + "x-ms-correlation-request-id": "8acfae83-e98e-44d9-b7e7-3121ed9e1987", + "x-ms-ratelimit-remaining-subscription-reads": "11650", + "x-ms-request-id": "748bd7e5-b1c2-4f1a-85f3-26cf87b155b4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072209Z:8acfae83-e98e-44d9-b7e7-3121ed9e1987" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "97870074a5350ab6ae169a363f7cba7f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c9a8b5b2-1064-4ebe-8adb-23038fd882bd", + "x-ms-client-request-id": "97870074a5350ab6ae169a363f7cba7f", + "x-ms-correlation-request-id": "fe235f60-56e2-431c-bb00-6413ce9d2faf", + "x-ms-ratelimit-remaining-subscription-reads": "11649", + "x-ms-request-id": "06423ddd-371c-4ba1-b535-2f74669df54f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072211Z:fe235f60-56e2-431c-bb00-6413ce9d2faf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0ed67ac7cb4eb91e0f9f4e92d3fd8152", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "646725fa-61dc-4f47-8539-abc53ff6aca0", + "x-ms-client-request-id": "0ed67ac7cb4eb91e0f9f4e92d3fd8152", + "x-ms-correlation-request-id": "00d831b0-315c-41d5-82d1-f3bc156b5854", + "x-ms-ratelimit-remaining-subscription-reads": "11648", + "x-ms-request-id": "dbf4cd6d-3af2-46f9-92f7-93ee739e1023", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072212Z:00d831b0-315c-41d5-82d1-f3bc156b5854" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bd9e2ab88fef8125cc9e421674731021", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "87253a4c-9da4-4b19-8a3c-98e2ab0a6c32", + "x-ms-client-request-id": "bd9e2ab88fef8125cc9e421674731021", + "x-ms-correlation-request-id": "08cae089-6f4b-472d-aa0b-dc74c612ea4f", + "x-ms-ratelimit-remaining-subscription-reads": "11647", + "x-ms-request-id": "59f532e6-6c98-4e29-bce5-82602b63706d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072213Z:08cae089-6f4b-472d-aa0b-dc74c612ea4f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ee6388d1959ea83de1cd8796572437b1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f4645bd2-eca2-47a7-9339-a324024d6c7f", + "x-ms-client-request-id": "ee6388d1959ea83de1cd8796572437b1", + "x-ms-correlation-request-id": "77e33a1b-556c-4c27-9e4f-4cfe717a45e8", + "x-ms-ratelimit-remaining-subscription-reads": "11646", + "x-ms-request-id": "ff6bb7b7-94b9-4467-9c65-ff394fcce63e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072216Z:77e33a1b-556c-4c27-9e4f-4cfe717a45e8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "147d4794fddd378f555441b08907449c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "48ae8295-914f-4c6c-bc51-d49095b263ed", + "x-ms-client-request-id": "147d4794fddd378f555441b08907449c", + "x-ms-correlation-request-id": "79310d92-a489-44d5-bf01-ad2720e84bcd", + "x-ms-ratelimit-remaining-subscription-reads": "11645", + "x-ms-request-id": "190b2e3e-1eff-4a48-afb6-d5226f40fce1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072217Z:79310d92-a489-44d5-bf01-ad2720e84bcd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4bc02c8e929923b4edf5db21078e2aa8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "00a005f6-2b03-470e-ab8b-f0ea866d8803", + "x-ms-client-request-id": "4bc02c8e929923b4edf5db21078e2aa8", + "x-ms-correlation-request-id": "d182276f-ddf5-4c15-936a-cd98df76ab40", + "x-ms-ratelimit-remaining-subscription-reads": "11644", + "x-ms-request-id": "075fb123-0efc-453f-8a85-eb9f4c5c2309", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072218Z:d182276f-ddf5-4c15-936a-cd98df76ab40" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2d819166fcf5d443f82b9949538c1fda", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "373655e3-3526-4676-b763-e54d14354dec", + "x-ms-client-request-id": "2d819166fcf5d443f82b9949538c1fda", + "x-ms-correlation-request-id": "37b432b0-656f-4f40-879f-02f34ff6d770", + "x-ms-ratelimit-remaining-subscription-reads": "11643", + "x-ms-request-id": "c5d8175b-7356-442c-9016-41cdfd93715a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072220Z:37b432b0-656f-4f40-879f-02f34ff6d770" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2a07eb89ec630117925a26e8216e30c6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8d0202bb-facd-4138-9d87-dc8e40538ead", + "x-ms-client-request-id": "2a07eb89ec630117925a26e8216e30c6", + "x-ms-correlation-request-id": "094a441c-e4b5-4e19-8976-a5ae74402ec8", + "x-ms-ratelimit-remaining-subscription-reads": "11642", + "x-ms-request-id": "f58ce62d-e7e3-41db-8def-0701d89dc9ed", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072221Z:094a441c-e4b5-4e19-8976-a5ae74402ec8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f7499929178592a6e9ec526df96acf61", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2aa65201-c78a-4ef7-b0ae-0b517d5df439", + "x-ms-client-request-id": "f7499929178592a6e9ec526df96acf61", + "x-ms-correlation-request-id": "95c0b3b5-7bc2-4032-b16d-f972db78b28e", + "x-ms-ratelimit-remaining-subscription-reads": "11641", + "x-ms-request-id": "e5bcca1c-9d65-4672-8fbf-1708ad956f3d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072222Z:95c0b3b5-7bc2-4032-b16d-f972db78b28e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1c9801d5ff877a4479809a9ad65bb28a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "79195f4b-91d6-474a-9670-0eb171c7df75", + "x-ms-client-request-id": "1c9801d5ff877a4479809a9ad65bb28a", + "x-ms-correlation-request-id": "78ef8e91-fb7a-48f1-bafb-a25907111112", + "x-ms-ratelimit-remaining-subscription-reads": "11640", + "x-ms-request-id": "ef120ef7-7729-4bae-808d-33aaf810507f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072224Z:78ef8e91-fb7a-48f1-bafb-a25907111112" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b91fd3fb274271544475417699a90828", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "79ad9fbc-0a46-4a1f-84fa-19ac56e5275e", + "x-ms-client-request-id": "b91fd3fb274271544475417699a90828", + "x-ms-correlation-request-id": "95aa9295-4211-48d1-9c0b-3d2ff88ed1c0", + "x-ms-ratelimit-remaining-subscription-reads": "11639", + "x-ms-request-id": "45616330-5577-43f2-888f-abee0b765376", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072225Z:95aa9295-4211-48d1-9c0b-3d2ff88ed1c0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2012c48a13d52a3e54ce7e057c0cbc8e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "29d617c5-d374-48d9-a32f-99c3bb7fc8a2", + "x-ms-client-request-id": "2012c48a13d52a3e54ce7e057c0cbc8e", + "x-ms-correlation-request-id": "9ce21cc8-0a4f-4267-bebb-8711c04477d8", + "x-ms-ratelimit-remaining-subscription-reads": "11638", + "x-ms-request-id": "cefb5e16-0837-4ab8-bd2f-bb4f3657e5c3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072226Z:9ce21cc8-0a4f-4267-bebb-8711c04477d8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2672c83a164aad1eac26d711becee1cf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "59bf4636-9cc9-4cd9-9139-5cfcfd844eca", + "x-ms-client-request-id": "2672c83a164aad1eac26d711becee1cf", + "x-ms-correlation-request-id": "e067fa7e-be6a-426c-ac8e-1d0435284531", + "x-ms-ratelimit-remaining-subscription-reads": "11637", + "x-ms-request-id": "285c43a7-25d0-46e9-b979-e6b023db047b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072228Z:e067fa7e-be6a-426c-ac8e-1d0435284531" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "110f72779148e7b494f56473a94ef538", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "18b9acc1-e9e7-49bf-a880-1680c22ff9e8", + "x-ms-client-request-id": "110f72779148e7b494f56473a94ef538", + "x-ms-correlation-request-id": "8c03733a-cc54-4183-95a7-acb12de93a9a", + "x-ms-ratelimit-remaining-subscription-reads": "11636", + "x-ms-request-id": "c3e95cbe-f925-4e02-9e4c-5364d7e80989", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072229Z:8c03733a-cc54-4183-95a7-acb12de93a9a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d03bb3b9e13774dda66473ae3b2c6b86", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b5210683-d426-40e5-b586-31a9c059d9dc", + "x-ms-client-request-id": "d03bb3b9e13774dda66473ae3b2c6b86", + "x-ms-correlation-request-id": "49806e9d-d378-4a34-bfaa-db861ac0786d", + "x-ms-ratelimit-remaining-subscription-reads": "11635", + "x-ms-request-id": "a36535c0-c065-4237-93ca-a55a89a6d458", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072230Z:49806e9d-d378-4a34-bfaa-db861ac0786d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0a8daeedaafca945148a9154b1aa045e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "3dd1aa58-47e3-42b1-bcba-7d22f3313985", + "x-ms-client-request-id": "0a8daeedaafca945148a9154b1aa045e", + "x-ms-correlation-request-id": "4705e589-9dbb-4a8b-8e99-78575d3bf013", + "x-ms-ratelimit-remaining-subscription-reads": "11634", + "x-ms-request-id": "0be22cfa-63dd-4e53-9024-2c37cc949d24", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072232Z:4705e589-9dbb-4a8b-8e99-78575d3bf013" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0b589f3111929698959b6ae31d05ac67", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "dc066dc5-ac43-46df-a0de-54ee1ce643ed", + "x-ms-client-request-id": "0b589f3111929698959b6ae31d05ac67", + "x-ms-correlation-request-id": "748f4e2b-6b6f-4fba-ba33-000a4e51426b", + "x-ms-ratelimit-remaining-subscription-reads": "11633", + "x-ms-request-id": "2586a7c6-ddbc-4081-8671-4b1e57f2bef0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072233Z:748f4e2b-6b6f-4fba-ba33-000a4e51426b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fb86de8aebc00e3c6d92bcad4f88c3fb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6b1fbc0e-d1fa-4550-9d72-469585e1ff51", + "x-ms-client-request-id": "fb86de8aebc00e3c6d92bcad4f88c3fb", + "x-ms-correlation-request-id": "67263a2d-bf0d-4b81-9265-cc615a1b63f1", + "x-ms-ratelimit-remaining-subscription-reads": "11632", + "x-ms-request-id": "4d4dbf98-9526-46a5-891b-3cf80055c414", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072234Z:67263a2d-bf0d-4b81-9265-cc615a1b63f1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9c7d156060d4dbf316f7746140618b0e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "a5eebedc-225a-4faf-98be-90e65097c59e", + "x-ms-client-request-id": "9c7d156060d4dbf316f7746140618b0e", + "x-ms-correlation-request-id": "b2d85d15-7645-4b93-a45d-376d1712e0c9", + "x-ms-ratelimit-remaining-subscription-reads": "11631", + "x-ms-request-id": "3920feac-3454-429f-8b5c-7707489a2bb7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072235Z:b2d85d15-7645-4b93-a45d-376d1712e0c9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d2ca2add0823469d63499d0055ea460c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "507dfd00-1a90-4fae-a863-ccab55a9aeb9", + "x-ms-client-request-id": "d2ca2add0823469d63499d0055ea460c", + "x-ms-correlation-request-id": "5fee46e5-eddc-46c2-aed9-2d4bb796e2b1", + "x-ms-ratelimit-remaining-subscription-reads": "11630", + "x-ms-request-id": "6a9321f0-1649-409b-9eb8-2a794126bd78", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072237Z:5fee46e5-eddc-46c2-aed9-2d4bb796e2b1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "08836fd710882992ebaae5c976dace0c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "7d8cdbb7-8bf2-4055-a592-c70613a487d2", + "x-ms-client-request-id": "08836fd710882992ebaae5c976dace0c", + "x-ms-correlation-request-id": "fe1fe793-7fd1-4d20-ad8e-e6e1cb3d0043", + "x-ms-ratelimit-remaining-subscription-reads": "11629", + "x-ms-request-id": "b170c866-ad7d-4a35-bb13-78caf3784616", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072239Z:fe1fe793-7fd1-4d20-ad8e-e6e1cb3d0043" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "25d0ad07f0bd58d77836388bc3f3862b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "67c8e2a8-ec5c-4a52-9bb6-502c02efd02a", + "x-ms-client-request-id": "25d0ad07f0bd58d77836388bc3f3862b", + "x-ms-correlation-request-id": "f9474b71-e078-4b57-aa9b-48bb58c9c8cc", + "x-ms-ratelimit-remaining-subscription-reads": "11628", + "x-ms-request-id": "d4d3a48f-4d51-49c6-8eaa-cdd644f7c5d3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072240Z:f9474b71-e078-4b57-aa9b-48bb58c9c8cc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d08968b183decd8597a1e77823d3d088", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8cda0417-d822-45af-8ce5-de9152f06b4a", + "x-ms-client-request-id": "d08968b183decd8597a1e77823d3d088", + "x-ms-correlation-request-id": "3547b88c-5630-471e-b8f6-6eb1dbfad171", + "x-ms-ratelimit-remaining-subscription-reads": "11627", + "x-ms-request-id": "7cd50d00-2323-4f93-a6ac-4160744178a2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072241Z:3547b88c-5630-471e-b8f6-6eb1dbfad171" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a7f9917a201ae74f972b8f52d70766f8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7783b921-6f56-42e4-86c3-45871395496f", + "x-ms-client-request-id": "a7f9917a201ae74f972b8f52d70766f8", + "x-ms-correlation-request-id": "26ea9a2d-6751-4283-8c1e-18fcec7c0b37", + "x-ms-ratelimit-remaining-subscription-reads": "11626", + "x-ms-request-id": "10851519-bc26-4fb8-8352-8d9ce5a697cd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072242Z:26ea9a2d-6751-4283-8c1e-18fcec7c0b37" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0e18b924fd51832d28028e1c085e34a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "064e0896-daa5-4281-902a-c88c485d9e90", + "x-ms-client-request-id": "0e18b924fd51832d28028e1c085e34a4", + "x-ms-correlation-request-id": "5e925bb2-79da-4015-a763-eb52bfa3f524", + "x-ms-ratelimit-remaining-subscription-reads": "11625", + "x-ms-request-id": "e6b6a27b-1da0-4a69-b05b-4f313f882fda", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072244Z:5e925bb2-79da-4015-a763-eb52bfa3f524" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3210af66dff9901118a138b3f333f590", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "39964161-a5fe-453b-974a-7de530bc2631", + "x-ms-client-request-id": "3210af66dff9901118a138b3f333f590", + "x-ms-correlation-request-id": "cebe2618-e4c0-424b-aaab-73f132db27bb", + "x-ms-ratelimit-remaining-subscription-reads": "11624", + "x-ms-request-id": "b64aa364-1e5c-4b23-be1d-e01f7638dc69", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072245Z:cebe2618-e4c0-424b-aaab-73f132db27bb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6954ef3bc2bb7c3663757e179233de39", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3510c5b6-b7c3-486f-a9f4-6225eddaa484", + "x-ms-client-request-id": "6954ef3bc2bb7c3663757e179233de39", + "x-ms-correlation-request-id": "88d41400-172b-476e-ac4b-4a5a3f7f868c", + "x-ms-ratelimit-remaining-subscription-reads": "11623", + "x-ms-request-id": "b58c15fc-2ab2-4198-856b-4bd2f905ee94", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072246Z:88d41400-172b-476e-ac4b-4a5a3f7f868c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "28ecebf633f645fea787f5b0c57a90f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e41d7c03-789d-4ed2-b117-d684f241c2c5", + "x-ms-client-request-id": "28ecebf633f645fea787f5b0c57a90f5", + "x-ms-correlation-request-id": "5b888972-fa9f-4ea1-ac44-61d671eefcce", + "x-ms-ratelimit-remaining-subscription-reads": "11622", + "x-ms-request-id": "55ab99fb-70cf-47cf-add8-b5b1ca8f26c2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072247Z:5b888972-fa9f-4ea1-ac44-61d671eefcce" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "19e0fe0cca0aa3e87893cf8460f9fee5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6bc1e69c-6ad6-4a88-87b7-a61106f790c9", + "x-ms-client-request-id": "19e0fe0cca0aa3e87893cf8460f9fee5", + "x-ms-correlation-request-id": "f97ae53e-3e75-4de9-a4b4-20cf42e84089", + "x-ms-ratelimit-remaining-subscription-reads": "11621", + "x-ms-request-id": "bfc58c42-be20-4a2f-a50e-28f33aaeeeef", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072249Z:f97ae53e-3e75-4de9-a4b4-20cf42e84089" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "08bdffc2cd470799f00fc234cd86b7e8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8f3a1b9c-411e-437a-9b45-91f29e696e92", + "x-ms-client-request-id": "08bdffc2cd470799f00fc234cd86b7e8", + "x-ms-correlation-request-id": "f11f9d32-3569-4046-9217-4ffdd889ce6c", + "x-ms-ratelimit-remaining-subscription-reads": "11620", + "x-ms-request-id": "dd656d9d-eae6-4c3e-a2a5-6283d48bc5a1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072250Z:f11f9d32-3569-4046-9217-4ffdd889ce6c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "940b89e5c5522b2f0248af63647ae4ad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f28f02df-3fcc-422c-aee3-003d838834be", + "x-ms-client-request-id": "940b89e5c5522b2f0248af63647ae4ad", + "x-ms-correlation-request-id": "259a5503-55d8-4c24-9e14-3faaa8105acb", + "x-ms-ratelimit-remaining-subscription-reads": "11619", + "x-ms-request-id": "57d57076-4abb-4d6b-8b0f-19f1adc16f77", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072251Z:259a5503-55d8-4c24-9e14-3faaa8105acb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c5ed0f8987bd3ead64d928fa08b4d6f2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b0494933-e3ec-4422-9912-7ca87343b909", + "x-ms-client-request-id": "c5ed0f8987bd3ead64d928fa08b4d6f2", + "x-ms-correlation-request-id": "670417e6-b5b3-4877-9556-4b4641f93be7", + "x-ms-ratelimit-remaining-subscription-reads": "11618", + "x-ms-request-id": "1ede22cd-e804-43f1-94a2-daafa04176a5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072253Z:670417e6-b5b3-4877-9556-4b4641f93be7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d69ee6dc69eefd93d09105fe1e36a276", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f9b195b9-ea9c-467d-9e96-87c0001d8a51", + "x-ms-client-request-id": "d69ee6dc69eefd93d09105fe1e36a276", + "x-ms-correlation-request-id": "7a8b6be0-475a-40ec-af90-6435e1fb9aa0", + "x-ms-ratelimit-remaining-subscription-reads": "11617", + "x-ms-request-id": "5b8b9580-d1de-4c11-8e15-4708ec2a9c28", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072254Z:7a8b6be0-475a-40ec-af90-6435e1fb9aa0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bdab142af2995d2adbcc2f789c34224d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9669eeb9-0724-4199-9a29-01fa4f7d8234", + "x-ms-client-request-id": "bdab142af2995d2adbcc2f789c34224d", + "x-ms-correlation-request-id": "8b20616c-859e-477e-84a7-4d33978b1f41", + "x-ms-ratelimit-remaining-subscription-reads": "11616", + "x-ms-request-id": "a2710e41-d0bc-451c-85d8-f9fc4f21ea3b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072255Z:8b20616c-859e-477e-84a7-4d33978b1f41" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7e87bc710ddb1fbe7ceff42b82af202e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "142c8e07-b148-4a5e-87dd-3f5b2c314f72", + "x-ms-client-request-id": "7e87bc710ddb1fbe7ceff42b82af202e", + "x-ms-correlation-request-id": "ed1ca35a-e15b-4216-971e-7eb46bcbd9d3", + "x-ms-ratelimit-remaining-subscription-reads": "11615", + "x-ms-request-id": "9c3ed3d8-c843-43b2-ac83-8a9d25576086", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072256Z:ed1ca35a-e15b-4216-971e-7eb46bcbd9d3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f3cfb2361909e959bb41fa223a1a619c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f8a8ba1d-2a6b-4850-af61-430794ba4088", + "x-ms-client-request-id": "f3cfb2361909e959bb41fa223a1a619c", + "x-ms-correlation-request-id": "46155d42-0c05-4e91-91e1-a58160347765", + "x-ms-ratelimit-remaining-subscription-reads": "11614", + "x-ms-request-id": "f6ec678f-76b6-4243-b422-f96bd822c23f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072258Z:46155d42-0c05-4e91-91e1-a58160347765" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "618cb76f24af1c9b558b40a9feffdb2c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "cff3f453-0487-40e7-baa4-9980998fa517", + "x-ms-client-request-id": "618cb76f24af1c9b558b40a9feffdb2c", + "x-ms-correlation-request-id": "c0285cfb-5cd1-4c3a-b81b-29c0523c763b", + "x-ms-ratelimit-remaining-subscription-reads": "11613", + "x-ms-request-id": "cc227224-fac3-4a34-a76c-1c7fc0044728", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072259Z:c0285cfb-5cd1-4c3a-b81b-29c0523c763b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e94201ac2e645844639dc299129ce562", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c53b7bd7-388f-4713-9850-00f286052d75", + "x-ms-client-request-id": "e94201ac2e645844639dc299129ce562", + "x-ms-correlation-request-id": "a679f1de-75c6-40a8-97ff-1f9f1cd10af8", + "x-ms-ratelimit-remaining-subscription-reads": "11612", + "x-ms-request-id": "693b83d1-00d1-4515-b5d2-12b5c2cf9a2d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072300Z:a679f1de-75c6-40a8-97ff-1f9f1cd10af8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cabc588dbe22127f17b39d7dd8afebbc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "dcdfee55-4414-4155-b9a7-d236cba86769", + "x-ms-client-request-id": "cabc588dbe22127f17b39d7dd8afebbc", + "x-ms-correlation-request-id": "361cdfb6-f883-49fa-a14f-b59729414042", + "x-ms-ratelimit-remaining-subscription-reads": "11611", + "x-ms-request-id": "fd33e79a-a198-44c2-9c60-4a95f126d6f9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072301Z:361cdfb6-f883-49fa-a14f-b59729414042" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3975ce6577d740377334fd11620109b8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "046ae1fc-ed25-458d-bc25-3f12e0de5cec", + "x-ms-client-request-id": "3975ce6577d740377334fd11620109b8", + "x-ms-correlation-request-id": "49664c1d-e905-489e-a883-0ab3e4e8a647", + "x-ms-ratelimit-remaining-subscription-reads": "11610", + "x-ms-request-id": "3302c131-0774-432b-9a7f-d01d3bd281bb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072303Z:49664c1d-e905-489e-a883-0ab3e4e8a647" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a61bdea61143ee09812fd2b190c67fb4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "95dfc89b-a43a-4d0a-bceb-043e7c1c32bd", + "x-ms-client-request-id": "a61bdea61143ee09812fd2b190c67fb4", + "x-ms-correlation-request-id": "94208cf0-efcc-487f-9382-39a44419265b", + "x-ms-ratelimit-remaining-subscription-reads": "11609", + "x-ms-request-id": "35b7bc40-e812-4978-a797-9347e44089fa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072304Z:94208cf0-efcc-487f-9382-39a44419265b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "443406b2ab27168a207c57eec06db015", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e8173ce9-84e3-48f3-b1a4-be0afe284e54", + "x-ms-client-request-id": "443406b2ab27168a207c57eec06db015", + "x-ms-correlation-request-id": "426340c6-e028-401e-bd6e-1868c2a6d262", + "x-ms-ratelimit-remaining-subscription-reads": "11608", + "x-ms-request-id": "fa4ac8c9-f704-4cdb-b887-3780adf17178", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072305Z:426340c6-e028-401e-bd6e-1868c2a6d262" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fad6e5a945935479c487b7a8a486afac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3257b8b9-b65c-4574-abf5-7dbefb93c0af", + "x-ms-client-request-id": "fad6e5a945935479c487b7a8a486afac", + "x-ms-correlation-request-id": "adc53c86-e030-4a3a-b3d2-0bdfa59eb955", + "x-ms-ratelimit-remaining-subscription-reads": "11607", + "x-ms-request-id": "5842a630-5316-44fb-aa1c-8a81f96c4fcf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072307Z:adc53c86-e030-4a3a-b3d2-0bdfa59eb955" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5c5f49b4c5cdfa91530585c7ba1b2e13", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "563b45e2-c0d2-4fe2-aa9f-29e5081ce9cd", + "x-ms-client-request-id": "5c5f49b4c5cdfa91530585c7ba1b2e13", + "x-ms-correlation-request-id": "eef97c80-3f78-4507-8aad-4816ddc3ae9a", + "x-ms-ratelimit-remaining-subscription-reads": "11606", + "x-ms-request-id": "94c00d40-fd51-4f94-963d-a847a67d8e15", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072308Z:eef97c80-3f78-4507-8aad-4816ddc3ae9a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ab08bd7f85ef6d208cdf7fa0f4e27199", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f72b782f-31b2-416a-aa41-785ac8963b15", + "x-ms-client-request-id": "ab08bd7f85ef6d208cdf7fa0f4e27199", + "x-ms-correlation-request-id": "38e0122c-ccb3-42e4-9768-23ab2b60e26a", + "x-ms-ratelimit-remaining-subscription-reads": "11605", + "x-ms-request-id": "2d8206b0-7e51-4bb1-8278-9cf74c445919", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072309Z:38e0122c-ccb3-42e4-9768-23ab2b60e26a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "763aaacc540ee34853dca68ebfb29aa9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d6adcf47-729f-4544-87c5-cd1b07c52c7a", + "x-ms-client-request-id": "763aaacc540ee34853dca68ebfb29aa9", + "x-ms-correlation-request-id": "0b055b70-7d55-4f5f-a089-b8010f6eccd0", + "x-ms-ratelimit-remaining-subscription-reads": "11604", + "x-ms-request-id": "3ba0fbe0-0676-4593-9a1c-7264407d023e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072311Z:0b055b70-7d55-4f5f-a089-b8010f6eccd0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e728a359037e2ebc28f2cfee45f10671", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3cf93781-ff35-4545-82b2-68faf283c0bf", + "x-ms-client-request-id": "e728a359037e2ebc28f2cfee45f10671", + "x-ms-correlation-request-id": "c53c1fa8-b5f7-4310-800b-ac7b8d02a84c", + "x-ms-ratelimit-remaining-subscription-reads": "11603", + "x-ms-request-id": "c833b147-afde-4212-a405-d67afa484463", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072312Z:c53c1fa8-b5f7-4310-800b-ac7b8d02a84c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0ffaeb94b7e02b0574245813de92adda", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b67a5525-34da-433b-9120-811e0507bdea", + "x-ms-client-request-id": "0ffaeb94b7e02b0574245813de92adda", + "x-ms-correlation-request-id": "aceb3926-0d87-4a78-9cc7-9cbac03af3fa", + "x-ms-ratelimit-remaining-subscription-reads": "11602", + "x-ms-request-id": "c10d69d5-48bd-4dfd-9046-816fc9825241", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072313Z:aceb3926-0d87-4a78-9cc7-9cbac03af3fa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5046d64489bac91bee0b4d1c855a9e62", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3d1227ab-7641-4e15-94b2-e17fbf9b3627", + "x-ms-client-request-id": "5046d64489bac91bee0b4d1c855a9e62", + "x-ms-correlation-request-id": "c5006d6e-fb27-4fd0-a33e-2c30ca07e34a", + "x-ms-ratelimit-remaining-subscription-reads": "11601", + "x-ms-request-id": "71fe12f5-6c27-419b-bec3-8da4dbfa5b81", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072314Z:c5006d6e-fb27-4fd0-a33e-2c30ca07e34a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d3f935d58bb7a1c89efc725aaaa85096", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6a4a8c36-bc68-447f-b2dc-9dad78222d65", + "x-ms-client-request-id": "d3f935d58bb7a1c89efc725aaaa85096", + "x-ms-correlation-request-id": "9ef7ff1b-1f19-41bf-85ee-261ecf0d8d6d", + "x-ms-ratelimit-remaining-subscription-reads": "11600", + "x-ms-request-id": "82587619-608a-4ffe-bbed-164386fa378f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072316Z:9ef7ff1b-1f19-41bf-85ee-261ecf0d8d6d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6fa9f444b5aa0ab6d03120d469e9a61a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "bac09785-bf8a-44e9-ab17-ebe8225c36be", + "x-ms-client-request-id": "6fa9f444b5aa0ab6d03120d469e9a61a", + "x-ms-correlation-request-id": "cf8369fe-764d-49b8-9e36-b2bfc8a60240", + "x-ms-ratelimit-remaining-subscription-reads": "11599", + "x-ms-request-id": "0ba86952-7964-45bf-81eb-261c902adefe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072317Z:cf8369fe-764d-49b8-9e36-b2bfc8a60240" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a83ef686da98b9230da5b2be16c11e45", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "29494350-eb21-40d9-929b-2798bbd52b2d", + "x-ms-client-request-id": "a83ef686da98b9230da5b2be16c11e45", + "x-ms-correlation-request-id": "bfd24bd3-25ef-4369-b951-068bf3f449d1", + "x-ms-ratelimit-remaining-subscription-reads": "11598", + "x-ms-request-id": "65cca1f1-746a-4a7c-b35d-54548d8613dd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072318Z:bfd24bd3-25ef-4369-b951-068bf3f449d1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "90d7b7bb2eb01fb77fef03866af438b4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e86f4302-d3d1-4aa8-bc09-524ac482773b", + "x-ms-client-request-id": "90d7b7bb2eb01fb77fef03866af438b4", + "x-ms-correlation-request-id": "20b161d4-fe82-4cf0-8044-b0b2f8b9be6b", + "x-ms-ratelimit-remaining-subscription-reads": "11597", + "x-ms-request-id": "6d03d85d-5755-4dfd-b6cf-aeb357dee68d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072319Z:20b161d4-fe82-4cf0-8044-b0b2f8b9be6b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b4d35855a76a6afdd0ef620503f8f40e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a7487e63-6501-425a-9b5a-6914a8522709", + "x-ms-client-request-id": "b4d35855a76a6afdd0ef620503f8f40e", + "x-ms-correlation-request-id": "c48cfeeb-75d9-4c99-9011-c3966e585b8f", + "x-ms-ratelimit-remaining-subscription-reads": "11596", + "x-ms-request-id": "75921706-6039-4763-856b-9d7b041fedaa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072321Z:c48cfeeb-75d9-4c99-9011-c3966e585b8f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b119da12151257693e1e29a9d69c4f19", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "536d76e0-3a42-4b73-9587-38dfda858e36", + "x-ms-client-request-id": "b119da12151257693e1e29a9d69c4f19", + "x-ms-correlation-request-id": "2614b46f-eacd-4a82-baaa-cc9afd9e9689", + "x-ms-ratelimit-remaining-subscription-reads": "11595", + "x-ms-request-id": "dbfaae28-3b0a-4179-b0f3-6821f7e0aafc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072322Z:2614b46f-eacd-4a82-baaa-cc9afd9e9689" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "be68fd6c6aed14dbb96cc0c0cbb21c86", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "30f7a196-7922-4caa-9d29-c0ff1a2ad103", + "x-ms-client-request-id": "be68fd6c6aed14dbb96cc0c0cbb21c86", + "x-ms-correlation-request-id": "47d4ffbe-7581-44b0-a6cd-8f07421d0181", + "x-ms-ratelimit-remaining-subscription-reads": "11594", + "x-ms-request-id": "b43ff5ed-3661-4672-9a59-c94d197f1ff9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072324Z:47d4ffbe-7581-44b0-a6cd-8f07421d0181" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8f73f4fa86da3fa2ee7c754b7e549434", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "780feb63-6983-433e-b8fc-aa4ae7782c68", + "x-ms-client-request-id": "8f73f4fa86da3fa2ee7c754b7e549434", + "x-ms-correlation-request-id": "b06e9252-d9c0-4561-8291-d1ac0114b697", + "x-ms-ratelimit-remaining-subscription-reads": "11593", + "x-ms-request-id": "d212d971-adfa-48bb-aba6-be599796bb91", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072325Z:b06e9252-d9c0-4561-8291-d1ac0114b697" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "059849a0368fa821ff05f8a555a88c8c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "45dd416b-379a-4769-825e-4a3d14e01c20", + "x-ms-client-request-id": "059849a0368fa821ff05f8a555a88c8c", + "x-ms-correlation-request-id": "ff22d26b-ceb1-4d96-b96f-c125571488d4", + "x-ms-ratelimit-remaining-subscription-reads": "11592", + "x-ms-request-id": "f0259827-8bb6-4a3e-9b21-4f9a2a8974d3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072326Z:ff22d26b-ceb1-4d96-b96f-c125571488d4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e2aea202bf28e53e5b29cf71f4909565", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "7c5477b9-5e10-4f16-9961-c7eed09aa6fc", + "x-ms-client-request-id": "e2aea202bf28e53e5b29cf71f4909565", + "x-ms-correlation-request-id": "94fe988e-1ce0-4e6a-8cc5-0d51cbe28e15", + "x-ms-ratelimit-remaining-subscription-reads": "11591", + "x-ms-request-id": "fe5accb3-329d-4aa0-bf1a-946e422fc415", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072328Z:94fe988e-1ce0-4e6a-8cc5-0d51cbe28e15" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "821f8bd81619c4f7d3cb90d58efce945", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "90a719a3-f4cb-476a-92fa-486ce6f5b233", + "x-ms-client-request-id": "821f8bd81619c4f7d3cb90d58efce945", + "x-ms-correlation-request-id": "925f595a-b352-4297-a582-2ac6515536cb", + "x-ms-ratelimit-remaining-subscription-reads": "11590", + "x-ms-request-id": "c3e61c9d-14fa-4b5c-8cfa-bf430c935dbb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072329Z:925f595a-b352-4297-a582-2ac6515536cb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "db48e9efb1a5e10b0bb3a96667afb46e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "c69f7ff0-bd01-4c76-9421-a897ca67610d", + "x-ms-client-request-id": "db48e9efb1a5e10b0bb3a96667afb46e", + "x-ms-correlation-request-id": "229ecb02-dc9e-45cc-b973-7b2073983c23", + "x-ms-ratelimit-remaining-subscription-reads": "11589", + "x-ms-request-id": "ee9b4482-c311-4ae4-b232-661f0934d36b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072330Z:229ecb02-dc9e-45cc-b973-7b2073983c23" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c9cd926f0988eb72abea0e5d2f68565f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "49f2ef4a-9a23-48b0-b94c-39b3d515d6c9", + "x-ms-client-request-id": "c9cd926f0988eb72abea0e5d2f68565f", + "x-ms-correlation-request-id": "8b8b4583-3c7a-4266-82a3-7d2fb987ded6", + "x-ms-ratelimit-remaining-subscription-reads": "11588", + "x-ms-request-id": "a8ffa489-9bab-4caf-a792-2f9e5362752a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072331Z:8b8b4583-3c7a-4266-82a3-7d2fb987ded6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0b81893fba4726bf803e76666c905d24", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "3c9eca2c-5e13-43b1-b4d1-5b3be4bea541", + "x-ms-client-request-id": "0b81893fba4726bf803e76666c905d24", + "x-ms-correlation-request-id": "5028219b-d527-4f2d-838a-0b8c80aa28f7", + "x-ms-ratelimit-remaining-subscription-reads": "11587", + "x-ms-request-id": "af2f9ffe-0a5c-4c77-b7f9-3cdcea9cf886", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072333Z:5028219b-d527-4f2d-838a-0b8c80aa28f7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fc6621161f2ee6bc765c2fbba2adb1a3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "5ba44b6b-18f5-45bb-91f8-5ff3db618089", + "x-ms-client-request-id": "fc6621161f2ee6bc765c2fbba2adb1a3", + "x-ms-correlation-request-id": "d885c834-8d58-4c8d-9b56-06f672665fc0", + "x-ms-ratelimit-remaining-subscription-reads": "11586", + "x-ms-request-id": "4d7624dc-38d1-4049-bb36-7b3b2a8cea3c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072334Z:d885c834-8d58-4c8d-9b56-06f672665fc0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dd264a5ca92db427d2a6494a930c7f1a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "232776aa-f6ec-4630-b095-1e8f377a0ab8", + "x-ms-client-request-id": "dd264a5ca92db427d2a6494a930c7f1a", + "x-ms-correlation-request-id": "b0fc414e-1681-42f4-8249-c5efd88da54f", + "x-ms-ratelimit-remaining-subscription-reads": "11585", + "x-ms-request-id": "b69db30b-cef2-49f1-8b5b-952ce7c15e5a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072335Z:b0fc414e-1681-42f4-8249-c5efd88da54f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0e46ea8d5a011f30cc9b94ea8a0483d2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "431aac7e-c230-4293-8d31-5866303ac8e0", + "x-ms-client-request-id": "0e46ea8d5a011f30cc9b94ea8a0483d2", + "x-ms-correlation-request-id": "c22b7b3a-51a0-4247-afbc-4bd7a9cb59b7", + "x-ms-ratelimit-remaining-subscription-reads": "11584", + "x-ms-request-id": "de5a6d62-2eb4-4b41-8c93-703b6337c288", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072337Z:c22b7b3a-51a0-4247-afbc-4bd7a9cb59b7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2209d38d7f6a6df6fab12987d6725269", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "20e2f122-353d-46d5-b727-6fe1d813d8a9", + "x-ms-client-request-id": "2209d38d7f6a6df6fab12987d6725269", + "x-ms-correlation-request-id": "4acc4085-7180-499f-aa36-aaf61fa7aa1f", + "x-ms-ratelimit-remaining-subscription-reads": "11583", + "x-ms-request-id": "7bcf366d-f1b1-4105-8bc1-a49a863f9836", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072338Z:4acc4085-7180-499f-aa36-aaf61fa7aa1f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b82d15dda36701a119061191143c2ace", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "23830153-70df-4965-b6aa-bbecd35ca32f", + "x-ms-client-request-id": "b82d15dda36701a119061191143c2ace", + "x-ms-correlation-request-id": "c3b088a1-6bf1-4450-8755-58041bed2637", + "x-ms-ratelimit-remaining-subscription-reads": "11582", + "x-ms-request-id": "167169c8-ac1a-45b2-962d-8ad70e824abe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072339Z:c3b088a1-6bf1-4450-8755-58041bed2637" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bfbc77235c020db0f4d8135031a94959", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "a2f464cd-8af3-40d3-989d-efce48b7c163", + "x-ms-client-request-id": "bfbc77235c020db0f4d8135031a94959", + "x-ms-correlation-request-id": "17df1502-b48b-485c-b113-58019ccaec6b", + "x-ms-ratelimit-remaining-subscription-reads": "11581", + "x-ms-request-id": "4a4b7653-b208-4d7b-89f3-b2e590af3805", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072340Z:17df1502-b48b-485c-b113-58019ccaec6b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "750c2b48cbd6e96b320808636e6459bd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b619e6df-7d00-40fe-b9ee-1302bea1651a", + "x-ms-client-request-id": "750c2b48cbd6e96b320808636e6459bd", + "x-ms-correlation-request-id": "88da4b57-f8b2-4c2a-8106-8bf2a7f0ea25", + "x-ms-ratelimit-remaining-subscription-reads": "11580", + "x-ms-request-id": "951d5c35-e222-4552-ac36-772e72bdb861", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072342Z:88da4b57-f8b2-4c2a-8106-8bf2a7f0ea25" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5e645a8693b681666420c48e8f50d070", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0bd8953d-fbfd-4a07-ad7c-437f95b02cc3", + "x-ms-client-request-id": "5e645a8693b681666420c48e8f50d070", + "x-ms-correlation-request-id": "ea7ded3c-f9f6-49ae-a2dc-579a3cd41e30", + "x-ms-ratelimit-remaining-subscription-reads": "11579", + "x-ms-request-id": "b691cef7-bdee-4a19-9b9c-b1bb853c290e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072343Z:ea7ded3c-f9f6-49ae-a2dc-579a3cd41e30" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e848b7bcb52f57f70cd38dfa534c9e8f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "ff9b842e-50fb-48d9-933a-de1b2174d306", + "x-ms-client-request-id": "e848b7bcb52f57f70cd38dfa534c9e8f", + "x-ms-correlation-request-id": "d5aab8dd-0006-4df3-bf81-0dbc3aa31cea", + "x-ms-ratelimit-remaining-subscription-reads": "11578", + "x-ms-request-id": "416feb2d-294e-4e76-b0ff-f814e88ef50a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072344Z:d5aab8dd-0006-4df3-bf81-0dbc3aa31cea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d6c9557fea44b5a3c48b10b607dc59e1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "425590c4-a215-46db-829b-6f67cc201dae", + "x-ms-client-request-id": "d6c9557fea44b5a3c48b10b607dc59e1", + "x-ms-correlation-request-id": "dbd42d63-cffb-4834-8d3d-82b4beb17d85", + "x-ms-ratelimit-remaining-subscription-reads": "11577", + "x-ms-request-id": "4b7f9b7c-bf9c-41d4-907e-d1f7252e8a4d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072345Z:dbd42d63-cffb-4834-8d3d-82b4beb17d85" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b7a69838711bd18e630d52e3066b2d17", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "68a1dc86-6a97-4dd5-9241-3e4f5d1f883d", + "x-ms-client-request-id": "b7a69838711bd18e630d52e3066b2d17", + "x-ms-correlation-request-id": "c114c056-7a0a-49b7-9c39-55d9e5c2cc22", + "x-ms-ratelimit-remaining-subscription-reads": "11576", + "x-ms-request-id": "9766e015-2e3d-44ae-a715-69ebfbac3e41", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072347Z:c114c056-7a0a-49b7-9c39-55d9e5c2cc22" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3a0f3481f987d12c149323a3a4414f2f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e716a9b4-17d7-4e01-a874-4a04317c9f5d", + "x-ms-client-request-id": "3a0f3481f987d12c149323a3a4414f2f", + "x-ms-correlation-request-id": "3301ab20-10c4-452a-a7e1-34a425eae214", + "x-ms-ratelimit-remaining-subscription-reads": "11575", + "x-ms-request-id": "4728feb6-1fa8-4083-bca9-4599ed312476", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072348Z:3301ab20-10c4-452a-a7e1-34a425eae214" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bbc2ab79e7a60e73c7f7733798c0af58", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9b47a42d-5a5f-4ac9-8b65-19b8a0e17a6b", + "x-ms-client-request-id": "bbc2ab79e7a60e73c7f7733798c0af58", + "x-ms-correlation-request-id": "41e89888-eadf-4cfb-b42f-cc7819bb7578", + "x-ms-ratelimit-remaining-subscription-reads": "11574", + "x-ms-request-id": "523b67dd-bd65-4772-b853-e6abdd639cab", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072349Z:41e89888-eadf-4cfb-b42f-cc7819bb7578" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d234f85d1fcc3e596cd4a2884dea2c21", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9a04cbd5-2b6c-4e04-a553-f7c5e9e86c07", + "x-ms-client-request-id": "d234f85d1fcc3e596cd4a2884dea2c21", + "x-ms-correlation-request-id": "a4447224-594f-4664-9c04-277061bfa251", + "x-ms-ratelimit-remaining-subscription-reads": "11573", + "x-ms-request-id": "935c0f7d-a8f5-4aa9-b7d3-dd9248c48039", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072350Z:a4447224-594f-4664-9c04-277061bfa251" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5a6a23bd72a99a71c101728f85f53954", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2ffc8b27-4b98-441c-bd02-3d830c52b915", + "x-ms-client-request-id": "5a6a23bd72a99a71c101728f85f53954", + "x-ms-correlation-request-id": "1830d84a-40e3-4609-a065-727f21faa827", + "x-ms-ratelimit-remaining-subscription-reads": "11572", + "x-ms-request-id": "59bd4b56-87d6-4c7b-934c-e0ffe9070591", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072352Z:1830d84a-40e3-4609-a065-727f21faa827" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ac46cbe47d0c596352834fd144eac0dc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "bea0dc4f-348c-48b4-9bc3-b835a0450921", + "x-ms-client-request-id": "ac46cbe47d0c596352834fd144eac0dc", + "x-ms-correlation-request-id": "d6fa1ee6-bfde-433f-a199-9a399ad99160", + "x-ms-ratelimit-remaining-subscription-reads": "11571", + "x-ms-request-id": "cb0b1376-6029-44a8-a225-74d07ad23a5d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072353Z:d6fa1ee6-bfde-433f-a199-9a399ad99160" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "747952cb5456ebaf869a10cbadc9b976", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6742beaf-b251-4ddc-88c9-115334f86ca5", + "x-ms-client-request-id": "747952cb5456ebaf869a10cbadc9b976", + "x-ms-correlation-request-id": "42e0b5d5-8f8a-4776-8ea0-ee840fc61193", + "x-ms-ratelimit-remaining-subscription-reads": "11570", + "x-ms-request-id": "9e66046c-24eb-418e-b1fc-06103e075d0c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072354Z:42e0b5d5-8f8a-4776-8ea0-ee840fc61193" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "82a34e9a80a44014bf10082522a055d7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "92880732-90bf-49d2-adfc-159f2e568d52", + "x-ms-client-request-id": "82a34e9a80a44014bf10082522a055d7", + "x-ms-correlation-request-id": "7e2fb468-c31a-4850-adde-2387e1e03505", + "x-ms-ratelimit-remaining-subscription-reads": "11569", + "x-ms-request-id": "dcaf04dd-6dcd-42d9-93bc-4316bd365764", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072356Z:7e2fb468-c31a-4850-adde-2387e1e03505" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "33c49540c47b8ffe1b5a26726c98ac88", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "490133ab-f13e-4673-8d12-ca561a894001", + "x-ms-client-request-id": "33c49540c47b8ffe1b5a26726c98ac88", + "x-ms-correlation-request-id": "59444b86-5e21-4124-9e11-b039c71b95d0", + "x-ms-ratelimit-remaining-subscription-reads": "11568", + "x-ms-request-id": "c2c65932-89d3-43d2-80df-c7edc8cba1e8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072357Z:59444b86-5e21-4124-9e11-b039c71b95d0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f536d8ca3e464a383d39b5454c8ac9e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b78d1fea-7baa-49bc-ae1e-4fcf8240c7b1", + "x-ms-client-request-id": "f536d8ca3e464a383d39b5454c8ac9e5", + "x-ms-correlation-request-id": "4fe9047d-02f2-4328-8e15-3fae74654868", + "x-ms-ratelimit-remaining-subscription-reads": "11567", + "x-ms-request-id": "34e0f239-3b3c-496b-8bce-6aec7cbae0f7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072358Z:4fe9047d-02f2-4328-8e15-3fae74654868" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "178a39448604d5fb5014664a59a1d427", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "dbc2e234-e8e7-47fd-852f-0cbb78d982c0", + "x-ms-client-request-id": "178a39448604d5fb5014664a59a1d427", + "x-ms-correlation-request-id": "b201d4c4-344a-4239-a38c-04fec92fd068", + "x-ms-ratelimit-remaining-subscription-reads": "11566", + "x-ms-request-id": "3b58650d-6a07-4d8a-b9e1-dd22339d5fc6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072359Z:b201d4c4-344a-4239-a38c-04fec92fd068" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4a5b7f645f6a01905d79f5420fb84290", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "79cf35e0-7015-40cc-a7f5-59b600098d2c", + "x-ms-client-request-id": "4a5b7f645f6a01905d79f5420fb84290", + "x-ms-correlation-request-id": "a9725abb-619e-42de-b481-6020abe18ad1", + "x-ms-ratelimit-remaining-subscription-reads": "11565", + "x-ms-request-id": "2b657323-4043-4312-892b-e73ba15293c0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072401Z:a9725abb-619e-42de-b481-6020abe18ad1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "322e4091940d4383dc60a432d8eef09b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "df072297-d6f6-44a5-964e-9269226b92e0", + "x-ms-client-request-id": "322e4091940d4383dc60a432d8eef09b", + "x-ms-correlation-request-id": "f4bb097c-406c-493c-a09e-541309feb40c", + "x-ms-ratelimit-remaining-subscription-reads": "11564", + "x-ms-request-id": "af9fc84b-62a3-48e8-a728-bd0cb6a474f5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072402Z:f4bb097c-406c-493c-a09e-541309feb40c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cce08d647e2fe47ba988b98a90b9c698", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e239137a-6fa9-4909-b439-8f2cb9479670", + "x-ms-client-request-id": "cce08d647e2fe47ba988b98a90b9c698", + "x-ms-correlation-request-id": "8afc572f-f2ea-4bf8-b7d6-b1a151bc00dd", + "x-ms-ratelimit-remaining-subscription-reads": "11563", + "x-ms-request-id": "e3d82ddb-b76b-4bb0-ae7b-a6753c2f880c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072403Z:8afc572f-f2ea-4bf8-b7d6-b1a151bc00dd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "19b9d5d1a173cf1afc176d0abb5d296f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0e0b7bf7-937f-4aa7-a8fe-aad9bc89d8ec", + "x-ms-client-request-id": "19b9d5d1a173cf1afc176d0abb5d296f", + "x-ms-correlation-request-id": "e1138536-24a4-45a2-aa4d-cf8557a46e11", + "x-ms-ratelimit-remaining-subscription-reads": "11562", + "x-ms-request-id": "0b5523fa-8371-4c00-9553-e2b8a00dcfbb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072405Z:e1138536-24a4-45a2-aa4d-cf8557a46e11" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "82dd5a8976d81261c54a8885dbf8b323", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "4ef3f6a3-2fd2-48e3-a7a3-c828870d2d9a", + "x-ms-client-request-id": "82dd5a8976d81261c54a8885dbf8b323", + "x-ms-correlation-request-id": "449dcd09-cd42-47d1-af23-312d71aa4562", + "x-ms-ratelimit-remaining-subscription-reads": "11561", + "x-ms-request-id": "e7ceb568-d168-4142-bd56-0ed9f5ead7db", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072406Z:449dcd09-cd42-47d1-af23-312d71aa4562" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "02610c9ad735c3287210d0171170294c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e572c896-e1d9-41b8-bab0-9b8cf95470a4", + "x-ms-client-request-id": "02610c9ad735c3287210d0171170294c", + "x-ms-correlation-request-id": "1fe8f8e5-eb50-41ca-b343-1738a0c8f763", + "x-ms-ratelimit-remaining-subscription-reads": "11560", + "x-ms-request-id": "fccd9ab4-9721-43b1-a168-ed5f97647e9f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072407Z:1fe8f8e5-eb50-41ca-b343-1738a0c8f763" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "36014a5e43db5bbf73a654291895f403", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:24: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": "e107337a-e6ea-4f4d-8a8b-4e862e5b99fb", + "x-ms-client-request-id": "36014a5e43db5bbf73a654291895f403", + "x-ms-correlation-request-id": "bd37f80c-2aaf-4969-ad84-e5c38735ea9a", + "x-ms-ratelimit-remaining-subscription-reads": "11559", + "x-ms-request-id": "1162406e-420f-4d98-853d-dfb48cdacbff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072409Z:bd37f80c-2aaf-4969-ad84-e5c38735ea9a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ae70496427fcb139311a10c7a54a0154", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "c85faa48-bbd7-44d7-9dd0-3c796f4e1a82", + "x-ms-client-request-id": "ae70496427fcb139311a10c7a54a0154", + "x-ms-correlation-request-id": "68fe0f4a-f0d2-4438-b074-30865a263e15", + "x-ms-ratelimit-remaining-subscription-reads": "11558", + "x-ms-request-id": "9ffdddc2-7584-44de-b4fd-f607c9369524", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072410Z:68fe0f4a-f0d2-4438-b074-30865a263e15" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "90263c207cf656474d058e8e83ffaadd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "544cd1d9-d7fc-4676-8afd-5c1910041518", + "x-ms-client-request-id": "90263c207cf656474d058e8e83ffaadd", + "x-ms-correlation-request-id": "f8ac9d59-9aed-4491-972c-6c03b9a819db", + "x-ms-ratelimit-remaining-subscription-reads": "11557", + "x-ms-request-id": "f565aac7-5d17-484d-8df9-9cdfe8ce725c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072412Z:f8ac9d59-9aed-4491-972c-6c03b9a819db" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c7b3cc1c7b00374f105004c133f8b529", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "63908fc1-8fc8-480b-ba73-21bef7cbc573", + "x-ms-client-request-id": "c7b3cc1c7b00374f105004c133f8b529", + "x-ms-correlation-request-id": "799f99ff-6dae-4201-8d90-7bad454b1bd9", + "x-ms-ratelimit-remaining-subscription-reads": "11556", + "x-ms-request-id": "2c727b84-c738-476f-aab3-3ec7bc82b0df", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072413Z:799f99ff-6dae-4201-8d90-7bad454b1bd9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dc08ffa5646ee70d021961f698ab2e32", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "7b8726f9-a805-4164-b3c6-ed5f8e72270d", + "x-ms-client-request-id": "dc08ffa5646ee70d021961f698ab2e32", + "x-ms-correlation-request-id": "f3421db7-ef36-44f7-917e-7c4bac57a88b", + "x-ms-ratelimit-remaining-subscription-reads": "11555", + "x-ms-request-id": "87f9a980-0d6d-4a06-b413-14ea677c4928", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072414Z:f3421db7-ef36-44f7-917e-7c4bac57a88b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d9ab326f3a97a554ecee7fa678862354", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c0f10eb9-e562-4456-b27c-860e6ca4cd9d", + "x-ms-client-request-id": "d9ab326f3a97a554ecee7fa678862354", + "x-ms-correlation-request-id": "924f962d-5aa9-4cae-917a-96df5454f904", + "x-ms-ratelimit-remaining-subscription-reads": "11554", + "x-ms-request-id": "1843db47-f19f-46ff-b5be-d35d56642d58", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072415Z:924f962d-5aa9-4cae-917a-96df5454f904" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "84e96550cdf6b86ebecbc5e71a599f65", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "d9a46975-157e-4b9c-b1fe-2847ca8ea167", + "x-ms-client-request-id": "84e96550cdf6b86ebecbc5e71a599f65", + "x-ms-correlation-request-id": "fc6cd0b9-66ad-44af-a236-0fc8d9ded987", + "x-ms-ratelimit-remaining-subscription-reads": "11553", + "x-ms-request-id": "5fe5b928-8c53-426d-bd68-00433d226dbd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072417Z:fc6cd0b9-66ad-44af-a236-0fc8d9ded987" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0051d122dc4d6b92ab63ef80e4676e7b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "26c52b9a-74a3-4323-adc7-44e1abec84bc", + "x-ms-client-request-id": "0051d122dc4d6b92ab63ef80e4676e7b", + "x-ms-correlation-request-id": "30d1ad58-7885-4e40-88c2-e79fb4c092cc", + "x-ms-ratelimit-remaining-subscription-reads": "11552", + "x-ms-request-id": "2ebc5e54-fcc4-4e3b-bc60-722b8c99f8fc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072418Z:30d1ad58-7885-4e40-88c2-e79fb4c092cc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "33a60cf5a9c1a23cc4f31acb746c8b93", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1213a829-9d0d-4eea-be96-aa98eec2e14b", + "x-ms-client-request-id": "33a60cf5a9c1a23cc4f31acb746c8b93", + "x-ms-correlation-request-id": "ba0d97a8-b026-428e-b2da-12b6f3f5e357", + "x-ms-ratelimit-remaining-subscription-reads": "11551", + "x-ms-request-id": "64605041-fc17-4f34-8aad-3c90987fe752", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072419Z:ba0d97a8-b026-428e-b2da-12b6f3f5e357" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a7831a4f23347307d27ed893deeed357", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9a6a5bbc-0065-4a59-b1df-592b55c7fad0", + "x-ms-client-request-id": "a7831a4f23347307d27ed893deeed357", + "x-ms-correlation-request-id": "aa01f334-462a-4e4c-b96b-1291ed64b3dd", + "x-ms-ratelimit-remaining-subscription-reads": "11550", + "x-ms-request-id": "4a692cec-3d1c-4117-bbe7-8659e8bb1ffd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072421Z:aa01f334-462a-4e4c-b96b-1291ed64b3dd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0df2495d6bb278a394af3c5ac1c7f63e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "aea9803f-2bb8-4ab9-860c-b4e8f5691e77", + "x-ms-client-request-id": "0df2495d6bb278a394af3c5ac1c7f63e", + "x-ms-correlation-request-id": "5b0a269a-abd4-4875-b45b-d800815181dc", + "x-ms-ratelimit-remaining-subscription-reads": "11549", + "x-ms-request-id": "f26fa7fb-7724-4eda-b0cc-74931b82247e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072422Z:5b0a269a-abd4-4875-b45b-d800815181dc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c9315cd7c7e3d14705326043d0a9c3d6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2d66ec34-897b-49a5-8341-2374fec6238a", + "x-ms-client-request-id": "c9315cd7c7e3d14705326043d0a9c3d6", + "x-ms-correlation-request-id": "d559669a-1974-4e88-82e5-9a60399a9b59", + "x-ms-ratelimit-remaining-subscription-reads": "11548", + "x-ms-request-id": "f7ca52f1-5162-423b-b1b1-7706746731ba", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072423Z:d559669a-1974-4e88-82e5-9a60399a9b59" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2b6ec21f7d7ae3e0760b1285e7acb20b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2e3974eb-5e3b-47e0-b301-43f30894815a", + "x-ms-client-request-id": "2b6ec21f7d7ae3e0760b1285e7acb20b", + "x-ms-correlation-request-id": "b05be139-0d82-4ea8-9af4-1f9417faa595", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "9d2371be-bfd9-4475-83ec-a2c54aa16824", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072425Z:b05be139-0d82-4ea8-9af4-1f9417faa595" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "82bb9a8709bc9573022008800a60a7eb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "60a1e876-72a9-4c70-a691-8bde219dedde", + "x-ms-client-request-id": "82bb9a8709bc9573022008800a60a7eb", + "x-ms-correlation-request-id": "67f12b57-9234-4e71-9184-30136ce6293e", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "39a561ae-e09b-4ef9-b7c4-ee6a49c93d69", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072426Z:67f12b57-9234-4e71-9184-30136ce6293e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ff3b66ebcb595ac37b4d52d8b5c2ea58", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "3f843e14-8724-4e21-827f-2df9a5821143", + "x-ms-client-request-id": "ff3b66ebcb595ac37b4d52d8b5c2ea58", + "x-ms-correlation-request-id": "feffba9b-4c92-4152-a323-0d3f5620e36c", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "4cff7c3a-6178-4c51-a6f1-fe7afa12bae3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072428Z:feffba9b-4c92-4152-a323-0d3f5620e36c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "36bb558041ed15194ed8285a7560d916", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "cf48bcea-0f2f-4bff-b265-2048410d61d4", + "x-ms-client-request-id": "36bb558041ed15194ed8285a7560d916", + "x-ms-correlation-request-id": "4c7bc434-3168-449d-846e-821846edbc3e", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "5a4c10a4-7303-4dcd-aa78-c2d5311c8760", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072429Z:4c7bc434-3168-449d-846e-821846edbc3e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "80992663b271bcb2d660066fb79bdf40", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "19e0b666-0c89-448c-b0c4-573933461cd5", + "x-ms-client-request-id": "80992663b271bcb2d660066fb79bdf40", + "x-ms-correlation-request-id": "a64c07a1-9bd3-4012-af43-ef4e560ecc72", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "c3882b48-989b-407a-b621-a1bcb2e2e14a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072430Z:a64c07a1-9bd3-4012-af43-ef4e560ecc72" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b400af3671a4aafe4d25b080a269e51b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "38f40027-9857-41a9-9064-87daae59a7a5", + "x-ms-client-request-id": "b400af3671a4aafe4d25b080a269e51b", + "x-ms-correlation-request-id": "615f6563-214e-4d72-ae7c-7db065c90297", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "f7407a6f-789f-4eb3-a030-e4a6a7f20efd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072432Z:615f6563-214e-4d72-ae7c-7db065c90297" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8f753c736928cde7a3ff5f8c3aa95eb3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3dfad45e-ecef-42d8-bd9c-adbc8679c41a", + "x-ms-client-request-id": "8f753c736928cde7a3ff5f8c3aa95eb3", + "x-ms-correlation-request-id": "1c463765-c17b-4f2f-92d8-106823878b83", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "ab5dcbae-8d85-4ec9-83f4-569dad8b28cf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072433Z:1c463765-c17b-4f2f-92d8-106823878b83" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c524e8f8245ff27228ee334b02311a6d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "616aa920-b902-4a75-a533-cb01c8f5da76", + "x-ms-client-request-id": "c524e8f8245ff27228ee334b02311a6d", + "x-ms-correlation-request-id": "713600b2-29e2-4067-8cda-af3fdf9d9501", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "531c4ea7-f237-47a4-80d8-e64f7b68c7dd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072434Z:713600b2-29e2-4067-8cda-af3fdf9d9501" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7afceb7b5026cc17c83211a5117170a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "55d50eb0-c4f9-4327-853c-dafb3df5cfd0", + "x-ms-client-request-id": "7afceb7b5026cc17c83211a5117170a4", + "x-ms-correlation-request-id": "3e28c18f-ee97-49cc-8d3d-493f4c5e09ee", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "b8fda539-10d7-4a59-882f-dde549217630", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072435Z:3e28c18f-ee97-49cc-8d3d-493f4c5e09ee" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ba87fcc71f454fbbca836739359bca71", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "4684015e-cd56-4fd3-90e3-3092c10cde20", + "x-ms-client-request-id": "ba87fcc71f454fbbca836739359bca71", + "x-ms-correlation-request-id": "05bc0a47-dd00-43b7-b1a6-d211b037a0d1", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "d62e3e5e-17ca-4875-a4c2-de1208236561", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072437Z:05bc0a47-dd00-43b7-b1a6-d211b037a0d1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4e11f2e5e3aca78dd057fd2d12cce0b6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c9a699d2-4b56-403f-a48c-9b4eaa810cdb", + "x-ms-client-request-id": "4e11f2e5e3aca78dd057fd2d12cce0b6", + "x-ms-correlation-request-id": "22d6814a-d4de-492b-8569-1fda040158cd", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "e493aed0-434b-4c47-967b-746f6aad0db5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072438Z:22d6814a-d4de-492b-8569-1fda040158cd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "06848f7e5faa5b2730adb0a3e9dd962d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7618f93b-70a9-41eb-b2af-dd8ee7b1ca80", + "x-ms-client-request-id": "06848f7e5faa5b2730adb0a3e9dd962d", + "x-ms-correlation-request-id": "f2ae8282-dded-4ac9-9cdd-c6f246b305a0", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "9fd5b070-5506-4713-8837-6d3fdce2c53a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072439Z:f2ae8282-dded-4ac9-9cdd-c6f246b305a0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1fc0a0682160e3f76fdfe9ed228e3cfd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "a6c27da2-58f1-44a1-81ba-47ccf3fedb00", + "x-ms-client-request-id": "1fc0a0682160e3f76fdfe9ed228e3cfd", + "x-ms-correlation-request-id": "230e435a-a953-4f9d-809a-6ec785908517", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "d9f8cb37-85c2-487e-beaf-0d314ea7900e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072441Z:230e435a-a953-4f9d-809a-6ec785908517" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a6bbb0a2c41685c7cab51eff32eabef3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d1171735-53ac-4c85-bda1-80580df018f4", + "x-ms-client-request-id": "a6bbb0a2c41685c7cab51eff32eabef3", + "x-ms-correlation-request-id": "9250defa-9679-4df3-a715-3e95dd17cb9d", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "3927c645-8128-4a77-a0d3-5758582fb5c3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072442Z:9250defa-9679-4df3-a715-3e95dd17cb9d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "72c5d0c1c00c5d5698a097ca763a39a2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c59bbd68-577e-4781-9faa-e6a78a271d3b", + "x-ms-client-request-id": "72c5d0c1c00c5d5698a097ca763a39a2", + "x-ms-correlation-request-id": "ab165d41-a763-422a-8e8d-ff0690f7eb7c", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "4c2cfce1-d67e-40cc-be6b-703554e07be5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072443Z:ab165d41-a763-422a-8e8d-ff0690f7eb7c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3900b371ef22a316d83b55aa02f7b084", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "88f8f53a-78a9-4421-89b5-35da441ec270", + "x-ms-client-request-id": "3900b371ef22a316d83b55aa02f7b084", + "x-ms-correlation-request-id": "cc9a99f1-0cec-47a9-ab76-5a857bd1e0eb", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "5ba00bd1-c770-4237-a3eb-46d576c14ee5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072445Z:cc9a99f1-0cec-47a9-ab76-5a857bd1e0eb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "522cf621c9c9e2f15a5d0e762cfd0e90", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "39d842a7-7bd3-4e9d-b4fc-35988b50d3ba", + "x-ms-client-request-id": "522cf621c9c9e2f15a5d0e762cfd0e90", + "x-ms-correlation-request-id": "d6cc72f0-694f-499b-aee8-ada45dad4143", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "bcf94831-eb7e-4919-b224-5ef7e60942bc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072446Z:d6cc72f0-694f-499b-aee8-ada45dad4143" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7f8e7c7c85ead1d0ba219ad06bab5aa0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "69d80a1f-c646-4d51-be2f-007a1439fe88", + "x-ms-client-request-id": "7f8e7c7c85ead1d0ba219ad06bab5aa0", + "x-ms-correlation-request-id": "32c1ae6b-dd8a-45d3-9dbc-38e17bee215e", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "566db3d3-2f7a-47e5-aa8a-a98366075eb1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072447Z:32c1ae6b-dd8a-45d3-9dbc-38e17bee215e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "80a812efe60da8d9c11ddec4e19f77db", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3d0ba4ca-1ef0-44fe-9fbf-f25a957348b5", + "x-ms-client-request-id": "80a812efe60da8d9c11ddec4e19f77db", + "x-ms-correlation-request-id": "aaa9cc84-3294-492c-8ed1-666690a3bc9e", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "eaad35d4-e212-4c9e-b396-ac19dc0392d7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072448Z:aaa9cc84-3294-492c-8ed1-666690a3bc9e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "862ec42c30699c9a255b98a72e2076af", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a762ecba-8e0f-4cc5-8a3e-92ef668014fe", + "x-ms-client-request-id": "862ec42c30699c9a255b98a72e2076af", + "x-ms-correlation-request-id": "17c3146a-951f-4d82-a18e-22f4dbd080cd", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "58f3604c-f433-489a-8b40-7ae32dfd91ef", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072450Z:17c3146a-951f-4d82-a18e-22f4dbd080cd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1a866d028e549582a3e6becca60bef1a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0427db1c-b8a8-404e-b3bf-6da0d2e39b6d", + "x-ms-client-request-id": "1a866d028e549582a3e6becca60bef1a", + "x-ms-correlation-request-id": "be6f3a68-5bc3-4c86-b994-82c8403bc5d6", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "4dc1be82-8d77-4ba7-926b-ebb051a20982", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072451Z:be6f3a68-5bc3-4c86-b994-82c8403bc5d6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a6a4beaad47cbe37780b5ab24e3179a0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "cbf4d3a5-67f5-43bc-8db7-ba766ada4fdd", + "x-ms-client-request-id": "a6a4beaad47cbe37780b5ab24e3179a0", + "x-ms-correlation-request-id": "d081fdac-7465-43b1-936f-2af96eb23a15", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "22900b0d-af07-4f38-b518-8a89d46d650c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072452Z:d081fdac-7465-43b1-936f-2af96eb23a15" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "73c22fa65c189e864298e38372cef619", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c3dc743e-c50f-43c3-ad6d-137306ba3b0f", + "x-ms-client-request-id": "73c22fa65c189e864298e38372cef619", + "x-ms-correlation-request-id": "7c8b3199-05ab-4dff-a739-fd49c2b20ffb", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "14e6359b-bda5-4793-b100-04765a9b9814", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072454Z:7c8b3199-05ab-4dff-a739-fd49c2b20ffb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "70fd7d6bd07c2e3236c8a24833d04671", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "dbe96ada-9c42-464a-8388-726025590473", + "x-ms-client-request-id": "70fd7d6bd07c2e3236c8a24833d04671", + "x-ms-correlation-request-id": "b87c387d-021b-40bc-ba5e-c7f24aec788d", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "b7d1fc95-a4fe-48fb-a016-91c8dad06ecb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072455Z:b87c387d-021b-40bc-ba5e-c7f24aec788d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "77251d6d7b494d01370564e3f1b44ca9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1cc90cfb-4be5-4ab8-b753-cb2e7fd937ca", + "x-ms-client-request-id": "77251d6d7b494d01370564e3f1b44ca9", + "x-ms-correlation-request-id": "f07364ec-a318-4889-8fa3-67b9e8257c91", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "40603b16-98df-4646-b881-7455455b28b4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072457Z:f07364ec-a318-4889-8fa3-67b9e8257c91" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d14641150833d624fc943d50ba3e6a71", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "c792e170-124b-475b-bf95-3cec469ce4d3", + "x-ms-client-request-id": "d14641150833d624fc943d50ba3e6a71", + "x-ms-correlation-request-id": "520d171a-6c99-47cf-8eac-f3949bef6b50", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "fb71ba9c-19a7-4d6d-aa18-64d0e1a54759", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072458Z:520d171a-6c99-47cf-8eac-f3949bef6b50" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "541571527ea8f0cf7bb038766b4e3c82", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "bdd0a4a8-f7f4-4369-b63d-225d28b251c2", + "x-ms-client-request-id": "541571527ea8f0cf7bb038766b4e3c82", + "x-ms-correlation-request-id": "14b7a8c9-b6dd-4e96-9a73-b21f439fec15", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "4bc8840b-6328-49fe-b0a1-252273e39594", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072459Z:14b7a8c9-b6dd-4e96-9a73-b21f439fec15" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f132f87b7589643ef94e7ab53eb092f9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "deeb35f4-71a7-40b8-94e9-5b3ab822d889", + "x-ms-client-request-id": "f132f87b7589643ef94e7ab53eb092f9", + "x-ms-correlation-request-id": "80176d2e-8720-4077-85ec-406d6a223627", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "51191217-86b0-4779-8838-f67a1076355d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072501Z:80176d2e-8720-4077-85ec-406d6a223627" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8091f29af79e970072565582d0ad6aad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a887d469-251d-4075-bb59-b9c20a50dcfa", + "x-ms-client-request-id": "8091f29af79e970072565582d0ad6aad", + "x-ms-correlation-request-id": "5962e35a-3c97-47c0-b5cf-8aa9564f3da4", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "7ce93e68-9a96-4fc3-9e7a-caffd75db283", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072502Z:5962e35a-3c97-47c0-b5cf-8aa9564f3da4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c1d4ba57790bdce732b15b5a0319b1cb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "4164d37b-0ffe-4a26-aaa9-38badb79640e", + "x-ms-client-request-id": "c1d4ba57790bdce732b15b5a0319b1cb", + "x-ms-correlation-request-id": "9151a463-446e-4b56-9ebf-9e3fe77af288", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "58408ca7-e710-4f40-a66c-5785f1009584", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072503Z:9151a463-446e-4b56-9ebf-9e3fe77af288" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "78db3f1dbcbd84e4f79b7f3320bc944c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "da0c744b-ddbd-405f-a9c7-298f77778875", + "x-ms-client-request-id": "78db3f1dbcbd84e4f79b7f3320bc944c", + "x-ms-correlation-request-id": "1ade2627-07aa-4789-a838-4c8a169e35f0", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "719d16bb-c96c-4724-8baf-3f757e7e9d2b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072505Z:1ade2627-07aa-4789-a838-4c8a169e35f0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "845ecde3d0db21ed0bb44dec9ca69358", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d31c9b72-b266-4130-91f2-effb5697f008", + "x-ms-client-request-id": "845ecde3d0db21ed0bb44dec9ca69358", + "x-ms-correlation-request-id": "b48f7fe3-4655-4091-95ad-ffb62a179c2c", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "807777cb-c1f2-4a26-a5c8-3f1b312c12bf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072506Z:b48f7fe3-4655-4091-95ad-ffb62a179c2c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "91648aa5f1d19af0d550ca6ff9b4bc76", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "16dcaf79-f2e2-4c65-86fe-fe0557b34967", + "x-ms-client-request-id": "91648aa5f1d19af0d550ca6ff9b4bc76", + "x-ms-correlation-request-id": "cc78b580-7baa-4852-8ed1-631fdc50bd59", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "6aaac5cd-11c0-46d0-992f-fb3f98590429", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072507Z:cc78b580-7baa-4852-8ed1-631fdc50bd59" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "36760f1d2dbb4cef51ba6d086ff7e850", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "97120ff7-da8a-4f0d-9d53-c45a2b536d37", + "x-ms-client-request-id": "36760f1d2dbb4cef51ba6d086ff7e850", + "x-ms-correlation-request-id": "6f2a791b-5a3a-40ce-b4de-c71bbb2e984e", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "f12bf98c-901e-4692-9720-ce06f7c5e4fd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072508Z:6f2a791b-5a3a-40ce-b4de-c71bbb2e984e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "968e27080257f27addc3ae8b067e2756", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3d417cea-9264-43ce-b56b-cae7c80839b7", + "x-ms-client-request-id": "968e27080257f27addc3ae8b067e2756", + "x-ms-correlation-request-id": "47afa5b9-8900-4be3-89c7-fa76570f9934", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "536bc4ad-f496-420e-833f-f75213ba974e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072510Z:47afa5b9-8900-4be3-89c7-fa76570f9934" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8ccfd6f85d30779d9b18401683e72bde", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7c129b20-18e1-43c0-88a4-ac5d78b568d6", + "x-ms-client-request-id": "8ccfd6f85d30779d9b18401683e72bde", + "x-ms-correlation-request-id": "c3ad4608-0036-4fca-a6ee-1c8516d4f271", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "551d2c60-80ad-4a7f-8465-f2130f1d1bd2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072511Z:c3ad4608-0036-4fca-a6ee-1c8516d4f271" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d267796726261a1f948458f77f6346d2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b6ed9e3f-0872-47ea-af72-8db1635551aa", + "x-ms-client-request-id": "d267796726261a1f948458f77f6346d2", + "x-ms-correlation-request-id": "abe96191-f292-483f-83bf-e3cb13992041", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "097d7ceb-33f1-47a7-b513-192296ae8fff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072512Z:abe96191-f292-483f-83bf-e3cb13992041" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "981017925b28ab208a16fb3fc2636ef5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "bff55c91-c2b8-484e-bd93-a1b861a88bc4", + "x-ms-client-request-id": "981017925b28ab208a16fb3fc2636ef5", + "x-ms-correlation-request-id": "bb8c25ad-b506-4ec2-89a1-9d79ef46b92c", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "7bf7e00e-6d0f-441c-a318-bac0ce86371b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072514Z:bb8c25ad-b506-4ec2-89a1-9d79ef46b92c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8c23cf985516d22fb7b4f8ab04a5f837", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7bb20aca-79f3-4804-9963-dd66eab631e5", + "x-ms-client-request-id": "8c23cf985516d22fb7b4f8ab04a5f837", + "x-ms-correlation-request-id": "e8597a82-50ed-4adb-94a8-590bb810e9bf", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "13b7a809-6baf-433f-aa39-2e8bf3f63649", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072515Z:e8597a82-50ed-4adb-94a8-590bb810e9bf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6c846dd193d70cb659bc48102be05830", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "7f21b348-79f5-4266-9fa4-de1525f247e0", + "x-ms-client-request-id": "6c846dd193d70cb659bc48102be05830", + "x-ms-correlation-request-id": "d9337c0e-5fab-495a-ae4e-cb1c7118ca80", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "cd44638e-82c0-4124-9fa0-6cce5c104eb2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072516Z:d9337c0e-5fab-495a-ae4e-cb1c7118ca80" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "af5f6216b93f3cbce73ee0736274a7e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f4681da8-e9c3-41ff-b751-d205fb1d8f15", + "x-ms-client-request-id": "af5f6216b93f3cbce73ee0736274a7e4", + "x-ms-correlation-request-id": "76983a1e-dacc-4869-9caf-4cfaefcd5177", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "019bfa3c-716c-41b6-9dc9-2db2411080c8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072517Z:76983a1e-dacc-4869-9caf-4cfaefcd5177" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "556dc31e01df051e1917335a0d1fa6d7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "73790a5b-37a8-4301-b95a-0d0a31c9a649", + "x-ms-client-request-id": "556dc31e01df051e1917335a0d1fa6d7", + "x-ms-correlation-request-id": "8eb92a67-1837-4ecf-a771-d36ff1bff60a", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "792a9e70-5cb4-43d6-aae2-c0ef344385fe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072519Z:8eb92a67-1837-4ecf-a771-d36ff1bff60a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a195c85c484617f7b1478499b243a9e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "879a4b7a-791b-45f6-9437-e30cd281bef7", + "x-ms-client-request-id": "a195c85c484617f7b1478499b243a9e5", + "x-ms-correlation-request-id": "51b3aab8-1433-4e00-b8af-6c39962fb998", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "13e0f047-7452-4b1d-a79a-c5ba01f6a66b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072520Z:51b3aab8-1433-4e00-b8af-6c39962fb998" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "67f16314037214504459962786612fc8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1232a841-0da4-48b2-bc36-6c7017fcbde4", + "x-ms-client-request-id": "67f16314037214504459962786612fc8", + "x-ms-correlation-request-id": "5b8a5507-cf6b-467b-849b-d5d9e6d93f0b", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "d503439f-051c-4c16-839d-e0ce8acf9bc6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072521Z:5b8a5507-cf6b-467b-849b-d5d9e6d93f0b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9a16089705ded59dcb55a3977d8552d6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7624627b-62c9-4f33-91bc-88adc4888642", + "x-ms-client-request-id": "9a16089705ded59dcb55a3977d8552d6", + "x-ms-correlation-request-id": "0725282e-4381-4889-899d-6bc2aeb129ae", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "c5deb33b-540a-4818-853f-23ea11f55c44", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072523Z:0725282e-4381-4889-899d-6bc2aeb129ae" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a9454d6e3f2d596577815cecb2d0904f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b20d43b5-a58e-46f5-918b-8731952847ab", + "x-ms-client-request-id": "a9454d6e3f2d596577815cecb2d0904f", + "x-ms-correlation-request-id": "6fc8dd58-1527-4729-82c9-42fa4f59cd4f", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "dd459427-0663-4b5c-be7d-6d8f5fedb065", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072524Z:6fc8dd58-1527-4729-82c9-42fa4f59cd4f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a901bc170e2c0e06c51b9c1c5fb996be", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "251da782-6dc1-44b0-be33-d48d7e437980", + "x-ms-client-request-id": "a901bc170e2c0e06c51b9c1c5fb996be", + "x-ms-correlation-request-id": "bcb10dfb-0ed7-492c-9837-87f2421a1f1c", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "3a6a3b16-0499-4f3a-b99f-83668866c2c5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072525Z:bcb10dfb-0ed7-492c-9837-87f2421a1f1c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "38b9bf06861b589aa3bc235da9b123fb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b34fc39a-1174-4263-ae71-45e4d179f44e", + "x-ms-client-request-id": "38b9bf06861b589aa3bc235da9b123fb", + "x-ms-correlation-request-id": "173db634-eaf4-473b-97cf-d5f5c59f543b", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "18e75878-a6da-4b3a-a231-dd5bb760c964", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072526Z:173db634-eaf4-473b-97cf-d5f5c59f543b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c17f54c4a9835fa94736e312a248fabe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5706c8da-1ef1-4d01-834a-eb0d0004148a", + "x-ms-client-request-id": "c17f54c4a9835fa94736e312a248fabe", + "x-ms-correlation-request-id": "d3758814-9004-441f-a7a1-12ea2a286ffe", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "0f8af918-fb51-4cea-8372-9d2b5bd29d1a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072528Z:d3758814-9004-441f-a7a1-12ea2a286ffe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f2e69dea5816913421a9056feba96514", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "7ddf3802-20f4-4400-a8cd-653213ffca0a", + "x-ms-client-request-id": "f2e69dea5816913421a9056feba96514", + "x-ms-correlation-request-id": "dd4f8325-d54c-49eb-b014-a867cfddb3ad", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "d14535ca-75d8-4199-a27c-3e13e85ace71", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072529Z:dd4f8325-d54c-49eb-b014-a867cfddb3ad" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0b58a0f8d5395d3b155af1e4a288b55b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0d57f2b3-bb84-46be-861b-33dca4c77fae", + "x-ms-client-request-id": "0b58a0f8d5395d3b155af1e4a288b55b", + "x-ms-correlation-request-id": "ace190d1-77dd-4c87-9f03-ae8419e89b65", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "73f09013-8a52-4dd9-87ca-1ffaa73398c7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072530Z:ace190d1-77dd-4c87-9f03-ae8419e89b65" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0b7264c230ca6ce520ee9fd9a33a739d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d0e28f32-2005-4a37-bb15-c3e6d0ccc875", + "x-ms-client-request-id": "0b7264c230ca6ce520ee9fd9a33a739d", + "x-ms-correlation-request-id": "bf808614-42fa-4afd-9b69-49b680a9bada", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "44a1b5be-8763-4a11-b0ed-0032c87109be", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072531Z:bf808614-42fa-4afd-9b69-49b680a9bada" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0219ced0eff015856288ddbc664fef99", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "305d2baf-5a40-4cc7-a7f6-9718fa223ec9", + "x-ms-client-request-id": "0219ced0eff015856288ddbc664fef99", + "x-ms-correlation-request-id": "5fa43de6-6ccc-4b13-ab9e-3270a22de557", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "a5b47a50-f211-4b9b-9f49-2efbe914c205", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072533Z:5fa43de6-6ccc-4b13-ab9e-3270a22de557" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/471e3b04-4b08-4bbd-8967-69e97d42cd6f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "86adaaf45a37c74abbebeb4a3561b9db", + "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, 08 Sep 2021 07:25:33 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": "b0de7849-0ee5-44ea-bb07-1f2580d32627", + "x-ms-client-request-id": "86adaaf45a37c74abbebeb4a3561b9db", + "x-ms-correlation-request-id": "dd571c2e-4153-42ea-9f0c-eca9d63f3d16", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "2a1c58c3-48f2-4f86-b816-7220d230e787", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072534Z:dd571c2e-4153-42ea-9f0c-eca9d63f3d16" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + } + ], + "Variables": { + "LOCATION": "westus2", + "RandomSeed": "1469873231", + "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/BastionHostContainerTests/CreateOrUpdate.json b/sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/BastionHostContainerTests/CreateOrUpdate.json new file mode 100644 index 0000000000000..a88f6bffbdee4 --- /dev/null +++ b/sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/BastionHostContainerTests/CreateOrUpdate.json @@ -0,0 +1,17700 @@ +{ + "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-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fa04fe5481626712b2fad2f733a7fff0", + "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, 08 Sep 2021 06:39:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "af6f8326-731a-48e7-a40b-45d5b718e44f", + "x-ms-ratelimit-remaining-subscription-reads": "11775", + "x-ms-request-id": "af6f8326-731a-48e7-a40b-45d5b718e44f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063907Z:af6f8326-731a-48e7-a40b-45d5b718e44f" + }, + "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/bastionrg-5755?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-338518c689946e4f840868f535e818df-7b46eee875f2a949-00", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c6366205401066067dd38f9f21c24949", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "226", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:39:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "6abf3c78-0e85-4aa0-8df3-5e5291769255", + "x-ms-ratelimit-remaining-subscription-reads": "11774", + "x-ms-request-id": "6abf3c78-0e85-4aa0-8df3-5e5291769255", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063907Z:6abf3c78-0e85-4aa0-8df3-5e5291769255" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755", + "name": "bastionrg-5755", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e9170abf80f23d0091d5385cd49e99a7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1246", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:39:07 GMT", + "ETag": "W/\u002273c13dd6-acae-4dd9-a932-448e78e62f87\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": "d673b3f5-c92a-4e48-aef5-8827d8b4fc27", + "x-ms-client-request-id": "e9170abf80f23d0091d5385cd49e99a7", + "x-ms-correlation-request-id": "c48dedb0-5815-47fc-9549-35687c930786", + "x-ms-ratelimit-remaining-subscription-reads": "11773", + "x-ms-request-id": "761e18ee-734b-4e59-af92-d8eda7e79afa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063908Z:c48dedb0-5815-47fc-9549-35687c930786" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022vnet-166\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002273c13dd6-acae-4dd9-a932-448e78e62f87\\\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: \u00229692cf54-c17f-418b-8261-5e5404984cd4\u0022,\r\n", + " \u0022addressSpace\u0022: {\r\n", + " \u0022addressPrefixes\u0022: [\r\n", + " \u002210.0.0.0/16\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022subnets\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022AzureBastionSubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166/subnets/AzureBastionSubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002273c13dd6-acae-4dd9-a932-448e78e62f87\\\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/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166/subnets/AzureBastionSubnet?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d9f5e1c492601440f79e7c8ef27246ef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "550", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:39:08 GMT", + "ETag": "W/\u002273c13dd6-acae-4dd9-a932-448e78e62f87\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": "c8c1b3b9-3fdc-483a-8726-420b34733790", + "x-ms-client-request-id": "d9f5e1c492601440f79e7c8ef27246ef", + "x-ms-correlation-request-id": "dd56fe32-3531-42df-9e3d-4c0b43a4065b", + "x-ms-ratelimit-remaining-subscription-reads": "11772", + "x-ms-request-id": "076da882-d08a-4444-89e2-4424cbf8db7a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063908Z:dd56fe32-3531-42df-9e3d-4c0b43a4065b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022AzureBastionSubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166/subnets/AzureBastionSubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002273c13dd6-acae-4dd9-a932-448e78e62f87\\\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/bastionrg-5755/providers/Microsoft.Network/publicIPAddresses/ip-7939?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "293789b0168f85fd62f9343a07a991de", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "665", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:39:08 GMT", + "ETag": "W/\u002293232684-7eb7-4a18-ba86-7a59e530fc43\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": "fe1d1087-7097-4997-89b2-b4cb6afa969f", + "x-ms-client-request-id": "293789b0168f85fd62f9343a07a991de", + "x-ms-correlation-request-id": "ed60b196-c4dc-40d7-9b99-be526839c02a", + "x-ms-ratelimit-remaining-subscription-reads": "11771", + "x-ms-request-id": "fc187086-afe4-4440-9b3b-b40aff034301", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063908Z:ed60b196-c4dc-40d7-9b99-be526839c02a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022ip-7939\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/publicIPAddresses/ip-7939\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002293232684-7eb7-4a18-ba86-7a59e530fc43\\\u0022\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022452cc13c-6c20-4dcf-9d83-4519820eb94f\u0022,\r\n", + " \u0022ipAddress\u0022: \u002252.151.15.185\u0022,\r\n", + " \u0022publicIPAddressVersion\u0022: \u0022IPv4\u0022,\r\n", + " \u0022publicIPAllocationMethod\u0022: \u0022Static\u0022,\r\n", + " \u0022idleTimeoutInMinutes\u0022: 4,\r\n", + " \u0022ipTags\u0022: []\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/publicIPAddresses\u0022,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Standard\u0022,\r\n", + " \u0022tier\u0022: \u0022Regional\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-9302?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "468", + "Content-Type": "application/json", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cd3fdae7e96fc92c02f25404714a1e8f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "id": null, + "properties": { + "ipConfigurations": [ + { + "name": "bastionIPConfig-5532", + "id": null, + "properties": { + "subnet": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166/subnets/AzureBastionSubnet" + }, + "publicIPAddress": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/publicIPAddresses/ip-7939" + } + } + } + ] + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "1455", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:39:15 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": "048d75ad-be57-4acb-be68-2e253e6b005c", + "x-ms-client-request-id": "cd3fdae7e96fc92c02f25404714a1e8f", + "x-ms-correlation-request-id": "2687f6ca-a97d-4e4c-8cbf-dd9f6a7fb825", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "3dc3bc66-53c3-476a-9be7-5367788d553e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063915Z:2687f6ca-a97d-4e4c-8cbf-dd9f6a7fb825" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022bastion-9302\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-9302\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002239e441a9-563b-4858-957f-6d51478c26f1\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022scaleUnits\u0022: 2,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022bastionIPConfig-5532\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-9302/bastionHostIpConfigurations/bastionIPConfig-5532\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002239e441a9-563b-4858-957f-6d51478c26f1\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts/bastionHostIpConfigurations\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/bastionrg-5755/providers/Microsoft.Network/publicIPAddresses/ip-7939\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166/subnets/AzureBastionSubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022bastionShareableLinks\u0022: {}\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "970a559d2106a0400a5f8c24a981f1af", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:39:15 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": "c9e6cb37-8678-43ea-a222-cb682e8648a5", + "x-ms-client-request-id": "970a559d2106a0400a5f8c24a981f1af", + "x-ms-correlation-request-id": "05fbbcf7-c39a-4d36-a01d-c3a39a7eceaa", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "8c601f5c-70a2-49d1-9a32-f32f2258bab2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063916Z:05fbbcf7-c39a-4d36-a01d-c3a39a7eceaa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fdbeaa157746d0c92c5b5df882cec3f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:39:17 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": "d30e5252-19ac-4816-98de-62dc32be2176", + "x-ms-client-request-id": "fdbeaa157746d0c92c5b5df882cec3f5", + "x-ms-correlation-request-id": "1b272e34-1aa2-4739-87f1-75000d1eb506", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "b0dbdcd1-3b4e-49fc-ae80-fc0bb175a3fa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063917Z:1b272e34-1aa2-4739-87f1-75000d1eb506" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1c6647a3863f27896baa5c108a8a3aee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:39:18 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": "80affcdd-e6a5-4b86-bcc2-418461ef982b", + "x-ms-client-request-id": "1c6647a3863f27896baa5c108a8a3aee", + "x-ms-correlation-request-id": "e45753e5-0aab-410e-840b-af84d4e623f7", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "65c1e639-7705-4e14-9296-b77de2408956", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063919Z:e45753e5-0aab-410e-840b-af84d4e623f7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5b48b785504e25c58c3a6baac3481d3b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:39:20 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": "fcc6335b-089c-4bc3-860b-7977fed77c4a", + "x-ms-client-request-id": "5b48b785504e25c58c3a6baac3481d3b", + "x-ms-correlation-request-id": "f49b4285-fed5-4b6c-b79e-68844f51ac08", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "5146908e-a3eb-449f-9700-7760abe86000", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063921Z:f49b4285-fed5-4b6c-b79e-68844f51ac08" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6180969cd41b8e6f2197929c1bb845a2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:39:21 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": "aa3264a4-5d3e-4a43-895f-84af4efade84", + "x-ms-client-request-id": "6180969cd41b8e6f2197929c1bb845a2", + "x-ms-correlation-request-id": "d2f795b3-fdc5-4ec8-8048-966051322ed4", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "6515aa43-951d-4a71-887b-192140fba194", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063922Z:d2f795b3-fdc5-4ec8-8048-966051322ed4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cb726f21688553a7824090051bde6323", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:39:23 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": "b77a0dbb-22d8-426c-a149-ad037e9696ff", + "x-ms-client-request-id": "cb726f21688553a7824090051bde6323", + "x-ms-correlation-request-id": "da7845cc-b758-4cd0-ac9e-3697a902bbdf", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "a4bf1a6a-c307-49ad-a001-cad7a32d3263", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063924Z:da7845cc-b758-4cd0-ac9e-3697a902bbdf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f374208cd80ab0d347ba3ab6be290ad3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:39: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": "1c8f0498-70b0-4d7b-ac53-708739d1d601", + "x-ms-client-request-id": "f374208cd80ab0d347ba3ab6be290ad3", + "x-ms-correlation-request-id": "bc02709b-c72e-454e-9679-770c4091f5a5", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "d1efad78-817c-4d77-b26e-1d6cf78160d8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063925Z:bc02709b-c72e-454e-9679-770c4091f5a5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5488c8f451d534b5ef2ddfda44697242", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:39:26 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": "04d837ca-0912-46fd-8fad-64f89415ddaa", + "x-ms-client-request-id": "5488c8f451d534b5ef2ddfda44697242", + "x-ms-correlation-request-id": "12218724-edd3-4a01-8336-edde7f55705a", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "746183ac-3a2a-4d9f-8de8-dd17bc698beb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063926Z:12218724-edd3-4a01-8336-edde7f55705a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fa0f6e34514348989cc184cb2df19458", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:39: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": "6fb94702-82a0-439e-9cfd-305a859554f4", + "x-ms-client-request-id": "fa0f6e34514348989cc184cb2df19458", + "x-ms-correlation-request-id": "9a4e472c-f179-4509-91c4-5ca8520e6285", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "c64c9153-d176-47f2-ad86-f63cb554dede", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063928Z:9a4e472c-f179-4509-91c4-5ca8520e6285" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5210bc350e563b4d6a4004dcf9f86cdd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "266181db-5845-491f-af09-b3db37b77325", + "x-ms-client-request-id": "5210bc350e563b4d6a4004dcf9f86cdd", + "x-ms-correlation-request-id": "fa6f7ebb-f27f-432d-a1d6-d380d910e08f", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "3799648d-4a16-4ea3-b21f-bb3d40252cdc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063929Z:fa6f7ebb-f27f-432d-a1d6-d380d910e08f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4f82f8470f1aa28f303fb813cdea06fe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c67c4470-4303-411b-8a25-9395c653489e", + "x-ms-client-request-id": "4f82f8470f1aa28f303fb813cdea06fe", + "x-ms-correlation-request-id": "6db49d1f-3f03-44ad-a91c-69f21c907e4c", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "350d40b4-9bc5-4856-ae88-8e382d9a856c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063931Z:6db49d1f-3f03-44ad-a91c-69f21c907e4c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "88a58698205926ec20d490034dbb4fa3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9cbc2cc1-b97a-458f-8c00-3fb938dbe8b2", + "x-ms-client-request-id": "88a58698205926ec20d490034dbb4fa3", + "x-ms-correlation-request-id": "2943fb1c-a280-43ec-a8a3-393a28c277a7", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "daf92b1d-174c-49a7-b62a-654c871e2ad9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063932Z:2943fb1c-a280-43ec-a8a3-393a28c277a7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3584a655446f253d2c6d2216563a6d80", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "a1c30e78-0a51-4bc7-8b19-8c7d5cbb5cdd", + "x-ms-client-request-id": "3584a655446f253d2c6d2216563a6d80", + "x-ms-correlation-request-id": "87de40d0-cf40-4505-9f08-26767b08076e", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "dfc7f6f9-c8a3-49bc-b1b4-74a53c1ee175", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063934Z:87de40d0-cf40-4505-9f08-26767b08076e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "72440639e35327840c5b2e467f8c5574", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8396fef0-c51d-4c38-9fd4-5734d5f79a48", + "x-ms-client-request-id": "72440639e35327840c5b2e467f8c5574", + "x-ms-correlation-request-id": "0eb95ee6-330c-4847-bfa4-1a4aee01b4c2", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "73c345bc-7e4c-41e2-9e98-143f31a6b7d5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063935Z:0eb95ee6-330c-4847-bfa4-1a4aee01b4c2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "27be14f0d165548e497f5bebfdd6cfe6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c6e6bbcd-3e36-428c-8526-edb879382d33", + "x-ms-client-request-id": "27be14f0d165548e497f5bebfdd6cfe6", + "x-ms-correlation-request-id": "fce2fd98-ce96-47bf-a754-b834f2f80001", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "dcce550c-3348-4128-b13e-2992031b84c9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063936Z:fce2fd98-ce96-47bf-a754-b834f2f80001" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "46c90f66dd77714f215d281315f7a5a0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3c5dfa8d-d7a7-43d4-b768-89b0a9954964", + "x-ms-client-request-id": "46c90f66dd77714f215d281315f7a5a0", + "x-ms-correlation-request-id": "35e27bc4-a1b2-4949-b73b-3316396d5d10", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "fc4f9f67-4ef0-4d43-8749-18db027c7dd2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063938Z:35e27bc4-a1b2-4949-b73b-3316396d5d10" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4125ad18457b681b77f029d488992936", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c79dba90-ed77-4a9a-8b9a-887576fad4a3", + "x-ms-client-request-id": "4125ad18457b681b77f029d488992936", + "x-ms-correlation-request-id": "e597c2f6-2bd2-42ac-a124-1addc4ee43cd", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "921ec72e-973e-4fc5-b77f-c3e0496f2e39", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063939Z:e597c2f6-2bd2-42ac-a124-1addc4ee43cd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "70df488c0fc213fdc54c0608a87b3e52", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:39: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": "7a3bb671-70d9-4d74-870f-ab0fa3e3a507", + "x-ms-client-request-id": "70df488c0fc213fdc54c0608a87b3e52", + "x-ms-correlation-request-id": "e634c0aa-fbc1-4a3f-85cf-7cf96cf82f9f", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "aa935d56-49fb-4024-86a7-e147f626e530", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063940Z:e634c0aa-fbc1-4a3f-85cf-7cf96cf82f9f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "50d3bad98eb0216bf461cf87b47be888", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5b0358ab-b724-4a80-844b-82d6a6b9bfe6", + "x-ms-client-request-id": "50d3bad98eb0216bf461cf87b47be888", + "x-ms-correlation-request-id": "d587d439-869f-4112-83cb-79665d48b2b8", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "0f6d6915-01fb-4bc0-a4fa-97ad4b961f69", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063942Z:d587d439-869f-4112-83cb-79665d48b2b8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cd87f234351708deaf127b2f3f12bffb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b74b9f6f-1f76-4332-8911-5b9cc94d2722", + "x-ms-client-request-id": "cd87f234351708deaf127b2f3f12bffb", + "x-ms-correlation-request-id": "b3a5b84f-5e87-4bf0-abec-5b9301d3789a", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "d01a2db9-4403-4ee4-b295-43f2c7fc341f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063943Z:b3a5b84f-5e87-4bf0-abec-5b9301d3789a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cefad6b1d8c5fd86ddbe7b613f765e49", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:39: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": "a0e1b5bd-c6e8-47fa-aa5a-6ed6fcc877ca", + "x-ms-client-request-id": "cefad6b1d8c5fd86ddbe7b613f765e49", + "x-ms-correlation-request-id": "7d1e0f96-20d8-4c31-8366-41b8e5c3295d", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "f0d03285-c8ab-490a-a453-d450c271decc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063945Z:7d1e0f96-20d8-4c31-8366-41b8e5c3295d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b6d37d6371f4a43bdccaa09d123be1e1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a3d4d386-d45e-423f-9fba-ee78ae012c69", + "x-ms-client-request-id": "b6d37d6371f4a43bdccaa09d123be1e1", + "x-ms-correlation-request-id": "05d2475a-0b09-465d-a19f-0ae38cf2ab5b", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "3146665d-1248-43ef-8608-91c7f71b32e1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063946Z:05d2475a-0b09-465d-a19f-0ae38cf2ab5b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ddd5d3a21a805bc26c89f058b97cc938", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f1067ff5-9693-4f7d-9de6-7bb1f8d065d2", + "x-ms-client-request-id": "ddd5d3a21a805bc26c89f058b97cc938", + "x-ms-correlation-request-id": "65665199-18d7-4892-9603-a00de4c4d0f6", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "cd8a1518-ef57-4c32-bedc-6c8d21257744", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063947Z:65665199-18d7-4892-9603-a00de4c4d0f6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c1cb32b3083f40069b56f1fb37e8eaa1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "dd83a297-9f56-4dea-a073-fb3e8ccb5a84", + "x-ms-client-request-id": "c1cb32b3083f40069b56f1fb37e8eaa1", + "x-ms-correlation-request-id": "2b1509b0-84ae-4421-aa52-127d9ac32522", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "91d961c0-ee09-4b38-aafc-201e602e4788", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063949Z:2b1509b0-84ae-4421-aa52-127d9ac32522" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6cbf9add81a148c9bb784a6b81e2ea5f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ff2e6063-91df-4534-a8fc-a02263f27a17", + "x-ms-client-request-id": "6cbf9add81a148c9bb784a6b81e2ea5f", + "x-ms-correlation-request-id": "2c5ef109-0bfe-47c1-9124-4b9828865937", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "0945a812-872c-4bde-b293-9a629c11d68d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063950Z:2c5ef109-0bfe-47c1-9124-4b9828865937" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e0e968011f7099a2cc95412929c62383", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7c549b64-2c39-427c-91ab-95560f28c54e", + "x-ms-client-request-id": "e0e968011f7099a2cc95412929c62383", + "x-ms-correlation-request-id": "ae287a53-8172-47b1-b9ec-a1e5d5092380", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "f71d29cd-9994-477a-8022-9fc28da7fede", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063951Z:ae287a53-8172-47b1-b9ec-a1e5d5092380" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1e7a4f9e5cbd3297688206c7be9bbeb9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "66088ef9-36fa-474a-8183-706145cd70d5", + "x-ms-client-request-id": "1e7a4f9e5cbd3297688206c7be9bbeb9", + "x-ms-correlation-request-id": "6dee16d0-1725-465a-9910-35467ecd22b8", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "a86ea711-28de-4d43-9cbc-f379d29ce531", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063952Z:6dee16d0-1725-465a-9910-35467ecd22b8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cffa916b0affbd30f8259f0b409f1ff4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:39: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": "8778a3e0-4b4c-4303-a0b5-2ff8415de826", + "x-ms-client-request-id": "cffa916b0affbd30f8259f0b409f1ff4", + "x-ms-correlation-request-id": "f1f79855-3732-48ef-8a7c-5f33bd388b56", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "0d5390a9-e7d6-4edc-be5b-e2b773541cc3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063954Z:f1f79855-3732-48ef-8a7c-5f33bd388b56" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "32ccc654cb67a4a2d0b777ee19dada30", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "74cfb0d3-e3ca-4329-bf78-c3cc77d48e4c", + "x-ms-client-request-id": "32ccc654cb67a4a2d0b777ee19dada30", + "x-ms-correlation-request-id": "255b12a8-f2c1-41d5-9088-b91bce6c584d", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "b2e5e6ae-68a0-4346-822d-86ab18bd0875", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063955Z:255b12a8-f2c1-41d5-9088-b91bce6c584d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "97be87d654cc94841ebd2697bc8bf1c9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "021a30b9-e19e-4928-8a5e-cccd061a4687", + "x-ms-client-request-id": "97be87d654cc94841ebd2697bc8bf1c9", + "x-ms-correlation-request-id": "59ae863a-1174-4543-b228-2f500d95d3d0", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "a6dd249f-0192-4bcf-b3d5-f7be8fde4d77", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063957Z:59ae863a-1174-4543-b228-2f500d95d3d0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f87211638ccf9f51ef55fe479242a41d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "043d8abe-8b90-4dad-b465-43c9e33717d1", + "x-ms-client-request-id": "f87211638ccf9f51ef55fe479242a41d", + "x-ms-correlation-request-id": "19c9a3b1-0b80-47fe-99ca-2878c102ce17", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "ca2d42aa-0785-441a-8c36-9f36faae4bf5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063958Z:19c9a3b1-0b80-47fe-99ca-2878c102ce17" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b8346e4b87e1ff28423713aaa50ae744", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0338a49b-60d3-4d88-b6ed-dfcde4a08d8e", + "x-ms-client-request-id": "b8346e4b87e1ff28423713aaa50ae744", + "x-ms-correlation-request-id": "e8d8dbfb-5266-4065-8d68-a0e8c09ff998", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "2ab91f9d-5158-422c-9074-33dc3fca5224", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T063959Z:e8d8dbfb-5266-4065-8d68-a0e8c09ff998" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "078baec6e2684961361ea876553c02db", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d718f79b-94fa-4de3-a057-be8a8a8d2565", + "x-ms-client-request-id": "078baec6e2684961361ea876553c02db", + "x-ms-correlation-request-id": "865d7fec-7a59-4c93-b469-d6b742f86efd", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "6fed0da5-52ad-4040-a3fe-a82263f4b47e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064001Z:865d7fec-7a59-4c93-b469-d6b742f86efd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4d4c09183857dbe8e972b69879a7fae4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "842ffea1-f165-42ad-adc9-ccd217ca1b41", + "x-ms-client-request-id": "4d4c09183857dbe8e972b69879a7fae4", + "x-ms-correlation-request-id": "de1f5544-f72f-4d00-bdd5-d2420112841f", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "bc286017-9518-4944-8f8a-ae79b8097bb3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064002Z:de1f5544-f72f-4d00-bdd5-d2420112841f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e381ba6d9cb768b50deb82c3deb1aa05", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "92642211-00ec-49b9-8186-d002e29d24fb", + "x-ms-client-request-id": "e381ba6d9cb768b50deb82c3deb1aa05", + "x-ms-correlation-request-id": "79486522-4f4c-4ba4-9549-080125dfe26e", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "46bb7b7e-a3e1-4665-bf32-396df28a2b90", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064004Z:79486522-4f4c-4ba4-9549-080125dfe26e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9c91373499be8dedc6af1ef52cc9d08f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "daf7665c-fa9d-4825-9dfa-0b173179bd80", + "x-ms-client-request-id": "9c91373499be8dedc6af1ef52cc9d08f", + "x-ms-correlation-request-id": "3614accb-830c-4e57-8728-8e60894ecee2", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "1617b692-9933-499f-b557-d01370ab3d1b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064005Z:3614accb-830c-4e57-8728-8e60894ecee2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9b09c4231ebb7b2453e3406bb524fc38", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "ef8643aa-4c80-4d04-bce9-02029e8966cd", + "x-ms-client-request-id": "9b09c4231ebb7b2453e3406bb524fc38", + "x-ms-correlation-request-id": "74aaae1f-3a7c-4573-8275-d691e12892e9", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "e5666b26-eec4-449d-9769-9524efaffc3c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064007Z:74aaae1f-3a7c-4573-8275-d691e12892e9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4163b0c85e15d326ccf31d077ec03c43", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b989c365-b489-47f6-9309-baf3613d4fb2", + "x-ms-client-request-id": "4163b0c85e15d326ccf31d077ec03c43", + "x-ms-correlation-request-id": "60399c72-7388-43f7-ac69-ce022201c43e", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "fb677f3e-800e-4a3d-90b9-98ecdd7a6c3d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064008Z:60399c72-7388-43f7-ac69-ce022201c43e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1a9ff31a0fa7154a131648da5981d8a1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "eae7b6c6-e607-4560-a8de-0df9bf064fdc", + "x-ms-client-request-id": "1a9ff31a0fa7154a131648da5981d8a1", + "x-ms-correlation-request-id": "a9e9aa00-296d-451c-9ad5-34cb242b3e0e", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "b11088c3-786f-4c2c-adc5-715266c82808", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064009Z:a9e9aa00-296d-451c-9ad5-34cb242b3e0e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7b2ce5b28f66c57a9e35cec7011cfc93", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a19b15e7-0e4d-4b19-86a2-ed71dac47464", + "x-ms-client-request-id": "7b2ce5b28f66c57a9e35cec7011cfc93", + "x-ms-correlation-request-id": "a90e704d-6e21-4943-9928-d4949e938fec", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "953ad870-c6fa-4730-9293-e3b7c6fc92ca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064011Z:a90e704d-6e21-4943-9928-d4949e938fec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c251fca7e285b990664d2dfe154b7a4a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "17a9ff8a-3643-4fce-bf49-76fcb0d2fb2a", + "x-ms-client-request-id": "c251fca7e285b990664d2dfe154b7a4a", + "x-ms-correlation-request-id": "feaf5103-3219-4b55-87c0-ad84c6cb76eb", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "13518904-7dd9-4597-96fd-008329f87120", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064012Z:feaf5103-3219-4b55-87c0-ad84c6cb76eb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "99557c1bc0938add79d97c72408214f7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "afd325c8-520c-4dc5-b758-7e8ea2b33778", + "x-ms-client-request-id": "99557c1bc0938add79d97c72408214f7", + "x-ms-correlation-request-id": "1953cd45-de12-4ec9-b526-e2c6f21e87ea", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "e5a2d0a0-7a36-450b-b1d6-027019199780", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064014Z:1953cd45-de12-4ec9-b526-e2c6f21e87ea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5c33b4191530d01b55731518627baf52", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e6224ace-1b88-4db8-9280-33585c5a6d29", + "x-ms-client-request-id": "5c33b4191530d01b55731518627baf52", + "x-ms-correlation-request-id": "3d76ea51-b8e4-49ed-a2d9-f53d1c9edca9", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "179abf2d-b130-4e51-af2f-4514a35b1714", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064016Z:3d76ea51-b8e4-49ed-a2d9-f53d1c9edca9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "85ab84ba63c7e6001fc749ab651d78e3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "c719d475-90b5-4a0b-98f6-6b43d93a9ce2", + "x-ms-client-request-id": "85ab84ba63c7e6001fc749ab651d78e3", + "x-ms-correlation-request-id": "c0761f6f-a885-4f2b-8905-344cb94a0928", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "7c6523d4-370a-4a5d-97b3-3e2bb757db9e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064017Z:c0761f6f-a885-4f2b-8905-344cb94a0928" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "60e536391e17061a60844320abc428fd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a5a17c6c-caab-4c1b-b848-a3b5c4f32aed", + "x-ms-client-request-id": "60e536391e17061a60844320abc428fd", + "x-ms-correlation-request-id": "8be7c121-c681-41eb-b075-85e08eb984cb", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "f2d9f5b0-aeb4-4756-a8be-75d1898f576e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064019Z:8be7c121-c681-41eb-b075-85e08eb984cb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bcb829298fd7b630b44c3c68cc706a37", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d08870f0-d367-4b88-9ae8-326f3843e99f", + "x-ms-client-request-id": "bcb829298fd7b630b44c3c68cc706a37", + "x-ms-correlation-request-id": "3a82509f-edf9-4158-91ce-e89b44285f80", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "313b392d-ee73-4856-a73f-9c78f90a1e67", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064020Z:3a82509f-edf9-4158-91ce-e89b44285f80" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2cdf31fa4f969b3a69a524421fdf3b5a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f17e9917-72e8-4cc8-9347-3535b0bdcf47", + "x-ms-client-request-id": "2cdf31fa4f969b3a69a524421fdf3b5a", + "x-ms-correlation-request-id": "43fc5f72-88a2-4d60-9f8c-3ed3019659e4", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "354f400c-5f4f-4778-b3c3-92b6733b9961", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064021Z:43fc5f72-88a2-4d60-9f8c-3ed3019659e4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3c814b9ebc65a90c052fabcbe2b139f0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "dda98449-231d-4515-965b-f135b27d8180", + "x-ms-client-request-id": "3c814b9ebc65a90c052fabcbe2b139f0", + "x-ms-correlation-request-id": "d9ecb09a-ba2a-4321-92c6-7593b50c316a", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "01fac468-eb3f-41bd-a837-8176e3c89070", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064023Z:d9ecb09a-ba2a-4321-92c6-7593b50c316a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "79250c1afbe4da67ee1c52316aed96d4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b26e2bdc-d8da-4abf-809f-760ca24abeaf", + "x-ms-client-request-id": "79250c1afbe4da67ee1c52316aed96d4", + "x-ms-correlation-request-id": "ac3881ee-3c16-44f5-b5bd-8d97ccc63fb9", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "6976fc9d-a53a-400c-90bd-c75f1c45158c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064025Z:ac3881ee-3c16-44f5-b5bd-8d97ccc63fb9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "81c9e1102eee3ed224352666a36fb9b7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "1c5158fb-0a14-4f31-a852-5c36e7d2a593", + "x-ms-client-request-id": "81c9e1102eee3ed224352666a36fb9b7", + "x-ms-correlation-request-id": "d40bf36b-9296-43c2-af23-6ae1f6572599", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "71ef4dda-09d4-4eeb-b007-d7d5202dbc55", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064026Z:d40bf36b-9296-43c2-af23-6ae1f6572599" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1328346bc1baa375e3a64d4869db3f17", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "abbd3a7e-5236-4470-ae26-d0058b8d5fe6", + "x-ms-client-request-id": "1328346bc1baa375e3a64d4869db3f17", + "x-ms-correlation-request-id": "97fce6ee-4f4b-4a51-802b-6ff4acdf6af1", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "8e28d705-b135-4063-a907-e583bff0018a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064027Z:97fce6ee-4f4b-4a51-802b-6ff4acdf6af1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "00bad798b8e7eb013ae755afd501377f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b9226b0d-85ef-4fb1-9117-6e5f4d421afd", + "x-ms-client-request-id": "00bad798b8e7eb013ae755afd501377f", + "x-ms-correlation-request-id": "0b37a60b-36db-4177-ace4-e9442e8fef53", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "4368b798-9bb0-49ff-b868-1ea2a6a0c4c5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064029Z:0b37a60b-36db-4177-ace4-e9442e8fef53" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "35c59b6283c54f1a6c269e47e189d449", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a19cb58f-3a2b-4a1c-af7e-a42480dcf10a", + "x-ms-client-request-id": "35c59b6283c54f1a6c269e47e189d449", + "x-ms-correlation-request-id": "6d3e6520-6098-418d-994b-9b82dd8c97b5", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "24917852-5758-4122-9c70-8056811ca2b8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064030Z:6d3e6520-6098-418d-994b-9b82dd8c97b5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ccce0ef5b9b5b3cf323cd8d36cc6cde2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "b8d1445e-d5e3-4d60-8bfb-ed5a2fbb57ea", + "x-ms-client-request-id": "ccce0ef5b9b5b3cf323cd8d36cc6cde2", + "x-ms-correlation-request-id": "98d7b48d-b53a-42d0-a8e5-36b90ea2109c", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "7f59f58b-c948-4fd4-9bbd-9aeb36984200", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064031Z:98d7b48d-b53a-42d0-a8e5-36b90ea2109c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cee6ce6f0a151552bc6b94c01aba0ab0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "93f1481d-947c-4e5e-a39b-85f1f83f8176", + "x-ms-client-request-id": "cee6ce6f0a151552bc6b94c01aba0ab0", + "x-ms-correlation-request-id": "3f1a571f-439b-410b-9b6f-fffe2c5d4ae5", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "c731d81b-37a6-4376-b4f1-1a056862d353", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064033Z:3f1a571f-439b-410b-9b6f-fffe2c5d4ae5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c7b90b126b33a9cacb110289aa46e2a5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "61fb287e-d2fa-4eae-ad25-62fdfd9e770a", + "x-ms-client-request-id": "c7b90b126b33a9cacb110289aa46e2a5", + "x-ms-correlation-request-id": "32533b1d-96f4-4da8-ae22-e0725c5a2dc1", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "5a128e9f-be58-4105-8223-937f867e5087", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064034Z:32533b1d-96f4-4da8-ae22-e0725c5a2dc1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "12d8bb5906a3eb34bcb80f49250f9978", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d9009890-ae5f-4774-9209-f0fd50179777", + "x-ms-client-request-id": "12d8bb5906a3eb34bcb80f49250f9978", + "x-ms-correlation-request-id": "8dfa9dc0-e64d-495a-95c2-6304fa3a27e1", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "37c0c74c-f34d-4190-85bf-408df3431d2b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064035Z:8dfa9dc0-e64d-495a-95c2-6304fa3a27e1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "61c12831060d03af033c020308c86a75", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "27bcd446-d459-4882-8bdf-aa0a4992457a", + "x-ms-client-request-id": "61c12831060d03af033c020308c86a75", + "x-ms-correlation-request-id": "5546f465-b6c2-4a65-b436-246869b30833", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "cf0e4cdb-9f8d-4866-bf10-23a2dfdee94a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064037Z:5546f465-b6c2-4a65-b436-246869b30833" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5e67ee89f7e20b0dd6cd0a7a5c8083bc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "91c16419-adaa-4542-a785-570ccaf6b795", + "x-ms-client-request-id": "5e67ee89f7e20b0dd6cd0a7a5c8083bc", + "x-ms-correlation-request-id": "3bfdf724-e7fa-40c5-9e21-f705ab254f3b", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "b7de5ccb-9294-4551-99bd-92b684d0b8ef", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064038Z:3bfdf724-e7fa-40c5-9e21-f705ab254f3b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "82588977808552970cd40f660330e3f3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b093ef59-7b16-4afd-893a-583b99d2e92b", + "x-ms-client-request-id": "82588977808552970cd40f660330e3f3", + "x-ms-correlation-request-id": "f91c6da9-3258-4a8a-9059-eada3225d3ff", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "0e27abcc-fbf8-4f2c-bfc7-dc745f3c8df4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064039Z:f91c6da9-3258-4a8a-9059-eada3225d3ff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "36c0994d3ba739961ab58a3ffb34a783", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "f126572e-be5b-4975-ba36-0c8c6d8bde13", + "x-ms-client-request-id": "36c0994d3ba739961ab58a3ffb34a783", + "x-ms-correlation-request-id": "68006748-831f-43cf-8e63-9033cb78707e", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "53d191ee-b4bb-4107-a204-81f543ac805e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064040Z:68006748-831f-43cf-8e63-9033cb78707e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7e8b46b9e87008f05614510de8a707a5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5b894119-5d7e-443a-8183-f036fcaa6b46", + "x-ms-client-request-id": "7e8b46b9e87008f05614510de8a707a5", + "x-ms-correlation-request-id": "f39ac0dc-975c-4d97-99f9-6f0539df8a9d", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "dabd718a-515f-477a-9e0d-7ece71c0c214", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064042Z:f39ac0dc-975c-4d97-99f9-6f0539df8a9d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c22c17ea4dbf3c14f31e68cff65857d7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a1bd88e3-58eb-4cb6-86ad-bf5e8b34dd94", + "x-ms-client-request-id": "c22c17ea4dbf3c14f31e68cff65857d7", + "x-ms-correlation-request-id": "e61776ee-cfa9-4c4b-8c34-6f9f5dc5a5cf", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "2ba19fd1-cfb8-4ec6-9ec0-c310ab206333", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064044Z:e61776ee-cfa9-4c4b-8c34-6f9f5dc5a5cf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bcad8b2c64a56583a9b8df92e9885073", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "b6cd0108-fd4c-4b17-a86c-5a828ffa8286", + "x-ms-client-request-id": "bcad8b2c64a56583a9b8df92e9885073", + "x-ms-correlation-request-id": "b1f07458-0741-41cf-b73b-3f31ed6c1bc4", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "9c0bfc89-8faf-4e76-add7-7d351ab7efba", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064045Z:b1f07458-0741-41cf-b73b-3f31ed6c1bc4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e455e4aee5086bc3314f8a51802012fe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "23d816e0-d9fa-4ab9-846f-df6288804f9e", + "x-ms-client-request-id": "e455e4aee5086bc3314f8a51802012fe", + "x-ms-correlation-request-id": "080b19ce-ed90-4385-b0f2-da91842de6fd", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "4bdc02b0-064c-472d-8bba-a5cf74729bfe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064046Z:080b19ce-ed90-4385-b0f2-da91842de6fd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5de07abd4af9850093c718076d81526b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b884ab7e-279f-49a0-ad36-7939eb1b6228", + "x-ms-client-request-id": "5de07abd4af9850093c718076d81526b", + "x-ms-correlation-request-id": "4bc6d064-e8f0-497f-89d9-c0c5c1060062", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "81e69d7b-6a3a-408b-b6c9-1d8a4a869c96", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064048Z:4bc6d064-e8f0-497f-89d9-c0c5c1060062" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1121f4ce730247cfc8418b55da31e489", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f801abed-4259-414b-9efe-d31ac7936ad0", + "x-ms-client-request-id": "1121f4ce730247cfc8418b55da31e489", + "x-ms-correlation-request-id": "e6604939-8832-4c91-8f18-3bffb5dbb4ed", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "2c836fea-7f7f-40fe-8a1c-70f0e192158b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064049Z:e6604939-8832-4c91-8f18-3bffb5dbb4ed" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6fd5e0a5f3a76379e3d05040ccbbfeaf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1eaa0655-171e-4247-bddd-40b2f6b9553a", + "x-ms-client-request-id": "6fd5e0a5f3a76379e3d05040ccbbfeaf", + "x-ms-correlation-request-id": "74aaf1b7-68fd-4e34-9313-7b238e5273f4", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "98b988a9-959e-4d52-bc3f-f247363b6b79", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064051Z:74aaf1b7-68fd-4e34-9313-7b238e5273f4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8b831ffd01fe4afcaa9995b8bfabab62", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "7ec45493-7591-4188-bf99-c0b635137b9f", + "x-ms-client-request-id": "8b831ffd01fe4afcaa9995b8bfabab62", + "x-ms-correlation-request-id": "97ef3181-6f50-4002-be81-95e4aa0e8773", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "2d90a657-8ab8-4506-817e-a85c0db840dd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064052Z:97ef3181-6f50-4002-be81-95e4aa0e8773" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8c618fe2e2acdac47bbe2d32228e7b0c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5a0d765e-a26d-4340-9d01-0129b2ab7680", + "x-ms-client-request-id": "8c618fe2e2acdac47bbe2d32228e7b0c", + "x-ms-correlation-request-id": "5d892ad8-1c74-4dd8-bdcc-816286fffb56", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "4d3ded94-2670-48fb-9762-29dbb8fe9275", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064054Z:5d892ad8-1c74-4dd8-bdcc-816286fffb56" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ba58db4259aea48ae48bc40e5ec1a338", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7718c4b3-f9c7-431d-ba86-94573b1aefb9", + "x-ms-client-request-id": "ba58db4259aea48ae48bc40e5ec1a338", + "x-ms-correlation-request-id": "b90dcbbf-ba4c-4ff4-a6d7-2b649e268e9b", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "627b28f3-1bcb-418a-8713-5971ba5a0898", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064055Z:b90dcbbf-ba4c-4ff4-a6d7-2b649e268e9b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3c5eee24725a1a035ba81040d3c9271c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "10c2bc81-1ca8-4270-95c9-bd963026806e", + "x-ms-client-request-id": "3c5eee24725a1a035ba81040d3c9271c", + "x-ms-correlation-request-id": "ff4df0ef-13a1-4fec-860a-f65a84fac603", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "59237a0b-35e3-4d74-9b28-8492609775d6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064056Z:ff4df0ef-13a1-4fec-860a-f65a84fac603" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e475891df05289b305bca7201eb57cba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "3cfb9071-3707-4188-88b1-4996ba3788dc", + "x-ms-client-request-id": "e475891df05289b305bca7201eb57cba", + "x-ms-correlation-request-id": "1302adc4-87d7-4361-a9b8-c14bf828456f", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "0ba256f2-607c-470e-b373-efccc45a8551", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064058Z:1302adc4-87d7-4361-a9b8-c14bf828456f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "340df41b3f30d0b1d73e5f05484ad11a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6c250899-a46f-41a8-b54e-4ef14131cdf4", + "x-ms-client-request-id": "340df41b3f30d0b1d73e5f05484ad11a", + "x-ms-correlation-request-id": "0124420f-4308-4ae3-8830-6d29010439de", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "021f9814-e6b4-4208-bf5b-bb65f72a5165", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064059Z:0124420f-4308-4ae3-8830-6d29010439de" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d4f0a864be4b34e63ad4379dcbe2fba5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ae036c1b-3c4a-4f83-b719-75dcfe2ac3af", + "x-ms-client-request-id": "d4f0a864be4b34e63ad4379dcbe2fba5", + "x-ms-correlation-request-id": "3ee2a4c5-fff5-4986-a2b1-ce29571ef966", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "d48d8926-5d8a-47c1-808f-63db4a687610", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064100Z:3ee2a4c5-fff5-4986-a2b1-ce29571ef966" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "df24562bf2bcddebd7a50d1390ae40ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "1867ff93-eca2-4db5-ae5e-b74590d83b7e", + "x-ms-client-request-id": "df24562bf2bcddebd7a50d1390ae40ba", + "x-ms-correlation-request-id": "d88b8fa8-f9c5-43c2-9e22-eb28f9483516", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "d40b299c-89d0-478c-890b-d144d7367d11", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064102Z:d88b8fa8-f9c5-43c2-9e22-eb28f9483516" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "76bc8ceba7c45c6e0ed8fa5b071405f4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "406ea796-972d-4065-b11d-7a67538fa557", + "x-ms-client-request-id": "76bc8ceba7c45c6e0ed8fa5b071405f4", + "x-ms-correlation-request-id": "a111d3f6-0703-4f99-b9d9-7c99774b78c0", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "a4227b45-8aa9-4434-9863-c505b579461c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064103Z:a111d3f6-0703-4f99-b9d9-7c99774b78c0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f2daba42f225725ebc13fda5b1d2a48c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "012bb9b7-9d7f-45bf-be22-afcc165ef8a2", + "x-ms-client-request-id": "f2daba42f225725ebc13fda5b1d2a48c", + "x-ms-correlation-request-id": "4890212d-4a0c-47d9-b8c5-3877d38c2bca", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "98c9d496-9fa3-4739-b11c-0e296d5a43fb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064104Z:4890212d-4a0c-47d9-b8c5-3877d38c2bca" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3eb27c93852683e0e7c7d0e3f78fd5c3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ea67281e-5521-4921-b676-bc5ed037a273", + "x-ms-client-request-id": "3eb27c93852683e0e7c7d0e3f78fd5c3", + "x-ms-correlation-request-id": "e930fe6b-5db5-474b-861f-62b9719c01e0", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "5718ca6f-8439-414a-93fd-27b492a2ae97", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064106Z:e930fe6b-5db5-474b-861f-62b9719c01e0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d5d118a04ed3f9952e4abab1aac8ab3b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "56b8cf4f-8153-4035-b7c2-050e4418acc9", + "x-ms-client-request-id": "d5d118a04ed3f9952e4abab1aac8ab3b", + "x-ms-correlation-request-id": "ad8a758d-c147-44f2-b110-7b6995576b17", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "b8a8c389-9a13-4ec8-b06d-70532a11dead", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064108Z:ad8a758d-c147-44f2-b110-7b6995576b17" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8bc86e34c661bdceda560a5d217a7a2c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "3bec871d-590e-41b4-a835-3fd5efa4b00d", + "x-ms-client-request-id": "8bc86e34c661bdceda560a5d217a7a2c", + "x-ms-correlation-request-id": "7179fb3c-e731-4c80-82bb-5a53e860a773", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "8dc6d64d-a12b-41d6-ab70-5d41edc32391", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064109Z:7179fb3c-e731-4c80-82bb-5a53e860a773" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "98053a3dce0145b8e6b810dccb2ed91f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b81cf680-c787-4015-8509-d534825be1e0", + "x-ms-client-request-id": "98053a3dce0145b8e6b810dccb2ed91f", + "x-ms-correlation-request-id": "6289eb33-ecef-4ea6-aa80-89765c6b1acf", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "f8fb3bc6-03b8-4695-aa9d-8927d5c23a73", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064110Z:6289eb33-ecef-4ea6-aa80-89765c6b1acf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "88af941c4ac7d9614a13fb7c4338d8b3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a19dbd18-6405-4d8e-8389-7852d72f4cd8", + "x-ms-client-request-id": "88af941c4ac7d9614a13fb7c4338d8b3", + "x-ms-correlation-request-id": "404bcfe4-32a0-43aa-ad8c-ee2111929998", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "2ca4d852-0492-4414-a43f-7408e1f725a1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064112Z:404bcfe4-32a0-43aa-ad8c-ee2111929998" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "70748dcf13c3653ab682a5a9b6f2f1ac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "4fe15d2f-1c3e-478d-9b56-05d005e03104", + "x-ms-client-request-id": "70748dcf13c3653ab682a5a9b6f2f1ac", + "x-ms-correlation-request-id": "a7ea56b7-33b6-4a32-9668-5c71894a9d7b", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "4fefdcdb-48a6-4cce-b658-69036d93f4df", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064113Z:a7ea56b7-33b6-4a32-9668-5c71894a9d7b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8c41eb7df1cbf264d82b4eedd33b02ae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "eaf88011-65a4-4877-a028-d2eb6469b941", + "x-ms-client-request-id": "8c41eb7df1cbf264d82b4eedd33b02ae", + "x-ms-correlation-request-id": "d79954e1-0991-43a4-b838-d6e51c41975d", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "5b477803-9e4f-4e95-9e9a-0b29778d790d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064114Z:d79954e1-0991-43a4-b838-d6e51c41975d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3d0c5ce069b9085b5a49d245a5b72357", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d3bbd10e-bd08-410c-b07c-a43595302307", + "x-ms-client-request-id": "3d0c5ce069b9085b5a49d245a5b72357", + "x-ms-correlation-request-id": "ace7d9e4-3f04-42b6-b200-d29c67e52a7f", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "bb408786-ba4c-470a-ada1-2416864fd1cf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064116Z:ace7d9e4-3f04-42b6-b200-d29c67e52a7f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "57ff4f224cf7dde829829797c44d927a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2f18057c-6832-41ce-a2e6-82232a252d08", + "x-ms-client-request-id": "57ff4f224cf7dde829829797c44d927a", + "x-ms-correlation-request-id": "9c88fe7e-76cf-4c5c-a5cf-276e6edf13e8", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "0049c6c2-cfec-4f4b-8284-4257f42b02e5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064117Z:9c88fe7e-76cf-4c5c-a5cf-276e6edf13e8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "59c9f680b4e514f2903832811f1f4d20", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "80b586c2-1127-458a-a5b2-b6a48d5007a9", + "x-ms-client-request-id": "59c9f680b4e514f2903832811f1f4d20", + "x-ms-correlation-request-id": "f5106991-ded1-4b02-83e4-4739501ebf22", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "0bbefd0a-f44d-4480-9284-a8a334408cac", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064118Z:f5106991-ded1-4b02-83e4-4739501ebf22" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "84cbf608ab3c94b6742e1437d1c4430c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5c935040-7734-4b37-abd2-e3a609ab79b8", + "x-ms-client-request-id": "84cbf608ab3c94b6742e1437d1c4430c", + "x-ms-correlation-request-id": "a40da1cd-f711-41ab-be80-56d091bde19f", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "46f14cf4-4958-4514-b8ec-c3c148aadaaf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064120Z:a40da1cd-f711-41ab-be80-56d091bde19f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aec458b6c9ee6e725ceac7be1966be0a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "bd713fd1-d133-44ad-9c09-330823e0514f", + "x-ms-client-request-id": "aec458b6c9ee6e725ceac7be1966be0a", + "x-ms-correlation-request-id": "5ed84a67-76b4-4122-8a99-bb925e284cac", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "e015a461-53c9-40f0-beb8-ee51c2abb9b5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064121Z:5ed84a67-76b4-4122-8a99-bb925e284cac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ce8f76340e82d53d3f35e4b7a0bb43cb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "3e789b6a-3f25-4961-85e9-51b1f8653aeb", + "x-ms-client-request-id": "ce8f76340e82d53d3f35e4b7a0bb43cb", + "x-ms-correlation-request-id": "75cfd2c7-0219-4427-9e46-102938766b30", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "938ac495-0247-4a89-8011-3a708c5dfba3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064122Z:75cfd2c7-0219-4427-9e46-102938766b30" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c7ca25f49f5a3e32845d2752e3f87a0e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "72cbcf88-7d4b-4d09-9373-35b4b40c5f6c", + "x-ms-client-request-id": "c7ca25f49f5a3e32845d2752e3f87a0e", + "x-ms-correlation-request-id": "69c252fc-9833-4bb2-877a-03f44cac4f6e", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "0ebbcc1c-c79b-4350-a91b-f71be7743dae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064123Z:69c252fc-9833-4bb2-877a-03f44cac4f6e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5b02096f7535a88a1aef6eb9e4bacda0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3f3c84e7-0e69-4120-916e-b1ca830d9a91", + "x-ms-client-request-id": "5b02096f7535a88a1aef6eb9e4bacda0", + "x-ms-correlation-request-id": "51a0fd21-92d3-4203-b1bd-c15653ad9163", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "33f09014-b76e-4333-b6cd-64c340ef2934", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064125Z:51a0fd21-92d3-4203-b1bd-c15653ad9163" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f4cafba7f79b95b043504a25e6ebf147", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "96a64fe1-115a-4213-8d36-b5da444574ce", + "x-ms-client-request-id": "f4cafba7f79b95b043504a25e6ebf147", + "x-ms-correlation-request-id": "c3a88864-1e7e-455c-839c-7d355d75204e", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "c7eeaf90-0fb3-4488-9c10-0e72e4c699c5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064126Z:c3a88864-1e7e-455c-839c-7d355d75204e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9647d6bae7b87f969a22ac6a307959c9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "61f520a0-60dd-4612-a1f9-2f87926ac1fd", + "x-ms-client-request-id": "9647d6bae7b87f969a22ac6a307959c9", + "x-ms-correlation-request-id": "9566934a-89a9-41e3-9bdc-48fc443a0eb9", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "a095ae30-4ee2-4fa2-afd6-4168ebee3214", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064127Z:9566934a-89a9-41e3-9bdc-48fc443a0eb9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e7ab878f852d7873596d17e42a65c12e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1750cbb1-e6a0-42db-b157-06d9ee947142", + "x-ms-client-request-id": "e7ab878f852d7873596d17e42a65c12e", + "x-ms-correlation-request-id": "96d5fa08-dbba-4b31-9f07-8bf7ee7a1189", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "b59f16cd-bd95-4483-9b31-b2dca796e5d4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064129Z:96d5fa08-dbba-4b31-9f07-8bf7ee7a1189" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0efe26fe3772bfe7654b59784a4564ca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "156c090d-c48f-490c-ac35-93890915c6a7", + "x-ms-client-request-id": "0efe26fe3772bfe7654b59784a4564ca", + "x-ms-correlation-request-id": "13206586-d564-409a-80a4-8e04986df115", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "b4f653f5-9a28-41b1-9d63-4dc8cf6a9d3f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064130Z:13206586-d564-409a-80a4-8e04986df115" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5f9680f60940351a63cf3c4bd0b15435", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c6604746-ccf8-4fa7-85b7-a181a3ab2f3e", + "x-ms-client-request-id": "5f9680f60940351a63cf3c4bd0b15435", + "x-ms-correlation-request-id": "52bafa8b-68c2-4bec-a9ab-0919a7a1fc29", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "6540fb3d-b0b7-41f6-99e2-27f9c5161a85", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064131Z:52bafa8b-68c2-4bec-a9ab-0919a7a1fc29" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0a6c7d604b7a57569feb82e22bfa2d14", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4651f01d-0d02-4c11-a835-7eb80bf12bea", + "x-ms-client-request-id": "0a6c7d604b7a57569feb82e22bfa2d14", + "x-ms-correlation-request-id": "70c24084-de54-4c15-9a0b-0232ebb910a8", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "f1477b40-7df8-46b2-8a23-bcfa48698dd4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064132Z:70c24084-de54-4c15-9a0b-0232ebb910a8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aaed4c0862cff4ee0cc8aaa3fa9befb3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "c0cee788-26af-4356-97b0-203f0c2d81f4", + "x-ms-client-request-id": "aaed4c0862cff4ee0cc8aaa3fa9befb3", + "x-ms-correlation-request-id": "bf9d936f-87cd-40d0-bede-5657aedf9471", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "8f2ed927-c955-41f3-9f75-40686fc86a9e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064134Z:bf9d936f-87cd-40d0-bede-5657aedf9471" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cc1824f65ad9ab50293ebf5487370969", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "aaa83501-b0d8-4817-a62d-c4bf0e1d107a", + "x-ms-client-request-id": "cc1824f65ad9ab50293ebf5487370969", + "x-ms-correlation-request-id": "199d9c34-80af-480c-beea-37c8172b5011", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "97b812d4-f829-49fa-ad83-bf68571054a4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064136Z:199d9c34-80af-480c-beea-37c8172b5011" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "834328a1aac3fe668f77fdb1a0b35c03", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "768aa9b2-c708-45f0-b0d5-e1941410028e", + "x-ms-client-request-id": "834328a1aac3fe668f77fdb1a0b35c03", + "x-ms-correlation-request-id": "e621c098-579d-4e66-be0d-ada70abfdc15", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "f16f7bdb-390a-421d-8a69-3bf830292193", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064138Z:e621c098-579d-4e66-be0d-ada70abfdc15" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "07ebcefc61e1ad3afc428090a29a6dd4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "96314c27-871f-45e5-908a-ac452fe973cf", + "x-ms-client-request-id": "07ebcefc61e1ad3afc428090a29a6dd4", + "x-ms-correlation-request-id": "bb608f18-d529-4b88-aea2-99529d27c33f", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "aa14a735-934a-4cd0-941a-46b8d04550f2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064139Z:bb608f18-d529-4b88-aea2-99529d27c33f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d20141bf6b584cf0be193d615d9e0a75", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5669cf92-42eb-440c-8374-bae950d85771", + "x-ms-client-request-id": "d20141bf6b584cf0be193d615d9e0a75", + "x-ms-correlation-request-id": "bde42e3a-bc91-4596-98ff-a6d493bc4c53", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "791a9c28-f14f-4c70-b139-803447c6c984", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064140Z:bde42e3a-bc91-4596-98ff-a6d493bc4c53" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b858bce1024c4087ed95878029d55bf4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f34b114a-82a9-4028-8eb6-8df42f901784", + "x-ms-client-request-id": "b858bce1024c4087ed95878029d55bf4", + "x-ms-correlation-request-id": "3fb0594e-9064-4805-b4c8-804768d627d7", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "a6bd6559-4ea6-44f7-88e4-18454ac503a1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064142Z:3fb0594e-9064-4805-b4c8-804768d627d7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5ef2290a8ab290abde9f49c824d9505d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "fddf42a5-6212-44fc-960d-18ddadc1befb", + "x-ms-client-request-id": "5ef2290a8ab290abde9f49c824d9505d", + "x-ms-correlation-request-id": "59bad363-8c3e-4328-afbd-e316ed9c9d35", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "a321caa5-38f1-4a1c-8591-45e61496f666", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064143Z:59bad363-8c3e-4328-afbd-e316ed9c9d35" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e6ae0a38b442bc88bac1e4c2e36f22e8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "07963b01-e894-4e94-88a0-26ec46dd18c9", + "x-ms-client-request-id": "e6ae0a38b442bc88bac1e4c2e36f22e8", + "x-ms-correlation-request-id": "be8f4aff-100b-4dd0-8083-31bc5c37ded8", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "b1ce6fe5-01e4-41eb-82be-2d3263ddfb1d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064144Z:be8f4aff-100b-4dd0-8083-31bc5c37ded8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "335648beabac57c310c7daacb9bf1c14", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e5445280-608c-4963-9482-67b19b6853e1", + "x-ms-client-request-id": "335648beabac57c310c7daacb9bf1c14", + "x-ms-correlation-request-id": "cf44e659-43ab-408e-9f4a-ab8ddf3e1952", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "db310f5a-85f0-4342-b8d9-528eab6f01f7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064145Z:cf44e659-43ab-408e-9f4a-ab8ddf3e1952" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1e482a45752655b2a136a4f0a6e8ad6f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "be40e9d7-60ae-4308-8fc7-b7bd8bcb6a2d", + "x-ms-client-request-id": "1e482a45752655b2a136a4f0a6e8ad6f", + "x-ms-correlation-request-id": "56f0f380-b5c3-4349-a2c0-62a36e1a2ca1", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "fe048516-eadb-453f-976d-e443a8c66900", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064147Z:56f0f380-b5c3-4349-a2c0-62a36e1a2ca1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "db09607c1c828cb04657d57adadb02fb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "b9dd7755-9c39-4023-9121-6a17494aaf59", + "x-ms-client-request-id": "db09607c1c828cb04657d57adadb02fb", + "x-ms-correlation-request-id": "dbab79cb-e0ff-4733-a8c0-4cc0f2965913", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "ebe92d4a-080e-48cf-9332-281001c30501", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064148Z:dbab79cb-e0ff-4733-a8c0-4cc0f2965913" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b97cd0a5032648c19500927607d3b128", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e2e73054-137f-4dff-8583-75845c907881", + "x-ms-client-request-id": "b97cd0a5032648c19500927607d3b128", + "x-ms-correlation-request-id": "87994e76-973f-4395-bc2a-e69e57b4e591", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "afd69544-696e-4bab-b6a5-fb546bb7c3cc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064149Z:87994e76-973f-4395-bc2a-e69e57b4e591" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "59306a1940b5289179bcd8cf9f377bc5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3a0abaae-779a-4bc7-9b51-fe3ce21c6dfd", + "x-ms-client-request-id": "59306a1940b5289179bcd8cf9f377bc5", + "x-ms-correlation-request-id": "9c94a876-0893-4c93-9add-96df4523ba25", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "5c55a129-be52-4353-a806-4915ac2c38ce", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064151Z:9c94a876-0893-4c93-9add-96df4523ba25" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d54ba833f46b78499ec04581893a8473", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "58fdf227-9cf0-48f7-9eb4-605058d60bc1", + "x-ms-client-request-id": "d54ba833f46b78499ec04581893a8473", + "x-ms-correlation-request-id": "e16b5f5e-fbab-4688-91ab-34480452eb33", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "5199954a-35a9-4c88-bf46-34ad40e5f8dd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064152Z:e16b5f5e-fbab-4688-91ab-34480452eb33" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7060ada6a9aa65463e533f692bf2a95d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0e31a7c0-4c5f-4327-ab28-bd64325ca28f", + "x-ms-client-request-id": "7060ada6a9aa65463e533f692bf2a95d", + "x-ms-correlation-request-id": "e0c9d989-0482-4d62-afbf-ca1ef4e6d60d", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "2fcd2ed9-8efa-4f25-b17c-a99aaa459b08", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064153Z:e0c9d989-0482-4d62-afbf-ca1ef4e6d60d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5e43cd85db8725bc21b8baf4fa0f9f3e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "32be27ae-3076-4b9b-a270-a2271833053b", + "x-ms-client-request-id": "5e43cd85db8725bc21b8baf4fa0f9f3e", + "x-ms-correlation-request-id": "2b86657c-3649-4143-bcb3-558a371f84c7", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "8016229c-9c51-4e3f-a2ac-5f603f139f3d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064154Z:2b86657c-3649-4143-bcb3-558a371f84c7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f12864370bd7891a62e69717b4df4cac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a822d626-d21d-4030-a729-9994c10b6e48", + "x-ms-client-request-id": "f12864370bd7891a62e69717b4df4cac", + "x-ms-correlation-request-id": "e011f309-39cc-4d4c-a7e3-11d8450fc3e5", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "74efd553-ad09-4c53-a18e-a664d9cc8fab", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064156Z:e011f309-39cc-4d4c-a7e3-11d8450fc3e5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bcfbe81726f7caebf13b4ef2ef516a2e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "532b87f7-4654-4d8e-ae03-c69336b30654", + "x-ms-client-request-id": "bcfbe81726f7caebf13b4ef2ef516a2e", + "x-ms-correlation-request-id": "9099583c-b3ff-4f5b-9ba2-705ecbfa7402", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "864689b8-bad3-424e-8fa7-6a02b0064097", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064158Z:9099583c-b3ff-4f5b-9ba2-705ecbfa7402" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c73200b4b7c97a86b2b9fca143a47042", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d732afe4-a826-4e6d-84ac-88fb000e0ea4", + "x-ms-client-request-id": "c73200b4b7c97a86b2b9fca143a47042", + "x-ms-correlation-request-id": "b49adfad-bcd6-4f1a-b6ef-8b9f8e87600b", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "e70e5c8f-6789-4060-b223-b00b28cf4199", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064159Z:b49adfad-bcd6-4f1a-b6ef-8b9f8e87600b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "12dd0e6be2141147785d009cbc289911", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "dc45714f-2edf-4938-b59b-a5a76097d016", + "x-ms-client-request-id": "12dd0e6be2141147785d009cbc289911", + "x-ms-correlation-request-id": "f804988c-2f27-4668-bfb5-f61c5a3c4583", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "be2e4954-625d-418b-af1a-ec6b51726c98", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064201Z:f804988c-2f27-4668-bfb5-f61c5a3c4583" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b462697b85ac5fe261810a3d294a874c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "55661efe-504c-45de-beb6-c976f3705e51", + "x-ms-client-request-id": "b462697b85ac5fe261810a3d294a874c", + "x-ms-correlation-request-id": "39de9a9c-fed5-4bf5-a9c7-e23d5db649ed", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "6d208a39-2640-4192-9474-2d456fa8b5cb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064202Z:39de9a9c-fed5-4bf5-a9c7-e23d5db649ed" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e1870cca5874d21ab9204e6bb7eabe89", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "bea8e7f5-f482-46da-aa87-98ffdf53d5a7", + "x-ms-client-request-id": "e1870cca5874d21ab9204e6bb7eabe89", + "x-ms-correlation-request-id": "12cf4245-1bd6-4749-b44a-ab8fda1e27b0", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "d0439368-4d44-471b-9a03-225b1dd6ed50", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064203Z:12cf4245-1bd6-4749-b44a-ab8fda1e27b0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "da25ea1fbc41e6952b7db093d709e72e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5098ea12-16cb-49c7-8344-5f8addd78a06", + "x-ms-client-request-id": "da25ea1fbc41e6952b7db093d709e72e", + "x-ms-correlation-request-id": "22ccc0fd-8bba-4179-8470-0fe3c22ffe42", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "ad3516bb-7876-4edf-87b0-0b3cc7247ca6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064205Z:22ccc0fd-8bba-4179-8470-0fe3c22ffe42" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b0d1b3d6b8a0239d4e90fa8b3676a877", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "f6241920-6ae2-4ab3-b4ca-ecb03d63ca63", + "x-ms-client-request-id": "b0d1b3d6b8a0239d4e90fa8b3676a877", + "x-ms-correlation-request-id": "f5aa1408-b291-4c00-b2c9-f0970cddb735", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "60b444ba-fe16-4700-8857-873f00c33fc0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064206Z:f5aa1408-b291-4c00-b2c9-f0970cddb735" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3f1e80c2ac240d0b76a1b5f6a787faaf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "dec1026c-0438-4e3c-995a-4ab70be922c6", + "x-ms-client-request-id": "3f1e80c2ac240d0b76a1b5f6a787faaf", + "x-ms-correlation-request-id": "cf939dc3-7482-4ab2-a8ff-09890a7840da", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "8a6ed739-8068-417e-aa4a-f739f6ffb72e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064207Z:cf939dc3-7482-4ab2-a8ff-09890a7840da" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "039520390d1866e94d028bb0c10aafb5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "cbba19a3-0ace-4ade-83d9-a4ff723e3851", + "x-ms-client-request-id": "039520390d1866e94d028bb0c10aafb5", + "x-ms-correlation-request-id": "78fa0e3d-d380-463a-9c63-f726bea70ede", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "584ef81b-233e-4709-9019-3a8e82f779d6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064209Z:78fa0e3d-d380-463a-9c63-f726bea70ede" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "56d039d4a8eb2a0aa7c43aff03a67cc7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "c8a104de-c93a-4913-9e90-06ba32fab571", + "x-ms-client-request-id": "56d039d4a8eb2a0aa7c43aff03a67cc7", + "x-ms-correlation-request-id": "e5f6038d-4240-4bf8-b4de-672ee8e8f362", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "a4eec68e-a274-4575-9b0b-7a50e43a1dbe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064210Z:e5f6038d-4240-4bf8-b4de-672ee8e8f362" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "16524b95a4e1b45e97b7f121205a4c6b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5dbc3cfd-cf60-4e41-80d9-f0c451921607", + "x-ms-client-request-id": "16524b95a4e1b45e97b7f121205a4c6b", + "x-ms-correlation-request-id": "74fbe6f0-2a6c-4807-8fef-8ff60fb7f01c", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "3ee0a366-a126-401a-9ef5-88c94c786672", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064211Z:74fbe6f0-2a6c-4807-8fef-8ff60fb7f01c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6d21fff1a3b691c4166b5b54d3e963a7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8f1c79cd-b71c-4f70-a48e-55f7d99e4186", + "x-ms-client-request-id": "6d21fff1a3b691c4166b5b54d3e963a7", + "x-ms-correlation-request-id": "34772059-cc27-4385-a214-cff0b91ab3ee", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "8fdef374-a179-4c92-baeb-470be386d9e4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064212Z:34772059-cc27-4385-a214-cff0b91ab3ee" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "761bc48699b72fd4db1bbf34b6e8094d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "33299166-919c-4a2c-b4ee-e036704c65a8", + "x-ms-client-request-id": "761bc48699b72fd4db1bbf34b6e8094d", + "x-ms-correlation-request-id": "f96640ab-62f6-45cf-82a8-99621418096c", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "e934923b-64d3-4174-92b3-c5b2e3234171", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064214Z:f96640ab-62f6-45cf-82a8-99621418096c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "030dce770e84f21086c1ff764909e1ae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7118a209-b9bc-4e1e-b91a-0ab38b0a9e23", + "x-ms-client-request-id": "030dce770e84f21086c1ff764909e1ae", + "x-ms-correlation-request-id": "1b16843b-7741-43a1-818a-735dc2f064c0", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "67625fe1-08c8-4258-96ff-e5788c737da7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064215Z:1b16843b-7741-43a1-818a-735dc2f064c0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5c9b4a53d53f58b32bf1929be490da2e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "10f9acdb-8c32-45c1-9012-8800a4b84360", + "x-ms-client-request-id": "5c9b4a53d53f58b32bf1929be490da2e", + "x-ms-correlation-request-id": "61882955-596a-47aa-99e0-ead0d16f59a3", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "3ce333d8-cfa8-4fee-a2c0-423dd72b1739", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064217Z:61882955-596a-47aa-99e0-ead0d16f59a3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "05dc0e615fdb7722b329f0f6995ee6d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "439128c4-aeb5-435b-a76d-58fc8b711be3", + "x-ms-client-request-id": "05dc0e615fdb7722b329f0f6995ee6d1", + "x-ms-correlation-request-id": "df0f8dcd-42f8-4f28-98df-46241e255a5d", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "984b5650-ed8e-4f7e-9fe2-d3a8cdbd0140", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064218Z:df0f8dcd-42f8-4f28-98df-46241e255a5d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6be0113aac4ca20e1ab5d7927b750df6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9e40eab6-404f-46fc-aa63-53388acca546", + "x-ms-client-request-id": "6be0113aac4ca20e1ab5d7927b750df6", + "x-ms-correlation-request-id": "36e4f204-af01-4562-ad48-fe47438e11d1", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "220c2a51-4807-4d2f-894c-48c089e779b7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064220Z:36e4f204-af01-4562-ad48-fe47438e11d1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3b14d1e6dc2df3d22823a816e5bdbecd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c6ed2023-ea45-4eb2-8c1b-261351f39301", + "x-ms-client-request-id": "3b14d1e6dc2df3d22823a816e5bdbecd", + "x-ms-correlation-request-id": "16315d9c-7d49-422b-b3e4-5735ae7f0f57", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "4b85bcfa-cbd7-4d22-aa9d-c8841bb94299", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064221Z:16315d9c-7d49-422b-b3e4-5735ae7f0f57" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d360c10b6eafb4e1003aea26888ffc3d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "6dc24321-613c-4bff-a9a4-f0982a5db2cd", + "x-ms-client-request-id": "d360c10b6eafb4e1003aea26888ffc3d", + "x-ms-correlation-request-id": "4c10eb1f-5697-45bd-8c6c-b5b0e95c4612", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "361a0e53-6b72-422e-ac9f-288010fdc842", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064223Z:4c10eb1f-5697-45bd-8c6c-b5b0e95c4612" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c70ffa1bab495ea43eec432804f7bd5d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "076c8bbf-2cc8-47cb-9115-25b5726c1427", + "x-ms-client-request-id": "c70ffa1bab495ea43eec432804f7bd5d", + "x-ms-correlation-request-id": "33aae587-a38d-4fa4-b24b-b52ea7f41a6b", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "7f5b8e45-1da3-4b0e-97d0-bedd3da1baa0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064224Z:33aae587-a38d-4fa4-b24b-b52ea7f41a6b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ba870af63a147746ef5f3af2f1ac6b98", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4f877a09-0adb-4bd4-b148-56d8ee3e5c4d", + "x-ms-client-request-id": "ba870af63a147746ef5f3af2f1ac6b98", + "x-ms-correlation-request-id": "6a4c2a4a-e4a8-4258-a0e9-4529455056d6", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "9f9f8cd8-cf9e-4dd0-962e-706c7f1227ef", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064226Z:6a4c2a4a-e4a8-4258-a0e9-4529455056d6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ebfb6a27f6ad5f831d0294c22bb9b008", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "221cf02c-83aa-47bd-9f82-08af13c97210", + "x-ms-client-request-id": "ebfb6a27f6ad5f831d0294c22bb9b008", + "x-ms-correlation-request-id": "e6792f9e-0470-485a-9188-4b6e4a329148", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "53c77cd0-eb7d-4f58-8d2a-4b8c653a8d0d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064227Z:e6792f9e-0470-485a-9188-4b6e4a329148" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7d2f8d7d4208e129b397d8ea70b16c92", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "708a24c6-4ee1-4c99-88d1-d223dc3a378f", + "x-ms-client-request-id": "7d2f8d7d4208e129b397d8ea70b16c92", + "x-ms-correlation-request-id": "62d9648a-4d9c-4052-9922-87039459f061", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "886165c0-c76a-4f6f-b83a-43a523829adb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064228Z:62d9648a-4d9c-4052-9922-87039459f061" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9901ab81d1fc00af86279c11a5834c36", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "57484ee3-a8aa-40de-8a16-f70327d9e0a6", + "x-ms-client-request-id": "9901ab81d1fc00af86279c11a5834c36", + "x-ms-correlation-request-id": "ea79beed-fbb8-488a-923b-ffa02b21d7f3", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "29091e89-ffff-4e4b-a219-2f788585ba42", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064230Z:ea79beed-fbb8-488a-923b-ffa02b21d7f3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "647532aeee7ce58f411a37151e99ee6b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "167f9fd5-ae93-44c6-8dfb-cb6d8bb292c2", + "x-ms-client-request-id": "647532aeee7ce58f411a37151e99ee6b", + "x-ms-correlation-request-id": "e9bb9792-c929-4dba-93fa-9295f3bf6f20", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "718d93b7-392f-4914-b84d-fea8480d59af", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064231Z:e9bb9792-c929-4dba-93fa-9295f3bf6f20" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7f41029617b8ab0cdd2ff6e0a5173b30", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "ebae76eb-57df-4764-9ec1-b4c5bdd274c1", + "x-ms-client-request-id": "7f41029617b8ab0cdd2ff6e0a5173b30", + "x-ms-correlation-request-id": "f73caa34-1e67-4693-9c77-b95a1fbfd68b", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "255b54e9-42c4-4dfe-9d3e-93458dc33682", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064232Z:f73caa34-1e67-4693-9c77-b95a1fbfd68b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3e3ba14b083b93151b1b57e29a99e1ed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "048dfcc3-68a4-412d-b7d0-7c9309452176", + "x-ms-client-request-id": "3e3ba14b083b93151b1b57e29a99e1ed", + "x-ms-correlation-request-id": "d76133a7-ab8d-452e-a396-54e8814cb6e5", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "ff33022d-9c5b-458d-a75b-559acd77251f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064234Z:d76133a7-ab8d-452e-a396-54e8814cb6e5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a37a3138cc42977e26ca864df7ae3f29", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "856f5888-6d55-49f5-9a1c-fca9345029ee", + "x-ms-client-request-id": "a37a3138cc42977e26ca864df7ae3f29", + "x-ms-correlation-request-id": "e16384bd-9a3e-444f-9060-1412433d22c6", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "605cf64a-755b-4d40-a012-57dea5b3cc85", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064235Z:e16384bd-9a3e-444f-9060-1412433d22c6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7dca07deb05d8e2fedae649cbf291043", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b82bbf22-c53f-421a-9e2c-7d982f516276", + "x-ms-client-request-id": "7dca07deb05d8e2fedae649cbf291043", + "x-ms-correlation-request-id": "3f55f7e7-7449-4e2b-8751-554c1a0605ef", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "149ed754-a41e-41e0-b149-b503e479d828", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064236Z:3f55f7e7-7449-4e2b-8751-554c1a0605ef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "74a8094d989c7eed22a4187181c79c6c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "444d0fa1-d166-485e-9623-9c44f04c6c34", + "x-ms-client-request-id": "74a8094d989c7eed22a4187181c79c6c", + "x-ms-correlation-request-id": "63c85ddc-7ef8-421b-9f6b-bb933b446cad", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "b9665ebe-3552-41c0-a215-82c0aa94ed65", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064237Z:63c85ddc-7ef8-421b-9f6b-bb933b446cad" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "92032edc64cf888f01ecb59468e2d7fc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a48e58ad-5e38-441c-afdd-036d4e7c7921", + "x-ms-client-request-id": "92032edc64cf888f01ecb59468e2d7fc", + "x-ms-correlation-request-id": "a5c2425a-1a2d-4038-bbfd-cf009540dc9d", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "7b79e667-f3b9-43b2-975f-031ee09ef00c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064239Z:a5c2425a-1a2d-4038-bbfd-cf009540dc9d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ee0042b9cb06468c194c5ab997be0c25", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c6e20782-ec56-4877-a0d0-fe859dd2da69", + "x-ms-client-request-id": "ee0042b9cb06468c194c5ab997be0c25", + "x-ms-correlation-request-id": "b24ab391-a486-48f1-a20c-4271bf714d12", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "169763f8-d7fe-44af-9c9e-5dbdcbb1d316", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064240Z:b24ab391-a486-48f1-a20c-4271bf714d12" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "91c0f8127e25e974791f72b0e2591640", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:42: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": "e4b79448-94bf-42c8-b6a4-cab715ddb8b5", + "x-ms-client-request-id": "91c0f8127e25e974791f72b0e2591640", + "x-ms-correlation-request-id": "7fcc08bb-e9b9-4adf-a06d-34853d334549", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "fb182a8f-bb9b-4356-8833-9d2b28aa92c0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064241Z:7fcc08bb-e9b9-4adf-a06d-34853d334549" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3fb81bccadc71065a1bd798309d6f043", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8b0f5a44-dc1e-4c3e-9755-fb4262eac873", + "x-ms-client-request-id": "3fb81bccadc71065a1bd798309d6f043", + "x-ms-correlation-request-id": "5d29347a-f5c5-4768-a7f2-be69590ca0c7", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "a050c078-1d2b-42d4-9c31-9392662c94a1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064243Z:5d29347a-f5c5-4768-a7f2-be69590ca0c7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6f8290df46213bd7ce1675e758dc63bf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "82cf20d5-a496-46cd-a837-77b3bb8ec4c0", + "x-ms-client-request-id": "6f8290df46213bd7ce1675e758dc63bf", + "x-ms-correlation-request-id": "e55bc3e8-b950-42c8-8983-fcb536ba3f06", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-request-id": "7c29fea4-050c-42bb-a6db-dc36ceb56c2b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064244Z:e55bc3e8-b950-42c8-8983-fcb536ba3f06" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7ced1935cd06645e92aff06704f0dfa2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5979837e-3bba-45e4-9def-ff0313fb6cc3", + "x-ms-client-request-id": "7ced1935cd06645e92aff06704f0dfa2", + "x-ms-correlation-request-id": "554772de-5a96-4497-aff3-52b1e2be5e9e", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "c7f8f812-cc8e-4bd7-b794-5e7a0365188b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064245Z:554772de-5a96-4497-aff3-52b1e2be5e9e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "52d02f2ea6d7851f447c71b0387eb8c4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e550815f-ea94-4aeb-9f2c-684b294ef4af", + "x-ms-client-request-id": "52d02f2ea6d7851f447c71b0387eb8c4", + "x-ms-correlation-request-id": "f5c0f324-4613-48b4-a915-b6aecf6a1b0b", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "ff1b0687-dc3f-46f6-ae86-42984fafbbf4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064248Z:f5c0f324-4613-48b4-a915-b6aecf6a1b0b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ef4db95a74e8123c311ddd71566f36dd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "ddc1cbcd-1f8b-4b13-90cf-3efea2ca871f", + "x-ms-client-request-id": "ef4db95a74e8123c311ddd71566f36dd", + "x-ms-correlation-request-id": "fe51f185-e74a-4fac-b7f1-361f2c11f619", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "663a9d2a-6013-4008-b29f-eb3d4799a06b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064249Z:fe51f185-e74a-4fac-b7f1-361f2c11f619" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "28b8d237100b8fe8fa6737895cae2b14", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "cd8beeca-aca2-47c8-9ec5-726001e7979a", + "x-ms-client-request-id": "28b8d237100b8fe8fa6737895cae2b14", + "x-ms-correlation-request-id": "ab6c1dcc-a7bd-4be7-9938-8b0eb7b71e8c", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "2e39c078-3a62-4aee-8df7-5303a9854ffb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064250Z:ab6c1dcc-a7bd-4be7-9938-8b0eb7b71e8c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4b0d2bf7efa3b9baf2be21b9c8ad2fd5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ce67ba53-3bc1-4d0d-9547-85a3f54c00e6", + "x-ms-client-request-id": "4b0d2bf7efa3b9baf2be21b9c8ad2fd5", + "x-ms-correlation-request-id": "fd28d2fb-dc60-4f56-a586-0eb8a96fd2e6", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "50f1e4d6-e363-4978-a71c-20aecef89162", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064251Z:fd28d2fb-dc60-4f56-a586-0eb8a96fd2e6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "667993468fc549b8d0bdf5803db3b683", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ce6f27e3-eace-4a55-b68a-19fe7a2cce22", + "x-ms-client-request-id": "667993468fc549b8d0bdf5803db3b683", + "x-ms-correlation-request-id": "55b54401-8a12-48d0-88f2-3a38f3775d66", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "fdaaccfe-91a1-4b24-90b8-7df222ebc769", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064253Z:55b54401-8a12-48d0-88f2-3a38f3775d66" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2b7ac8f1ea61473917ff354def2ec64d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "f190c736-8173-4f6c-b63d-8537e9385040", + "x-ms-client-request-id": "2b7ac8f1ea61473917ff354def2ec64d", + "x-ms-correlation-request-id": "3ffd797b-8328-42fd-9613-35cf62a8068f", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "1c0c5f17-074d-466d-8fb3-6fa10a23730c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064254Z:3ffd797b-8328-42fd-9613-35cf62a8068f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c8436138c535684f72c47ae5fa397c3f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ee738e98-9fa7-464f-972f-278824d672f8", + "x-ms-client-request-id": "c8436138c535684f72c47ae5fa397c3f", + "x-ms-correlation-request-id": "3b222b6e-cd57-4b77-8e49-496a00ebaa82", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "b8b81904-5a4d-4cbb-be96-b40e1ae6e4b7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064256Z:3b222b6e-cd57-4b77-8e49-496a00ebaa82" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ffc79e0804335b745a314ec5596b59a2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "db361d6f-3d2c-4712-8fe3-3ad346544e71", + "x-ms-client-request-id": "ffc79e0804335b745a314ec5596b59a2", + "x-ms-correlation-request-id": "24f3ffc3-36de-4f6a-951d-abd00d568038", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "0057760b-90fb-4276-9904-3a989ee8fc83", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064258Z:24f3ffc3-36de-4f6a-951d-abd00d568038" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "db48a7f7ed702c4d7911b89d6f544cde", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "bb2773f4-20c6-430d-8a73-c2c29e4e2e0e", + "x-ms-client-request-id": "db48a7f7ed702c4d7911b89d6f544cde", + "x-ms-correlation-request-id": "c4c5e1d9-ec67-405b-a6d7-7f762a466bfe", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "f9093f63-2b79-4d1f-a28a-caa0464b2516", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064259Z:c4c5e1d9-ec67-405b-a6d7-7f762a466bfe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5145f682c666331aede76e0377890e06", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "fa393872-2d94-43bf-94df-ccb9d66f2aba", + "x-ms-client-request-id": "5145f682c666331aede76e0377890e06", + "x-ms-correlation-request-id": "50030b69-99e5-4a8e-a2dd-f0a08c84d69c", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "461a0c74-e129-460c-a4d8-77eab4901a24", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064300Z:50030b69-99e5-4a8e-a2dd-f0a08c84d69c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "53eed86aa0f01acf509b86214bd7eb05", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0abd7c68-0c94-4f28-baa2-6d466898c99e", + "x-ms-client-request-id": "53eed86aa0f01acf509b86214bd7eb05", + "x-ms-correlation-request-id": "a595b98d-c1f0-4872-be32-9935ce2d4045", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "f56e4d08-01b2-4cbd-a2ff-12c9102fa318", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064302Z:a595b98d-c1f0-4872-be32-9935ce2d4045" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "63436fe40826303c8d15ed887f49b5f0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "6b5e9356-28d9-4fc0-9279-a6c4f1dd6430", + "x-ms-client-request-id": "63436fe40826303c8d15ed887f49b5f0", + "x-ms-correlation-request-id": "b1622cbf-fdb3-4f67-bf3e-1a910421850c", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "1ab166f3-2ab2-4fe5-aeb6-aba28f1a3301", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064303Z:b1622cbf-fdb3-4f67-bf3e-1a910421850c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9732b102f966e1ed272a00ca40f8e716", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "00839ff8-c08d-46e4-903e-2540d5bb4498", + "x-ms-client-request-id": "9732b102f966e1ed272a00ca40f8e716", + "x-ms-correlation-request-id": "97a6382f-ffc5-43de-afca-f50ffd283db5", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "3cf6b5bb-5874-40d9-b05e-978f7b1cb136", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064304Z:97a6382f-ffc5-43de-afca-f50ffd283db5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "071e68fbab4662e09cbec5dbb3469b06", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9f98d555-233c-442a-83c4-c5e89c7993f2", + "x-ms-client-request-id": "071e68fbab4662e09cbec5dbb3469b06", + "x-ms-correlation-request-id": "4dac86b3-27a9-4d08-bfb3-468704ee1b4f", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "4c310e1d-1596-48c5-a130-cd9168da087f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064305Z:4dac86b3-27a9-4d08-bfb3-468704ee1b4f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "991e95e654a4eb9f82613bfb0771ef94", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "670ad91b-a407-4d4a-99ef-46d639af404c", + "x-ms-client-request-id": "991e95e654a4eb9f82613bfb0771ef94", + "x-ms-correlation-request-id": "b7b2dc2b-1a88-42c6-9832-5089eb348045", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "b6db40e6-182c-473f-9ce8-f0e0d2a737a9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064307Z:b7b2dc2b-1a88-42c6-9832-5089eb348045" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "168dd62dae2b57aad1cffaa733122ee1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "00432779-1f22-4887-8c84-8c6beaae1d34", + "x-ms-client-request-id": "168dd62dae2b57aad1cffaa733122ee1", + "x-ms-correlation-request-id": "d84cbde7-9571-4144-8fea-fb6bc7b5b514", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "b8d5d949-62a2-4964-bf66-81498a843842", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064309Z:d84cbde7-9571-4144-8fea-fb6bc7b5b514" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "abe4fa8f4edaa672c93385e46fe55b2b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f0684bd2-b3b4-4c8b-9e8b-fb404ce6655e", + "x-ms-client-request-id": "abe4fa8f4edaa672c93385e46fe55b2b", + "x-ms-correlation-request-id": "a2ac4e16-8c15-4f62-b3e1-090ef5331398", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "07c6cc00-752e-48fe-9641-1a462f21d399", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064310Z:a2ac4e16-8c15-4f62-b3e1-090ef5331398" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ddae31cf84b938dbebc7c8d559f7b76f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6dc8ccb5-e539-441d-b373-2d55fd9080dc", + "x-ms-client-request-id": "ddae31cf84b938dbebc7c8d559f7b76f", + "x-ms-correlation-request-id": "97e55b94-e44f-42fc-b360-8abe08c24c09", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "444d1e07-28df-4ab5-913f-5d63c77e1698", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064311Z:97e55b94-e44f-42fc-b360-8abe08c24c09" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0d6b5a32448cdfba64e64df728c5e7ec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "8e332931-9fce-4546-bcb6-eb9b5751e6b5", + "x-ms-client-request-id": "0d6b5a32448cdfba64e64df728c5e7ec", + "x-ms-correlation-request-id": "3481850f-d09b-4b31-bf80-5a1c7aa17afe", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "18937270-c653-4e74-83e9-9139343c1851", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064313Z:3481850f-d09b-4b31-bf80-5a1c7aa17afe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "02d8cf7451630b271eacbf13859c4dd1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "108eb601-01e1-4413-85df-3316ae18432d", + "x-ms-client-request-id": "02d8cf7451630b271eacbf13859c4dd1", + "x-ms-correlation-request-id": "47b410ff-ca2b-4fcf-b2f4-e93aece1ce56", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "b2cee07e-1e90-4076-bdf1-d0de01cf6f27", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064314Z:47b410ff-ca2b-4fcf-b2f4-e93aece1ce56" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "15b2157c4e798a9e77cf78d336e30f25", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "578b68f1-0a47-400a-9534-ddb9b44aa841", + "x-ms-client-request-id": "15b2157c4e798a9e77cf78d336e30f25", + "x-ms-correlation-request-id": "a7acd455-8e9f-454b-b28e-39f4b592f35d", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "466c5735-5832-4a66-b52b-ce138d44b047", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064316Z:a7acd455-8e9f-454b-b28e-39f4b592f35d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8a60dcdfb41ee10c3360eee084a659c7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "bbe43b07-a49c-498b-967a-8b9969ad8fad", + "x-ms-client-request-id": "8a60dcdfb41ee10c3360eee084a659c7", + "x-ms-correlation-request-id": "72a525ca-8df5-4742-ad61-463ef2bba1cb", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "a5a7c92c-058d-45d8-b7a5-51cb15802adc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064317Z:72a525ca-8df5-4742-ad61-463ef2bba1cb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "137b7b98d2132672314d8b94d854d43b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "63098e74-11b9-44be-9656-d1ad75eff9c5", + "x-ms-client-request-id": "137b7b98d2132672314d8b94d854d43b", + "x-ms-correlation-request-id": "d0906b2b-4dd9-4490-8795-bbbd322364f1", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "30894ed7-2187-483b-9fcf-e20a8efa44e8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064318Z:d0906b2b-4dd9-4490-8795-bbbd322364f1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a933999dc33cc7b208d0e2195fbd06d0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9dce30f6-840e-40e5-9536-1b8250683515", + "x-ms-client-request-id": "a933999dc33cc7b208d0e2195fbd06d0", + "x-ms-correlation-request-id": "080b21cc-9497-4ee4-9eb1-02559c19711d", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "7a690a32-0e65-4197-a1d2-3ac2ccaf3e24", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064320Z:080b21cc-9497-4ee4-9eb1-02559c19711d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bb3ab176fb680c12693a58d1297709de", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5f2390e2-700d-446d-8320-2f303c6b8644", + "x-ms-client-request-id": "bb3ab176fb680c12693a58d1297709de", + "x-ms-correlation-request-id": "603c9fc7-0ea5-42d9-811f-a20e154c940f", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "a6e0e262-c0f6-4fbc-9ca8-234ae5e24311", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064321Z:603c9fc7-0ea5-42d9-811f-a20e154c940f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ea43b38baf72d58bc8b30a42f059c673", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "9b65f582-e526-4b19-8e4e-c34048aba256", + "x-ms-client-request-id": "ea43b38baf72d58bc8b30a42f059c673", + "x-ms-correlation-request-id": "4ce60b31-bd0b-40c4-b934-adcf666ba363", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "4436e55d-cd9b-4438-b108-0c4fe621b1a2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064322Z:4ce60b31-bd0b-40c4-b934-adcf666ba363" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "261eba47191aa1d286273f016ae19e90", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e2864317-ae5d-4d56-b852-bc9468498dda", + "x-ms-client-request-id": "261eba47191aa1d286273f016ae19e90", + "x-ms-correlation-request-id": "31b6a851-a12b-43e1-8c74-d943edf91c3d", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "826e2c56-af07-4d6c-8d73-92e9a18d7a36", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064323Z:31b6a851-a12b-43e1-8c74-d943edf91c3d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ac8d03c71b7ac65e2664f2b4f0d01c10", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "be8d4f32-040b-405c-bced-6a53eca96d8c", + "x-ms-client-request-id": "ac8d03c71b7ac65e2664f2b4f0d01c10", + "x-ms-correlation-request-id": "781a08bc-e58e-4931-9232-aed96fb82645", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "ed081570-5111-4a9d-bd58-8bf591299434", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064325Z:781a08bc-e58e-4931-9232-aed96fb82645" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6e89e574e25972c4e0a1634b70896be7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1a8050e7-b3e5-459c-a9b6-f62f1812252c", + "x-ms-client-request-id": "6e89e574e25972c4e0a1634b70896be7", + "x-ms-correlation-request-id": "b0556117-7488-461c-8dd5-e98c6486715e", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "27bcc34e-7353-4677-a432-702fe76cbc30", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064326Z:b0556117-7488-461c-8dd5-e98c6486715e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ec7b7a1519cc2bf95c5800b5261db1b6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "2a7691a4-79ed-402b-b37d-d4d3ae9de5d6", + "x-ms-client-request-id": "ec7b7a1519cc2bf95c5800b5261db1b6", + "x-ms-correlation-request-id": "90d2b431-3d18-4df7-beb8-515ee5dc1c38", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "3bf65df7-0c16-48e8-9114-49a20d63064b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064328Z:90d2b431-3d18-4df7-beb8-515ee5dc1c38" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "858c2f0a3057e5373f1accd8b712569c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "21336b5a-f981-4822-8bca-6c3cd27d4320", + "x-ms-client-request-id": "858c2f0a3057e5373f1accd8b712569c", + "x-ms-correlation-request-id": "214b79a7-6b62-4e40-9abd-0fa8c9d82a5b", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "d7a524c5-be2d-413c-b7c1-60614d13f920", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064330Z:214b79a7-6b62-4e40-9abd-0fa8c9d82a5b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "769f0bf82f545b44eb5e1101e10e4bc2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ce8fc280-b910-43e6-a128-58a79ba6ccc6", + "x-ms-client-request-id": "769f0bf82f545b44eb5e1101e10e4bc2", + "x-ms-correlation-request-id": "9904d2bc-2680-4b62-8ba7-89532fbfb706", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "0ce07419-3a51-443e-9724-fa56bb1dbe4c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064331Z:9904d2bc-2680-4b62-8ba7-89532fbfb706" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4041acf0e6fde48f4296adb14d20734a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "107bd003-6317-4d6e-a985-171dbfeac27a", + "x-ms-client-request-id": "4041acf0e6fde48f4296adb14d20734a", + "x-ms-correlation-request-id": "1ec1bd26-5490-47f5-a3ca-19adad882057", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "7ea091f1-090c-4c4d-b9db-18ddc085d9bf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064332Z:1ec1bd26-5490-47f5-a3ca-19adad882057" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1bbd64013b7eda62eb3199f91e350330", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "3b14bde1-dc82-4327-95ee-b260e2f134a8", + "x-ms-client-request-id": "1bbd64013b7eda62eb3199f91e350330", + "x-ms-correlation-request-id": "f635b22b-36ab-4112-892e-ea9fe457e2e6", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "d3531641-7d17-4dd6-aeaf-993a744335e1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064334Z:f635b22b-36ab-4112-892e-ea9fe457e2e6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0be809ce15d1129f7cba33be82920dcb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e6f93482-dfa4-41ba-af96-9c8798f4a06e", + "x-ms-client-request-id": "0be809ce15d1129f7cba33be82920dcb", + "x-ms-correlation-request-id": "696b8c91-67d1-4287-8c2d-a5b4dfb248d7", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "2b9846da-4b29-4827-9143-9243e03358ea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064335Z:696b8c91-67d1-4287-8c2d-a5b4dfb248d7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7cffc7ea3051b5444a6654cb4c95c60d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "bd4c844d-ce5f-4719-83bd-103acfb0ec63", + "x-ms-client-request-id": "7cffc7ea3051b5444a6654cb4c95c60d", + "x-ms-correlation-request-id": "e801444f-c074-4ebb-beec-16ba419ca0ef", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "f7eab74e-1c25-4f24-8495-4f4358031f08", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064336Z:e801444f-c074-4ebb-beec-16ba419ca0ef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3dc3bc66-53c3-476a-9be7-5367788d553e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "43e27c926837ec79c5aa9fc307a35858", + "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, 08 Sep 2021 06:43:37 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": "a3708241-a00e-421b-8e4b-ff6ef11ad3c7", + "x-ms-client-request-id": "43e27c926837ec79c5aa9fc307a35858", + "x-ms-correlation-request-id": "3dde685e-2ae9-4aae-aa53-99dadb608e7e", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "9663e64f-98d6-4a0d-b166-fa98ddf523ff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064338Z:3dde685e-2ae9-4aae-aa53-99dadb608e7e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-9302?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "570fcd2386359edfc533c06ac1d3c6e6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1535", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:43:38 GMT", + "ETag": "W/\u00223cc28897-09e1-4e6c-ba48-d1f6aea2e681\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": "ec548ff4-7ecb-484e-8da5-d6c640fcf604", + "x-ms-client-request-id": "570fcd2386359edfc533c06ac1d3c6e6", + "x-ms-correlation-request-id": "57b5e042-69d3-487f-b1fb-fc18d289f431", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "e39885c0-ed8c-4e85-863d-f4741cc40332", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064338Z:57b5e042-69d3-487f-b1fb-fc18d289f431" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022bastion-9302\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-9302\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00223cc28897-09e1-4e6c-ba48-d1f6aea2e681\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022dnsName\u0022: \u0022bst-e6d376ad-5bc3-4766-a494-42e1eea52f33.bastion.azure.com\u0022,\r\n", + " \u0022scaleUnits\u0022: 2,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022bastionIPConfig-5532\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-9302/bastionHostIpConfigurations/bastionIPConfig-5532\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00223cc28897-09e1-4e6c-ba48-d1f6aea2e681\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts/bastionHostIpConfigurations\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/bastionrg-5755/providers/Microsoft.Network/publicIPAddresses/ip-7939\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166/subnets/AzureBastionSubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022bastionShareableLinks\u0022: {}\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "052b26f4cab081934e13b7a69181ada6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1696", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:43:38 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": "675ac704-9fbb-4534-aa1d-c36b0af86b45", + "x-ms-client-request-id": "052b26f4cab081934e13b7a69181ada6", + "x-ms-correlation-request-id": "9b0c84a6-271d-4ac6-a8cc-97eb972c0218", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "9ab14aab-8ead-4d81-98c6-55497ba074ce", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064338Z:9b0c84a6-271d-4ac6-a8cc-97eb972c0218" + }, + "ResponseBody": [ + "{\r\n", + " \u0022value\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022bastion-9302\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-9302\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00223cc28897-09e1-4e6c-ba48-d1f6aea2e681\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022dnsName\u0022: \u0022bst-e6d376ad-5bc3-4766-a494-42e1eea52f33.bastion.azure.com\u0022,\r\n", + " \u0022scaleUnits\u0022: 2,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022bastionIPConfig-5532\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-9302/bastionHostIpConfigurations/bastionIPConfig-5532\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00223cc28897-09e1-4e6c-ba48-d1f6aea2e681\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts/bastionHostIpConfigurations\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/bastionrg-5755/providers/Microsoft.Network/publicIPAddresses/ip-7939\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166/subnets/AzureBastionSubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022bastionShareableLinks\u0022: {}\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022\r\n", + " }\r\n", + " }\r\n", + " ]\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-9302?api-version=2021-02-01", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7ea7fb0d6e860bd79c447e04a80e2bf1", + "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/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 08 Sep 2021 06:43:40 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operationResults/08f41c8c-848b-4f56-abf9-c79e0bb27554?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": "b5f9cc21-dcd6-4c61-89c0-a8523cfa2a3c", + "x-ms-client-request-id": "7ea7fb0d6e860bd79c447e04a80e2bf1", + "x-ms-correlation-request-id": "5a9b9579-6556-4a85-b4e1-5428e2fffff7", + "x-ms-ratelimit-remaining-subscription-deletes": "14999", + "x-ms-request-id": "08f41c8c-848b-4f56-abf9-c79e0bb27554", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064340Z:5a9b9579-6556-4a85-b4e1-5428e2fffff7" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c55c1985472c86604e20686b4b8fd93f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:43: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": "e6f3e4b7-5bab-4f32-95c8-3f5a541a19cf", + "x-ms-client-request-id": "c55c1985472c86604e20686b4b8fd93f", + "x-ms-correlation-request-id": "3f47d724-57a5-4027-af17-d6475091966e", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "f401d7bd-a90f-4cdf-a5e8-f0774ba150b0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064340Z:3f47d724-57a5-4027-af17-d6475091966e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d8c2c5e8cbb2bb2e524d44f864b43c63", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:43: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": "0997922b-98e9-4ce8-bac4-eecf4cd14103", + "x-ms-client-request-id": "d8c2c5e8cbb2bb2e524d44f864b43c63", + "x-ms-correlation-request-id": "c3690eaa-149b-4c52-88e5-baa32f311660", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "465a8ff7-4f0b-42e1-a618-28e9475423e6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064342Z:c3690eaa-149b-4c52-88e5-baa32f311660" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8e7e3a3765b19cc558489257e93c0daa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:43:43 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": "e69b2524-47b6-4b99-81ca-80b7e27f0838", + "x-ms-client-request-id": "8e7e3a3765b19cc558489257e93c0daa", + "x-ms-correlation-request-id": "b16a27a6-fef7-4b90-9a22-283702f92850", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "5c5fd4d3-a9c2-4abf-95ac-13648849acea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064343Z:b16a27a6-fef7-4b90-9a22-283702f92850" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "093ac9b43476b990eba172de02682199", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:43: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": "6f5801e4-e1af-483d-8677-23b17094742c", + "x-ms-client-request-id": "093ac9b43476b990eba172de02682199", + "x-ms-correlation-request-id": "c8a62e27-37a4-4fa4-b292-0506af162969", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "55b128ff-c018-4d01-a11e-e961925600f6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064344Z:c8a62e27-37a4-4fa4-b292-0506af162969" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "103405e34b10828e0025806a39d6d116", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:43: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": "85e67f50-3c00-468d-9f8a-16ff2b73999f", + "x-ms-client-request-id": "103405e34b10828e0025806a39d6d116", + "x-ms-correlation-request-id": "e661dc06-fcbb-46b3-b0f0-c1aaeec6d44c", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "aa9ce2f6-9d06-4464-abf5-64a12f85fe84", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064346Z:e661dc06-fcbb-46b3-b0f0-c1aaeec6d44c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9b449a40327a03eda9c5a30ff3e69af0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:43: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": "3cf405eb-4b46-4e78-a3ed-9b69e70fe8b4", + "x-ms-client-request-id": "9b449a40327a03eda9c5a30ff3e69af0", + "x-ms-correlation-request-id": "1111f908-e064-44d1-9ca8-6237b0f6a951", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "17a6a69f-da80-4ef5-8676-c4819aea600b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064347Z:1111f908-e064-44d1-9ca8-6237b0f6a951" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e474f926fc0868993bb70951b4268014", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:43:48 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": "23357e8c-8581-4008-be73-6933dcef0739", + "x-ms-client-request-id": "e474f926fc0868993bb70951b4268014", + "x-ms-correlation-request-id": "55a5e4e1-9582-49c5-8c65-396b166410e5", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "4c2e2db9-4140-4da2-8b0a-1179fbb471ec", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064348Z:55a5e4e1-9582-49c5-8c65-396b166410e5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "689e5cd08624b11f1831664ba87e8f19", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:43: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": "1a05cd2d-df00-4377-ac70-035f83491a2f", + "x-ms-client-request-id": "689e5cd08624b11f1831664ba87e8f19", + "x-ms-correlation-request-id": "1c5e20b7-f6b4-4496-b4be-6f62c9e99735", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "e77f03d1-a667-44c0-95a7-8975f3d74a0b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064349Z:1c5e20b7-f6b4-4496-b4be-6f62c9e99735" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4044908bec62430d00db5fc3289c4e83", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:43:51 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": "d38b7104-425f-4cd4-b898-1e59de0fa436", + "x-ms-client-request-id": "4044908bec62430d00db5fc3289c4e83", + "x-ms-correlation-request-id": "9d79ca22-0937-4068-9ead-7e80ef1f5eef", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "d28730bb-742c-4920-82cb-827cac03293c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064351Z:9d79ca22-0937-4068-9ead-7e80ef1f5eef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "963f8e443148a0cbd9c3ccd7954ec0bc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "35ed2854-c923-4326-af40-8ebea04ace71", + "x-ms-client-request-id": "963f8e443148a0cbd9c3ccd7954ec0bc", + "x-ms-correlation-request-id": "d1ce618e-1a80-4a78-bdcb-656fe2b55d00", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "a7d16193-2b6b-4537-ad46-6b72b6527089", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064352Z:d1ce618e-1a80-4a78-bdcb-656fe2b55d00" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "24c5f02740e1e3b14e5b6848265b887c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a7a28e87-c1ef-4dbd-bb6e-4e720d496083", + "x-ms-client-request-id": "24c5f02740e1e3b14e5b6848265b887c", + "x-ms-correlation-request-id": "d12bdc95-08e7-468b-880d-e06c5d786286", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "75c3f112-8a35-4144-b374-e1a2d177a326", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064354Z:d12bdc95-08e7-468b-880d-e06c5d786286" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1907e3e2f93f5ad0c4a3669f1f36adb1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "eefe8ae3-a4fd-4d88-8aef-7035f74d4a78", + "x-ms-client-request-id": "1907e3e2f93f5ad0c4a3669f1f36adb1", + "x-ms-correlation-request-id": "f786cc25-4972-42f0-8eb0-0bfbc0427688", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "ca3fd9d5-8825-401e-a177-2f223535de9f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064356Z:f786cc25-4972-42f0-8eb0-0bfbc0427688" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "389ba21a2ad603a1dc5b47edc983797d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1d7f8c63-4ead-4a1f-900c-02abc39a7e2f", + "x-ms-client-request-id": "389ba21a2ad603a1dc5b47edc983797d", + "x-ms-correlation-request-id": "173d1ac3-3ca4-469d-b258-314a60ea6071", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "a2523919-c16b-4232-acc0-a29547d01c0b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064357Z:173d1ac3-3ca4-469d-b258-314a60ea6071" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b2f4503aa7462e7d1f6b5f3eda12c318", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "cb54bd9b-aba6-46ae-8c5c-335a527e0f68", + "x-ms-client-request-id": "b2f4503aa7462e7d1f6b5f3eda12c318", + "x-ms-correlation-request-id": "83334f09-eb11-49b0-8041-b776e5ab3299", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "79ff805a-ce8e-449b-b4d0-e819d92f8494", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064358Z:83334f09-eb11-49b0-8041-b776e5ab3299" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "832eb6ae50c0b7a541033ce4b1e39141", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "394ed08d-f853-4bda-9a7d-6e2a458ffda6", + "x-ms-client-request-id": "832eb6ae50c0b7a541033ce4b1e39141", + "x-ms-correlation-request-id": "b58acc03-e16c-4890-8015-801448e5d863", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "488c65ba-c745-46e6-bbb2-da8d555fef39", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064400Z:b58acc03-e16c-4890-8015-801448e5d863" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cf64e829fa41736b256c186bcb6329ca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9d736b46-6292-4d4b-99fa-9a7b1f8b3d7b", + "x-ms-client-request-id": "cf64e829fa41736b256c186bcb6329ca", + "x-ms-correlation-request-id": "0d21895a-df02-4c76-8dd7-3d59d7346164", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "b9048e56-cbf1-4def-9373-36811b7234d7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064401Z:0d21895a-df02-4c76-8dd7-3d59d7346164" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "123e2e97f654e9bdaa3d71436a997c3c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "5f0a54b1-4152-4efc-b50d-328e9a49279f", + "x-ms-client-request-id": "123e2e97f654e9bdaa3d71436a997c3c", + "x-ms-correlation-request-id": "31dccff5-1206-4579-8872-4dab9c89f672", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "d96902b1-cff4-49ee-ac5a-f02918497fa9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064402Z:31dccff5-1206-4579-8872-4dab9c89f672" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f2141edaf4adb4d64bba5e53383aecdd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c32439a9-5599-4657-8325-625f68d8d9c6", + "x-ms-client-request-id": "f2141edaf4adb4d64bba5e53383aecdd", + "x-ms-correlation-request-id": "71defca6-42fb-4f5e-92d7-6f0c8b091cb2", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "35f12064-2dc4-46fc-a851-525e64a17abe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064403Z:71defca6-42fb-4f5e-92d7-6f0c8b091cb2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "824c72da7ea433ec2a7b24048827098b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1f543152-0ac0-44c4-b7e0-0acdb21d148d", + "x-ms-client-request-id": "824c72da7ea433ec2a7b24048827098b", + "x-ms-correlation-request-id": "03a5470e-15d0-462e-9a39-e3128ed6fc7c", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-request-id": "19c8b631-c685-4829-afb4-83a196306db2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064405Z:03a5470e-15d0-462e-9a39-e3128ed6fc7c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ac91dbf0374fa21c578ac79a9769b170", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ec0021f8-7342-4271-9851-f1b1163ea199", + "x-ms-client-request-id": "ac91dbf0374fa21c578ac79a9769b170", + "x-ms-correlation-request-id": "5b6897a8-b291-477f-9df8-163455728201", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "53446527-4101-4fd3-8e01-5cc9ccf67c9e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064406Z:5b6897a8-b291-477f-9df8-163455728201" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f7699350fa4c5b9732e0c732cfd22b23", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2837eb70-7060-41af-8928-aa99a3251e3b", + "x-ms-client-request-id": "f7699350fa4c5b9732e0c732cfd22b23", + "x-ms-correlation-request-id": "c1f86353-7511-479f-b6c5-706d4fb303c3", + "x-ms-ratelimit-remaining-subscription-reads": "11788", + "x-ms-request-id": "2f316b33-dc76-4202-a529-31da971bf5fd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064407Z:c1f86353-7511-479f-b6c5-706d4fb303c3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5c63d3b140a9a38e55a92a1ab7529bc0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "35efeac9-0650-4c7a-9c75-77cce3443b59", + "x-ms-client-request-id": "5c63d3b140a9a38e55a92a1ab7529bc0", + "x-ms-correlation-request-id": "b29a1188-dcbf-408c-8fe2-4381d63414cf", + "x-ms-ratelimit-remaining-subscription-reads": "11787", + "x-ms-request-id": "685151da-ff5e-46c2-acba-0a1377437a94", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064409Z:b29a1188-dcbf-408c-8fe2-4381d63414cf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f4b3b3c911bef53e4435796e6fead385", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a51d59a3-f2f9-46b6-9e68-3b80a2aa60ef", + "x-ms-client-request-id": "f4b3b3c911bef53e4435796e6fead385", + "x-ms-correlation-request-id": "129344c4-50ee-4d9d-a3a6-ff538b4e1ce1", + "x-ms-ratelimit-remaining-subscription-reads": "11786", + "x-ms-request-id": "f2b2a8bf-f2d3-43aa-91c5-b52d20754c02", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064410Z:129344c4-50ee-4d9d-a3a6-ff538b4e1ce1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c4e8a35f540610c705c6a2a3cf7da4e0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "964b853c-e2b5-46d6-bc80-ece8a03848f4", + "x-ms-client-request-id": "c4e8a35f540610c705c6a2a3cf7da4e0", + "x-ms-correlation-request-id": "cdd7eaca-98f5-4aa6-bf0f-eead7fd9c21d", + "x-ms-ratelimit-remaining-subscription-reads": "11785", + "x-ms-request-id": "4600dbf1-3bf5-4800-a7c6-82b87f1e9d14", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064412Z:cdd7eaca-98f5-4aa6-bf0f-eead7fd9c21d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1b690645361f9f65946d1873c620336b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d831de1f-f9a4-4e14-a7ba-3fd84a80f747", + "x-ms-client-request-id": "1b690645361f9f65946d1873c620336b", + "x-ms-correlation-request-id": "85977cb2-2f41-4988-afe0-6bb0812b3919", + "x-ms-ratelimit-remaining-subscription-reads": "11784", + "x-ms-request-id": "4e17a30f-0347-4098-bb3c-1eabeccd65e9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064414Z:85977cb2-2f41-4988-afe0-6bb0812b3919" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "13bba5d6d76974baeca2eff86f9b26c7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7bc0dd31-d020-4ecc-b0bc-11d715f05d47", + "x-ms-client-request-id": "13bba5d6d76974baeca2eff86f9b26c7", + "x-ms-correlation-request-id": "5563c10c-3984-487d-9809-c693b930d311", + "x-ms-ratelimit-remaining-subscription-reads": "11783", + "x-ms-request-id": "5c62d293-9c2e-4912-b8e6-d6b117eb34d8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064415Z:5563c10c-3984-487d-9809-c693b930d311" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "69299991b78128653e4930983c544ae4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "25d13d11-f947-40fe-951e-f0e91528bca2", + "x-ms-client-request-id": "69299991b78128653e4930983c544ae4", + "x-ms-correlation-request-id": "214c7ddb-91a4-4e1e-b8a7-21272f4bc328", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "8e1f4405-1e4c-4787-aff9-1e42c2b3b08b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064417Z:214c7ddb-91a4-4e1e-b8a7-21272f4bc328" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "29cc369290c16d774bf42f7c476c30f8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5012edb0-f6d8-43b2-88f6-57c604f5d995", + "x-ms-client-request-id": "29cc369290c16d774bf42f7c476c30f8", + "x-ms-correlation-request-id": "d4676a3e-0bc1-4dff-a1f8-2b8293fc5fd3", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "d7c76e45-254d-4f59-90e7-0d5730d43183", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064418Z:d4676a3e-0bc1-4dff-a1f8-2b8293fc5fd3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2ce25047caf71fea3f93d520a7223898", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2268a6d2-cd9c-432c-b18b-218ec860a3c6", + "x-ms-client-request-id": "2ce25047caf71fea3f93d520a7223898", + "x-ms-correlation-request-id": "266ee2f8-74e1-4acc-a5cf-36212fb63059", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "ac5bf4bf-4fca-4828-b2fe-229ac62f44b0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064419Z:266ee2f8-74e1-4acc-a5cf-36212fb63059" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "38650a58fccf000522bb1d8c87e9e0d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "07e890b5-abf0-47a6-892d-2636afc0d92f", + "x-ms-client-request-id": "38650a58fccf000522bb1d8c87e9e0d1", + "x-ms-correlation-request-id": "a272cec9-0fae-4e29-83cd-d610ad43efb4", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "af1aab08-7e36-4abd-8dbd-510e4dcfb11e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064421Z:a272cec9-0fae-4e29-83cd-d610ad43efb4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eb5137181d71c8ed4bacea2eba57c629", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c573b2ba-487a-49aa-bdb2-eb271a4fcba6", + "x-ms-client-request-id": "eb5137181d71c8ed4bacea2eba57c629", + "x-ms-correlation-request-id": "0979bef6-66eb-4163-8fe5-7bbe20b039d3", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "6d9a7e0b-1a45-4fa0-9e79-6dc6c0eb0222", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064422Z:0979bef6-66eb-4163-8fe5-7bbe20b039d3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3c2497bbf7064a294be10a3cac5d9756", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "eee3d03b-3bfa-4d79-832f-c35580d3c543", + "x-ms-client-request-id": "3c2497bbf7064a294be10a3cac5d9756", + "x-ms-correlation-request-id": "83a8fd2a-0ab8-4650-938d-b0426f51085f", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "5c3f2996-d5d9-4a43-a845-629027e9350d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064423Z:83a8fd2a-0ab8-4650-938d-b0426f51085f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6f0704b24dd03a261d9ded2212d745ca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4791c68e-6ea3-40de-b7a1-7e10fe91503d", + "x-ms-client-request-id": "6f0704b24dd03a261d9ded2212d745ca", + "x-ms-correlation-request-id": "6ab3462a-fcab-470a-8619-669ed7cae3f3", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "d6efc838-dcde-46e4-b442-4cee005f4d02", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064425Z:6ab3462a-fcab-470a-8619-669ed7cae3f3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f0d1f4f4a4c420ca0e06a09012b11bed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "40ca2743-a155-47f8-a04b-59b9060353bd", + "x-ms-client-request-id": "f0d1f4f4a4c420ca0e06a09012b11bed", + "x-ms-correlation-request-id": "4e9e6ba4-56cb-4562-83e5-231d4fe0e909", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "a5628170-331c-452a-8cd2-1eedfce9255a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064426Z:4e9e6ba4-56cb-4562-83e5-231d4fe0e909" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b67c9314564f6e5870e91f690a063774", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "57727a09-8265-41f8-ab00-6df9e70df34d", + "x-ms-client-request-id": "b67c9314564f6e5870e91f690a063774", + "x-ms-correlation-request-id": "667b99da-e56e-433c-8d56-e93953669d43", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "5b0df5e6-d275-48a2-a084-0333315285dc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064427Z:667b99da-e56e-433c-8d56-e93953669d43" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b8473f9ba78c0e9139e661caad96286b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9887080c-8aa3-47f2-876c-c00341dc6539", + "x-ms-client-request-id": "b8473f9ba78c0e9139e661caad96286b", + "x-ms-correlation-request-id": "16400dab-b084-4622-a6c1-d69bf532b492", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "48f234e9-cd8f-4ac4-a566-d9770930ea62", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064428Z:16400dab-b084-4622-a6c1-d69bf532b492" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7e0eff818f5a9d7b9b637fdb84601507", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "367eec1e-e055-4261-a0f5-87175d4f89fb", + "x-ms-client-request-id": "7e0eff818f5a9d7b9b637fdb84601507", + "x-ms-correlation-request-id": "345b0fbc-776d-4f96-94e5-681c4999d48d", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "02d02b72-25dc-4680-b68f-4c7340ed8d0f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064430Z:345b0fbc-776d-4f96-94e5-681c4999d48d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d2f42bce636a6d61026e7c68f58ec1da", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "be219a68-c99e-4476-a1f8-455795f50a2a", + "x-ms-client-request-id": "d2f42bce636a6d61026e7c68f58ec1da", + "x-ms-correlation-request-id": "3c3d4655-fa1d-42c6-8620-ceb9d8de6e32", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "cf7c5064-864c-44f7-a43d-d177a7e0b5c5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064431Z:3c3d4655-fa1d-42c6-8620-ceb9d8de6e32" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0be7b3c0b8f80c19c4a91c2928b589d8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e2e447ff-cc00-4fc6-8368-4e7ddb646a6c", + "x-ms-client-request-id": "0be7b3c0b8f80c19c4a91c2928b589d8", + "x-ms-correlation-request-id": "2aa49ed9-59e9-4baa-9767-1571623e1064", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "15900d1d-fa61-4810-997d-73dac4a332e4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064432Z:2aa49ed9-59e9-4baa-9767-1571623e1064" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "81fb59d055a11e019da07cec1212a80d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "f29c2656-8453-455a-b280-f411827a7589", + "x-ms-client-request-id": "81fb59d055a11e019da07cec1212a80d", + "x-ms-correlation-request-id": "c05ffe1e-efc3-4195-8f69-3e5f6e51b2fa", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "26e4528d-154d-4fde-b1f3-6464632c342c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064434Z:c05ffe1e-efc3-4195-8f69-3e5f6e51b2fa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d01aa4a10a79160f12e70ec14638444c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "843baf42-f589-44ae-a663-7db33a69661b", + "x-ms-client-request-id": "d01aa4a10a79160f12e70ec14638444c", + "x-ms-correlation-request-id": "e24c8d88-eec0-48a0-9d8b-8e3ef178ca8d", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "dd39eb06-ca14-40b2-9c6d-95197a6509e6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064435Z:e24c8d88-eec0-48a0-9d8b-8e3ef178ca8d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9c97a3e540936b38b2c96d573c2dfab1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "7b0e8876-32b4-49e8-8a85-5cf8e45149f6", + "x-ms-client-request-id": "9c97a3e540936b38b2c96d573c2dfab1", + "x-ms-correlation-request-id": "eb4c5185-5d3f-41ce-8d7b-3e96dfef84ae", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "0960979e-69c7-4b0c-8040-ab2588d310d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064436Z:eb4c5185-5d3f-41ce-8d7b-3e96dfef84ae" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "83870f00b89bc65f4ae56eb94740d765", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "bf9761a0-bfd7-4b7b-84c5-e9658eff292d", + "x-ms-client-request-id": "83870f00b89bc65f4ae56eb94740d765", + "x-ms-correlation-request-id": "28261448-98f9-4f16-9cce-aa747f2f20d1", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "be1c286b-2e41-44f4-bc2a-ee147a8a75f2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064437Z:28261448-98f9-4f16-9cce-aa747f2f20d1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6e072f5b0b7a617a6baf1eaf9cb7d9e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "89b00790-85f1-41cc-a27a-65a62fabef46", + "x-ms-client-request-id": "6e072f5b0b7a617a6baf1eaf9cb7d9e4", + "x-ms-correlation-request-id": "b98c916d-9f3d-4b7b-9fc0-e0bbc8380277", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "542d40bb-32b3-47ca-9b86-9a5fd059af8d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064439Z:b98c916d-9f3d-4b7b-9fc0-e0bbc8380277" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "37c05cedc1b02cb144d152aed17f2471", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7bf1c648-cd03-4852-b5ca-326c11fb6599", + "x-ms-client-request-id": "37c05cedc1b02cb144d152aed17f2471", + "x-ms-correlation-request-id": "14c1d38e-0760-4123-8707-53056b64f4e0", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "3c421e89-c8b3-49b5-99f9-eaa85b465f62", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064440Z:14c1d38e-0760-4123-8707-53056b64f4e0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0cfb08f28c26f536952617eb99b02a92", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "782dd98c-450f-4dc0-847b-6ce8b67eaad6", + "x-ms-client-request-id": "0cfb08f28c26f536952617eb99b02a92", + "x-ms-correlation-request-id": "28a1a508-db90-47c8-8aac-586268bce517", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "0ba32862-7caf-427f-adf9-401fc2b3673f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064441Z:28a1a508-db90-47c8-8aac-586268bce517" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eacc890b9f809ab57eda29a9b9cb8fec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b939cff7-c8ff-45b7-8c68-68375b669d49", + "x-ms-client-request-id": "eacc890b9f809ab57eda29a9b9cb8fec", + "x-ms-correlation-request-id": "9fe313c4-e936-432f-950a-5d14558cc8cb", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "d144e86c-c73d-4797-8657-0ef89e0a543e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064442Z:9fe313c4-e936-432f-950a-5d14558cc8cb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "93bdad8bcdbc61be25caa28aaac59294", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0f7588ae-1865-472e-b2bc-fb70af3e97b0", + "x-ms-client-request-id": "93bdad8bcdbc61be25caa28aaac59294", + "x-ms-correlation-request-id": "9c4d918d-b79a-46e9-a99a-8d8d0e937c40", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "37dd916f-0c01-4de7-b42e-e9242c08e1ce", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064444Z:9c4d918d-b79a-46e9-a99a-8d8d0e937c40" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "47a2bfa639b352f153618e4b628c3bc9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "970eecdf-0c1a-4d75-be10-afbec637aeb3", + "x-ms-client-request-id": "47a2bfa639b352f153618e4b628c3bc9", + "x-ms-correlation-request-id": "708fe1b6-4dd9-49a8-b533-fecd09840b33", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "5d86187f-5228-4325-a5b3-34dfc6d9e0b1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064445Z:708fe1b6-4dd9-49a8-b533-fecd09840b33" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ec602a9696f33ed6cb6ac4b5fd2aefb8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a218fbcd-a1cc-49d7-ac13-5a9c5b2dc468", + "x-ms-client-request-id": "ec602a9696f33ed6cb6ac4b5fd2aefb8", + "x-ms-correlation-request-id": "1dec60e9-2b70-4fca-ab9d-19c9cf5dfa55", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "8b768f91-82cd-4c8c-a064-7ab7710115ba", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064446Z:1dec60e9-2b70-4fca-ab9d-19c9cf5dfa55" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f902954748295139bb6a405a3e72ff98", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8c4b7886-668c-4e33-aeea-4a45317d8d8e", + "x-ms-client-request-id": "f902954748295139bb6a405a3e72ff98", + "x-ms-correlation-request-id": "6714b2ff-38c3-4807-9e59-ccaabe4b49e4", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "b5b17493-66c0-44db-a25a-fb600688905a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064448Z:6714b2ff-38c3-4807-9e59-ccaabe4b49e4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7ff3d98fa66510a1e9647c48743b5528", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a2acf850-8fa4-4df9-9eec-1f36acb0e24a", + "x-ms-client-request-id": "7ff3d98fa66510a1e9647c48743b5528", + "x-ms-correlation-request-id": "bb7b664a-d5f5-418c-8328-4ef36f582701", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "e27c6291-b0a8-4145-87cb-839968082c18", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064449Z:bb7b664a-d5f5-418c-8328-4ef36f582701" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cc03d571428a4ea0f10e3088557bff58", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:44: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": "449c1736-f5b5-4691-bbb9-f37f7eacc7de", + "x-ms-client-request-id": "cc03d571428a4ea0f10e3088557bff58", + "x-ms-correlation-request-id": "c368a9f8-9a5a-4450-93b5-80e846decaaf", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "3e731c8d-8275-4545-999d-2cbea16f6cb2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064450Z:c368a9f8-9a5a-4450-93b5-80e846decaaf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "23262c6a7037a152f4f20fc4cbf0dd7f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3a954760-2cbb-4f62-84cc-4098f49c53a9", + "x-ms-client-request-id": "23262c6a7037a152f4f20fc4cbf0dd7f", + "x-ms-correlation-request-id": "74f7ae7d-c330-415a-a4e7-229cedaf6a4a", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "5890714c-262a-47cd-ab9f-d1df46b62942", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064451Z:74f7ae7d-c330-415a-a4e7-229cedaf6a4a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "69e91714336e4c0e38a58e577518bb6d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2ef8f9d7-2051-4efc-9374-79ccf9dfc266", + "x-ms-client-request-id": "69e91714336e4c0e38a58e577518bb6d", + "x-ms-correlation-request-id": "e5e63bf6-76c7-40e1-815f-5f97e4d0ad03", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "ce1bd1cd-98fc-4d5d-9786-3abeeadd905a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064453Z:e5e63bf6-76c7-40e1-815f-5f97e4d0ad03" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "48dd2365311500f18362d79832db8200", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ec6c8d88-042b-4b63-b513-69351aa8d6d2", + "x-ms-client-request-id": "48dd2365311500f18362d79832db8200", + "x-ms-correlation-request-id": "2d0f9c64-5fa4-4f52-9bda-4e879ff2d8aa", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "d669df77-80ea-4b4c-b860-be9497423cb9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064454Z:2d0f9c64-5fa4-4f52-9bda-4e879ff2d8aa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3d74b030969237e91dd9eb91e2fb2bdc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "5e9753bc-4df7-483a-a580-0e83ac43585e", + "x-ms-client-request-id": "3d74b030969237e91dd9eb91e2fb2bdc", + "x-ms-correlation-request-id": "9e153e65-0e16-4233-bccb-0110e4b5b3a2", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "9d96a248-93b7-439e-b558-acb1c95771f3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064455Z:9e153e65-0e16-4233-bccb-0110e4b5b3a2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a75ea1369512e26a26e8e50c5b761a5d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4a64112c-1ca5-48ec-b100-ad9597a1ae63", + "x-ms-client-request-id": "a75ea1369512e26a26e8e50c5b761a5d", + "x-ms-correlation-request-id": "8807bb31-3482-4555-9980-62dc51632574", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "c347e307-b25d-4ae1-8c6b-673f08885af3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064457Z:8807bb31-3482-4555-9980-62dc51632574" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c5268d227da3cfdb3aa52b3c465f1e87", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "2deb4b0d-2c8d-4138-9beb-518c6db02593", + "x-ms-client-request-id": "c5268d227da3cfdb3aa52b3c465f1e87", + "x-ms-correlation-request-id": "87086bb3-16d2-4f91-a6bf-37c2a8f754a2", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "6fde8e9f-a7cf-454d-a079-db8148906be4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064458Z:87086bb3-16d2-4f91-a6bf-37c2a8f754a2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9061fb37da7c9bee469217a9b0dddca6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ddff37d6-db5d-41e3-b060-a5e8357e635b", + "x-ms-client-request-id": "9061fb37da7c9bee469217a9b0dddca6", + "x-ms-correlation-request-id": "fb24d2fe-3124-4376-a8fc-27fcd025f3ed", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "d1d84da6-a1d5-481b-a64b-fdc68e0c89ca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064459Z:fb24d2fe-3124-4376-a8fc-27fcd025f3ed" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "556e8dbf66d5b938c68f6d6c692e9bc7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "9acfa78b-03a6-4982-bd02-806f0995eeef", + "x-ms-client-request-id": "556e8dbf66d5b938c68f6d6c692e9bc7", + "x-ms-correlation-request-id": "5ef3e0dd-4c2e-4139-ab03-06968016eaa8", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "652aa5d7-3d0f-4109-81ee-27627a5a13aa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064500Z:5ef3e0dd-4c2e-4139-ab03-06968016eaa8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "60d55ec9891548e09e8a7f1166311f5d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7c5a6459-8d45-4e78-868b-380caaed386d", + "x-ms-client-request-id": "60d55ec9891548e09e8a7f1166311f5d", + "x-ms-correlation-request-id": "8d160a8b-7ce0-4c1d-abd6-a5fe665c30c4", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "9aa6fdf5-4dc7-4849-b8ef-3145bb11dc95", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064502Z:8d160a8b-7ce0-4c1d-abd6-a5fe665c30c4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b87c84c9c9f0d1b2c2a7caed6c813118", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b792ac4a-6780-461a-96c9-7e315989937f", + "x-ms-client-request-id": "b87c84c9c9f0d1b2c2a7caed6c813118", + "x-ms-correlation-request-id": "d2317c5c-ffd7-4886-95d2-07a5ff2c0953", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "2752230c-0530-4fff-9e4a-5de175b92670", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064503Z:d2317c5c-ffd7-4886-95d2-07a5ff2c0953" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "52df4ff67b073591ad26b64ae6275394", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a19c8437-62bd-45d5-9542-a7a250374301", + "x-ms-client-request-id": "52df4ff67b073591ad26b64ae6275394", + "x-ms-correlation-request-id": "0b42eccd-7ea9-41c8-a1dd-0dc0b6024c0c", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "c292a353-0646-4ce4-9667-93dab582792c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064504Z:0b42eccd-7ea9-41c8-a1dd-0dc0b6024c0c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e5a31070e2b100d6ab049e6ebff2db1d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5a3116ca-87de-4f0b-a47c-30ce77a979cf", + "x-ms-client-request-id": "e5a31070e2b100d6ab049e6ebff2db1d", + "x-ms-correlation-request-id": "c78faab2-f4d4-4e29-a406-60953255b69f", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "5796c2c5-737b-42e3-85b1-b952283edb8c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064506Z:c78faab2-f4d4-4e29-a406-60953255b69f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "161a6758cd524d55f3470bca1267ea9a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "6ecd0313-5483-41db-bb88-ef2661a57bb8", + "x-ms-client-request-id": "161a6758cd524d55f3470bca1267ea9a", + "x-ms-correlation-request-id": "e2974968-7168-4a73-9fa8-36e922a8f67a", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "de301221-531b-4875-af93-788b8d11ea6a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064507Z:e2974968-7168-4a73-9fa8-36e922a8f67a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5c7c35544cde146679dfa603dd2375ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "fcca33b6-6140-4e19-8e37-157273683886", + "x-ms-client-request-id": "5c7c35544cde146679dfa603dd2375ba", + "x-ms-correlation-request-id": "1fed051b-697f-4d36-98d1-6b486cea43f7", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "d9a03715-e9ca-42d0-9459-cfa47b74cd38", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064508Z:1fed051b-697f-4d36-98d1-6b486cea43f7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7ff2984a3d0da342bb55f269d70bee44", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1b5dd2b0-c399-4b07-ad6b-2cad4e23133c", + "x-ms-client-request-id": "7ff2984a3d0da342bb55f269d70bee44", + "x-ms-correlation-request-id": "d3c0290c-4dcd-4c1d-8383-0dc4751300cc", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "2a4e80a8-4778-4aba-838b-742024a59532", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064510Z:d3c0290c-4dcd-4c1d-8383-0dc4751300cc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8919031a7f760b3f00069c7226516fd0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "a173eb82-dd7f-49d8-bfe5-27eceb9fd86d", + "x-ms-client-request-id": "8919031a7f760b3f00069c7226516fd0", + "x-ms-correlation-request-id": "be300ed0-bbc9-4932-ad3a-bf9b1ee87429", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "3c14dbc6-e073-41e9-b847-17bab8f59cd2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064511Z:be300ed0-bbc9-4932-ad3a-bf9b1ee87429" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7a7f50d16a75178df3d9a0885afd3c6d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a40bdb9a-9017-454e-a97b-fe644d477e50", + "x-ms-client-request-id": "7a7f50d16a75178df3d9a0885afd3c6d", + "x-ms-correlation-request-id": "e38eaec2-a31a-4aa2-8bd2-781d8e3dc32c", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "8484b7c8-a2a5-46ad-8fde-e3fef6ba89d3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064513Z:e38eaec2-a31a-4aa2-8bd2-781d8e3dc32c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dae961f1ec09cb4459e67f06a0cf7c69", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ceb5df55-f62d-41a5-a9c3-2179633cb169", + "x-ms-client-request-id": "dae961f1ec09cb4459e67f06a0cf7c69", + "x-ms-correlation-request-id": "6b36a23b-7921-49e6-b5c1-f9f4b43a4fbd", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "11601030-12a3-4466-9919-a85c03856df2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064514Z:6b36a23b-7921-49e6-b5c1-f9f4b43a4fbd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "879821e5738cafcf7602969cdeb7b103", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1cf657cd-f523-4aa1-b10a-0b059b916a52", + "x-ms-client-request-id": "879821e5738cafcf7602969cdeb7b103", + "x-ms-correlation-request-id": "9d941e1b-66f8-4819-87df-2128cdae3c7c", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "4f1fe5cc-9f74-43e3-aba4-b5cacea9146b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064515Z:9d941e1b-66f8-4819-87df-2128cdae3c7c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c5812fc99568e5c70bb4218eea867624", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "3bbdba63-a456-46d2-b13e-1e072a34c6c3", + "x-ms-client-request-id": "c5812fc99568e5c70bb4218eea867624", + "x-ms-correlation-request-id": "ba6376e0-fbd5-4ae2-a970-d35f5e48b2c6", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "b3c64546-1208-4bb9-8a35-06342ce60b88", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064516Z:ba6376e0-fbd5-4ae2-a970-d35f5e48b2c6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "38a3375cb5647de19239640656a8eca1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "caa99d4b-dcd5-4d9f-b3a2-24053150727b", + "x-ms-client-request-id": "38a3375cb5647de19239640656a8eca1", + "x-ms-correlation-request-id": "fb8978e6-a6c1-4857-9a21-04385d135bb6", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "e2382290-bf45-4604-bb5a-5fb0daca615c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064518Z:fb8978e6-a6c1-4857-9a21-04385d135bb6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "713d7c34b74d4f015ab27bd75240c4ef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d0f1786c-3d32-4047-afe7-7f8166e005e2", + "x-ms-client-request-id": "713d7c34b74d4f015ab27bd75240c4ef", + "x-ms-correlation-request-id": "94f3239e-766a-4902-98eb-8193d6447215", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "e8160c48-f16d-4a3d-b225-af155ce334a3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064519Z:94f3239e-766a-4902-98eb-8193d6447215" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a73f718c7813149e4d04322e31c18f63", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "27d91e83-e8c1-434b-b0b8-adb6a817b2f2", + "x-ms-client-request-id": "a73f718c7813149e4d04322e31c18f63", + "x-ms-correlation-request-id": "6cf5d558-cf7e-4b3a-852a-f3840be5619b", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "94565abc-c93d-481d-9b8b-d25c45a97750", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064521Z:6cf5d558-cf7e-4b3a-852a-f3840be5619b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6e5a7fc80548a5d63653deb1390a2a52", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f61d5afb-5bca-47a2-8a15-e1d494422afc", + "x-ms-client-request-id": "6e5a7fc80548a5d63653deb1390a2a52", + "x-ms-correlation-request-id": "e5e1f9f4-039c-4dbb-8809-ca943d76a40b", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "3d1fb45d-2484-4e47-bb3d-748be88aad04", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064522Z:e5e1f9f4-039c-4dbb-8809-ca943d76a40b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e47a74754568bc8edd29234884d21e99", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4847198f-f6a1-4ac6-bbf1-758a7f818b5c", + "x-ms-client-request-id": "e47a74754568bc8edd29234884d21e99", + "x-ms-correlation-request-id": "85d8ec1a-a810-48aa-b2ca-8008ca9ca9d0", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "e19d86a4-1d11-4c3f-91fa-9a9cc8bf5a17", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064523Z:85d8ec1a-a810-48aa-b2ca-8008ca9ca9d0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d30f182355e686a69b9a70c09aecda43", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "e7c20244-0385-47f3-aec5-694a5fe7764b", + "x-ms-client-request-id": "d30f182355e686a69b9a70c09aecda43", + "x-ms-correlation-request-id": "f55887fe-1c09-4155-9b33-6654439d62d3", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "30f35757-befa-41b1-aaf1-7bbd0f396b67", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064525Z:f55887fe-1c09-4155-9b33-6654439d62d3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bdb9e0daaa4682faf19d901fe18e2163", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "24ccdc17-7cf8-420d-a523-f8fbf7f9567d", + "x-ms-client-request-id": "bdb9e0daaa4682faf19d901fe18e2163", + "x-ms-correlation-request-id": "7d20e22e-ed96-4f86-a351-23ccbea168d4", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "68835efe-95b9-4336-ae7b-e97136b41cb8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064526Z:7d20e22e-ed96-4f86-a351-23ccbea168d4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "208e443556fa1f6bcdf349ced4cd21f1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "52ed6006-fa74-4331-b4b2-9d3aa1be9552", + "x-ms-client-request-id": "208e443556fa1f6bcdf349ced4cd21f1", + "x-ms-correlation-request-id": "5a5c8322-83b0-4adf-8ea7-6791469e01db", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "8eebd508-24bc-47ae-a55d-914d79084a54", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064528Z:5a5c8322-83b0-4adf-8ea7-6791469e01db" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a36de04f601978521d8ce248c487a40c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "b50378e0-ad31-4947-bdad-9468bab166a3", + "x-ms-client-request-id": "a36de04f601978521d8ce248c487a40c", + "x-ms-correlation-request-id": "a975e690-e0f4-45ae-95bf-8524cfdf3324", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "9646a6f4-4497-449f-97df-7036e3ad8651", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064529Z:a975e690-e0f4-45ae-95bf-8524cfdf3324" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "558b0d79b95e84487499ef53612cae23", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "892d03eb-8f3b-42b0-beef-fdbacf3bc50f", + "x-ms-client-request-id": "558b0d79b95e84487499ef53612cae23", + "x-ms-correlation-request-id": "ec2fbefb-c71f-48d5-a7cd-5320294cf51e", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "3b002065-fcac-408d-b9db-a4423dc9f9bd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064531Z:ec2fbefb-c71f-48d5-a7cd-5320294cf51e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "01d09f7c7d20d44af215026e73235a45", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d97864ae-3100-473b-b170-f0d542da7b09", + "x-ms-client-request-id": "01d09f7c7d20d44af215026e73235a45", + "x-ms-correlation-request-id": "3707fa38-b524-41dd-80bc-2892917bd00c", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "6014dc5f-598a-43a2-829d-4b417c4b32f5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064532Z:3707fa38-b524-41dd-80bc-2892917bd00c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c6543c4ecc41959297e82e7f70ff17f1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "66c4f62b-65c6-4f90-b811-5479a74fc18a", + "x-ms-client-request-id": "c6543c4ecc41959297e82e7f70ff17f1", + "x-ms-correlation-request-id": "7bda6bec-d7b3-49db-9817-0bcd430d809f", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "f50c8fec-3d28-417c-b396-dac8659d930d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064533Z:7bda6bec-d7b3-49db-9817-0bcd430d809f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "25ccbfdda3b7fbebc3b76349b7d91151", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "04670ef3-9769-4361-b88e-e929249b3527", + "x-ms-client-request-id": "25ccbfdda3b7fbebc3b76349b7d91151", + "x-ms-correlation-request-id": "ac6401aa-88db-4d2e-8840-d448b107a4df", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "c904506f-da98-48e9-9e64-9c3dda43102c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064536Z:ac6401aa-88db-4d2e-8840-d448b107a4df" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2404a93fe7d8afe10d3b69374eca63f3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f1d458d9-8646-45b8-ada3-87a3f4e8fff8", + "x-ms-client-request-id": "2404a93fe7d8afe10d3b69374eca63f3", + "x-ms-correlation-request-id": "813cb843-5537-4eb0-81f4-6938c261821c", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "218bd391-0ca4-4998-b0c2-4e1309b45eb2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064537Z:813cb843-5537-4eb0-81f4-6938c261821c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b49011fd3556ab8e5058038a6949debe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a8476fed-49cf-4e34-8388-6c57524dbd33", + "x-ms-client-request-id": "b49011fd3556ab8e5058038a6949debe", + "x-ms-correlation-request-id": "e53544f4-45ca-4fa0-b4b8-ce52057c1889", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "caa3daac-8e63-4d8d-ac69-e9d3882ff5ee", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064538Z:e53544f4-45ca-4fa0-b4b8-ce52057c1889" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c73fddd7f2faf619dd1c177b39b3adf8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "77cf67d9-abfc-46d8-ac08-d462fc214a5c", + "x-ms-client-request-id": "c73fddd7f2faf619dd1c177b39b3adf8", + "x-ms-correlation-request-id": "2654263f-c58a-4607-849a-1ce3b135e26d", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "7ed47310-e6ef-4f7f-bf8d-47e07e126110", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064540Z:2654263f-c58a-4607-849a-1ce3b135e26d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a54b70545d480afa1b58d47fe45746c3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "33e22f44-72a0-4975-b6c5-55d0e999ad6e", + "x-ms-client-request-id": "a54b70545d480afa1b58d47fe45746c3", + "x-ms-correlation-request-id": "05c1e08e-d62b-4c99-bfd6-51c48188d51e", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "5c2d4648-9c0b-4e3d-a1f3-ff82f962639f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064541Z:05c1e08e-d62b-4c99-bfd6-51c48188d51e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7160ab5d9c8a0bf8f89ad63a1d12729c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "bf1d76d4-e570-4575-aabd-b0ef9c01f879", + "x-ms-client-request-id": "7160ab5d9c8a0bf8f89ad63a1d12729c", + "x-ms-correlation-request-id": "3276f433-43c6-4724-8de2-592f03e6cdbd", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "5f7bcca4-f839-49d8-b085-f11167d6f2c6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064542Z:3276f433-43c6-4724-8de2-592f03e6cdbd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f8360aab38fd7a75e235aba21e9a1285", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4adf1ea1-b177-47b3-8138-b28f4d1d58c9", + "x-ms-client-request-id": "f8360aab38fd7a75e235aba21e9a1285", + "x-ms-correlation-request-id": "0e60b991-ae04-44f5-bacc-4349d697e81d", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "b19fe49b-8272-4fab-86e9-49f64c1a9238", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064545Z:0e60b991-ae04-44f5-bacc-4349d697e81d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8e1e54d63c53b86d773facae86c0ed08", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a36e70de-a3e3-43e7-843a-861aca241d3f", + "x-ms-client-request-id": "8e1e54d63c53b86d773facae86c0ed08", + "x-ms-correlation-request-id": "65c888d0-7c38-4c12-b5f2-24bdd733820f", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "816ff692-c034-4ef9-9843-875161513bc3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064546Z:65c888d0-7c38-4c12-b5f2-24bdd733820f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d9d337e64d2124c535e68e55f055ed5e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "a499a7b5-b354-4eef-8777-d5603f782574", + "x-ms-client-request-id": "d9d337e64d2124c535e68e55f055ed5e", + "x-ms-correlation-request-id": "9bd64eda-241b-4c48-bae9-45a11ff01338", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "be277ff5-470c-4b50-b1b1-e8ec9b67da0e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064549Z:9bd64eda-241b-4c48-bae9-45a11ff01338" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c9635088e3f46f499c7e80be8bc7f321", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b313da07-b41c-4b98-913f-df2980050f68", + "x-ms-client-request-id": "c9635088e3f46f499c7e80be8bc7f321", + "x-ms-correlation-request-id": "3be392d2-6b15-44e5-b881-4fe4ff78bdd5", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "926215bf-a538-47b6-a837-74ed78616c1a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064550Z:3be392d2-6b15-44e5-b881-4fe4ff78bdd5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e7bba34838c688648efa586dad18c722", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "450af1b5-67e5-4f74-bea4-ec6581c67db4", + "x-ms-client-request-id": "e7bba34838c688648efa586dad18c722", + "x-ms-correlation-request-id": "ffeb3725-5a96-4e5b-afb0-59826df55511", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "3915ed5f-ae49-40c5-90e0-5642bfe2ce03", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064551Z:ffeb3725-5a96-4e5b-afb0-59826df55511" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "35254e52235c0214ed643ca3cc07986e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "197b344f-e3c9-4639-8d1f-17a8a31ca23a", + "x-ms-client-request-id": "35254e52235c0214ed643ca3cc07986e", + "x-ms-correlation-request-id": "e2fd1882-0c05-47b4-8c20-6e8465dee85a", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "c5b037b6-09c1-4f92-adc2-79fb7bbb4f71", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064553Z:e2fd1882-0c05-47b4-8c20-6e8465dee85a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4c0c6df206994f98ecdb3af98bdbc284", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ce79d933-8061-46b1-9f0b-9012d0ead228", + "x-ms-client-request-id": "4c0c6df206994f98ecdb3af98bdbc284", + "x-ms-correlation-request-id": "4499cf8b-ba33-4224-ab05-0e77a676b28e", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "464cfd1d-6580-4dfd-9004-45cf6517cc26", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064555Z:4499cf8b-ba33-4224-ab05-0e77a676b28e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3d6b5eb6bda224c48fb9f962fcc1bb86", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0b414117-0bd9-4ac5-aaa2-0a5440e7c58d", + "x-ms-client-request-id": "3d6b5eb6bda224c48fb9f962fcc1bb86", + "x-ms-correlation-request-id": "d7bbc028-1e26-48f4-bd96-447409d2e4a4", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "217d9210-7a45-426e-9abf-e16a305c91ca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064556Z:d7bbc028-1e26-48f4-bd96-447409d2e4a4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "407ae9627b0b4c88b6d54981e91a7712", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "85e2695f-46e8-439e-8f90-36cb58c5ad76", + "x-ms-client-request-id": "407ae9627b0b4c88b6d54981e91a7712", + "x-ms-correlation-request-id": "9036548a-8bd8-4add-8a6c-00ae65ab2668", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "f574b83b-7508-4abc-96d4-36a980bdf863", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064557Z:9036548a-8bd8-4add-8a6c-00ae65ab2668" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6eecb8a25b9c34cca8e8bde00d35532b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b5a3b3e3-b61d-4996-9e62-c4f6fa9524d6", + "x-ms-client-request-id": "6eecb8a25b9c34cca8e8bde00d35532b", + "x-ms-correlation-request-id": "f26504ae-cc44-4b44-8b14-ab7c7326403b", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "5d9e9663-ed09-4ea0-8aec-dce24a48cee3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064558Z:f26504ae-cc44-4b44-8b14-ab7c7326403b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a197b42081613b78d61f86cc74433b74", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3fc78f33-0998-4069-a847-3e978407ee8b", + "x-ms-client-request-id": "a197b42081613b78d61f86cc74433b74", + "x-ms-correlation-request-id": "a95145f7-b09b-466d-905c-94901296a48c", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "03c0daf4-14b8-45a6-8c55-225b5bda47d4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064600Z:a95145f7-b09b-466d-905c-94901296a48c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "44c0e7424dd406ea1d469723bda73f80", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8b264e64-806e-4c93-bd79-82e8c57a05f1", + "x-ms-client-request-id": "44c0e7424dd406ea1d469723bda73f80", + "x-ms-correlation-request-id": "b4007864-c0b3-43b5-9c03-2974e8d51461", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "9fc72c7f-6062-41bc-8961-8dda48114b75", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064601Z:b4007864-c0b3-43b5-9c03-2974e8d51461" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "34601d81d58320b03fb1977dd4ffbf64", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "468b44a1-5755-4f0b-8a81-6537004de375", + "x-ms-client-request-id": "34601d81d58320b03fb1977dd4ffbf64", + "x-ms-correlation-request-id": "1cbf0de1-e0c2-47d8-85a2-6edcb6656a29", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "cbed02ef-1432-4ba5-8182-e6af9790aaeb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064602Z:1cbf0de1-e0c2-47d8-85a2-6edcb6656a29" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "269d48ad0f75d257ca90841be9557d2e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a1426ba1-d3a2-44a4-939b-8b49be0e86e6", + "x-ms-client-request-id": "269d48ad0f75d257ca90841be9557d2e", + "x-ms-correlation-request-id": "bc58c74b-14e4-455f-88e9-619619380e6a", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "0c2bd4b6-9419-4c4a-9be7-138d9752f10b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064604Z:bc58c74b-14e4-455f-88e9-619619380e6a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "574b06df06e26cf136a00522b56d321e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "229f4830-9e99-413c-857d-3050769bd8fd", + "x-ms-client-request-id": "574b06df06e26cf136a00522b56d321e", + "x-ms-correlation-request-id": "571777bf-3781-4dc4-9afe-197767a323fb", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "3087920f-bec4-4db0-be9e-024d851e7e8c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064605Z:571777bf-3781-4dc4-9afe-197767a323fb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "747633861909720bc68e6af2519536e9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f406faf9-8097-44fc-a3ee-1b01003a3566", + "x-ms-client-request-id": "747633861909720bc68e6af2519536e9", + "x-ms-correlation-request-id": "714fc520-6dcc-4ae5-8a22-589249c3ab81", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "d80b8c7f-3a2f-4d75-a232-02f1c9d075bf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064606Z:714fc520-6dcc-4ae5-8a22-589249c3ab81" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ce9d693368b4a6815731efd50a341c5c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6767045d-e8f1-4d64-bbc2-e009dc9fd90e", + "x-ms-client-request-id": "ce9d693368b4a6815731efd50a341c5c", + "x-ms-correlation-request-id": "d9b7758f-4e64-4ce4-a9d5-a5b73681b3b0", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "a1b22c10-45f7-40b1-b331-c43d34baae66", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064608Z:d9b7758f-4e64-4ce4-a9d5-a5b73681b3b0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b694655e08dfc624fad890549bfe1ba0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9e5b5a98-977d-4282-a967-4d9794661cae", + "x-ms-client-request-id": "b694655e08dfc624fad890549bfe1ba0", + "x-ms-correlation-request-id": "c02ae09e-f6f2-4b00-b6f4-21806ebfad06", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "287f8ebe-8c2b-4fd3-adac-24cf3230f3cb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064609Z:c02ae09e-f6f2-4b00-b6f4-21806ebfad06" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4cee1b6964cf1d69b1cf1dd829356891", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:46: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": "0a98f764-ffd0-4280-b032-35a54448bfd3", + "x-ms-client-request-id": "4cee1b6964cf1d69b1cf1dd829356891", + "x-ms-correlation-request-id": "9d1fbda7-5f08-4aed-8b50-91090b4dc9f0", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "8d29540d-f9c4-465d-a4b5-3dd48310238b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064610Z:9d1fbda7-5f08-4aed-8b50-91090b4dc9f0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eb940d717f012b0a44d7d3dbd82c0a59", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ae13dd78-e78a-4ba5-bf9e-900594e0e30e", + "x-ms-client-request-id": "eb940d717f012b0a44d7d3dbd82c0a59", + "x-ms-correlation-request-id": "672755b9-a6d6-453c-bed0-3e62a1f3eeda", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "b25931f1-e169-407d-bbe0-abfeb24b1c7a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064611Z:672755b9-a6d6-453c-bed0-3e62a1f3eeda" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ee6b4f15d045fa8dfc77040feb4b9dc5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8ac145b7-c496-4c18-9f2d-a87f52981a03", + "x-ms-client-request-id": "ee6b4f15d045fa8dfc77040feb4b9dc5", + "x-ms-correlation-request-id": "f225ee4e-dd15-43ee-9069-d7b89fb4ccf6", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "fdd19c51-0799-4054-95b2-30269a6c47e7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064613Z:f225ee4e-dd15-43ee-9069-d7b89fb4ccf6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8ee3fe702f6aea9f10c307f8908e4584", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "1656bc51-9bbf-4388-856c-8ae3b07baee6", + "x-ms-client-request-id": "8ee3fe702f6aea9f10c307f8908e4584", + "x-ms-correlation-request-id": "a256c777-315b-4da9-9777-e5963e4adc6b", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "bd1b438a-13b0-448b-bd69-d9c060c56585", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064614Z:a256c777-315b-4da9-9777-e5963e4adc6b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d9c3c4c579caa04b809aef897afa40f9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "408b944c-cd40-4953-a84a-c77716297dd9", + "x-ms-client-request-id": "d9c3c4c579caa04b809aef897afa40f9", + "x-ms-correlation-request-id": "b2979c7f-d46a-4cf6-81e1-b5e4db8ae89d", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "1376ddce-c395-4edc-b7c1-4bd5e4066a2b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064615Z:b2979c7f-d46a-4cf6-81e1-b5e4db8ae89d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d96a0e3a7c49e5eeb081dd82c894696d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "bdec107c-2114-4746-ba23-2daafecf83b6", + "x-ms-client-request-id": "d96a0e3a7c49e5eeb081dd82c894696d", + "x-ms-correlation-request-id": "adabc1c9-3346-45cd-92b6-b8b6dae9f856", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "76576081-625d-4b3a-af47-c6cf55394392", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064617Z:adabc1c9-3346-45cd-92b6-b8b6dae9f856" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "264a7f31c388f7fab2420dd040156f16", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "95369be7-cee4-4074-b4a1-a2ee5bc9eb04", + "x-ms-client-request-id": "264a7f31c388f7fab2420dd040156f16", + "x-ms-correlation-request-id": "0337a4ba-27b1-46cd-904a-8b56f3ebd906", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "8f86bb2c-7d23-4105-b260-3cf706f4d627", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064618Z:0337a4ba-27b1-46cd-904a-8b56f3ebd906" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "82be0e836b23483bd5dd29489bc9d8eb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e44423fa-eeaa-4e7e-92df-2ae340097ffc", + "x-ms-client-request-id": "82be0e836b23483bd5dd29489bc9d8eb", + "x-ms-correlation-request-id": "79809820-f46b-41fe-abce-6b738c92d8d7", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "bf5cf1fe-36fa-43bf-aa48-31deff9b3e33", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064619Z:79809820-f46b-41fe-abce-6b738c92d8d7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fb57813019b07670137326066e1ea59a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a89ce39d-349c-43fd-8d9f-c1cffe0a7eac", + "x-ms-client-request-id": "fb57813019b07670137326066e1ea59a", + "x-ms-correlation-request-id": "a7b4e685-4129-4bd3-b7f1-dca88a5a593e", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "8a92c10f-a302-41c0-ae4c-b8245d1d5644", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064620Z:a7b4e685-4129-4bd3-b7f1-dca88a5a593e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "baffc712e7d6c649440151ab99b25be9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3935172f-8331-4a3b-b44d-34acba94a596", + "x-ms-client-request-id": "baffc712e7d6c649440151ab99b25be9", + "x-ms-correlation-request-id": "9698c2a6-41b0-4719-8436-36affeca2336", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "f792f8ef-0d46-4dac-b4c1-577b6b8851da", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064622Z:9698c2a6-41b0-4719-8436-36affeca2336" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "be9f216a74bd6a669d476fb04434d9b6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "39ce5940-ff28-4ef2-9045-aa7b4835ffcf", + "x-ms-client-request-id": "be9f216a74bd6a669d476fb04434d9b6", + "x-ms-correlation-request-id": "bc10a11e-6f6a-4fd0-8f14-991e379fd44b", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "e66c8a1b-c133-478e-a39a-a686ef5eef5f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064623Z:bc10a11e-6f6a-4fd0-8f14-991e379fd44b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d3368f381eca49153791b6aec8c5dd60", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0159f4b9-ed3e-4a02-a6d3-91a8981c888d", + "x-ms-client-request-id": "d3368f381eca49153791b6aec8c5dd60", + "x-ms-correlation-request-id": "8422665b-fa01-40d5-8b3c-01f598e9db96", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "80444c3e-bd3b-44ad-97d9-ea72b34c4835", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064624Z:8422665b-fa01-40d5-8b3c-01f598e9db96" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4d9c3d17e67f9edc61951c8e77998110", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "dc6c3ba3-2067-4f16-8389-b18003a54409", + "x-ms-client-request-id": "4d9c3d17e67f9edc61951c8e77998110", + "x-ms-correlation-request-id": "6f9352e5-f5bc-4fa7-aaef-284ea89e328d", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "a10af014-3e11-4219-bfe7-2e1bc9eab8e7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064625Z:6f9352e5-f5bc-4fa7-aaef-284ea89e328d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0a729a28887c4c1f0c55872cbdb7a1d8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a316f8ca-e90f-435c-af8b-d01dd48583f8", + "x-ms-client-request-id": "0a729a28887c4c1f0c55872cbdb7a1d8", + "x-ms-correlation-request-id": "eb0a44f0-374a-41a6-a6b5-b9594b716806", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "db7a0c3f-3e57-4a5b-8d54-ef007d224233", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064627Z:eb0a44f0-374a-41a6-a6b5-b9594b716806" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "07980e6a8c975137b29772350186d19d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "a4d505ce-7d3e-4e96-b448-14ffcf33931a", + "x-ms-client-request-id": "07980e6a8c975137b29772350186d19d", + "x-ms-correlation-request-id": "3bd43194-2087-4e70-bc38-8d898e201a88", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "4e7ceaa6-ebb6-472c-a85e-af8ab6cb90c3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064628Z:3bd43194-2087-4e70-bc38-8d898e201a88" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2d86a610d3528fe41e5040295fb0e0aa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4d1855f5-e89e-4e96-b4d6-9bfb1a9615db", + "x-ms-client-request-id": "2d86a610d3528fe41e5040295fb0e0aa", + "x-ms-correlation-request-id": "9811ae96-9d2d-4b6d-9c31-48353d76de1b", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "e33ce6ec-6bd9-4da3-827b-c57ecc128311", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064629Z:9811ae96-9d2d-4b6d-9c31-48353d76de1b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "692444f37a009b78632158e415e94a86", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4a1f0122-b6ff-4c2a-a291-9135ed9de299", + "x-ms-client-request-id": "692444f37a009b78632158e415e94a86", + "x-ms-correlation-request-id": "855d67e7-d89f-4a16-a5dd-2bcc0982cfee", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "811005ff-7c64-4706-9bce-802c0f90cc0e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064631Z:855d67e7-d89f-4a16-a5dd-2bcc0982cfee" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "171be983743197852a09e8474c0df201", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "c7673305-356b-4c50-8078-3a1ae618c8f6", + "x-ms-client-request-id": "171be983743197852a09e8474c0df201", + "x-ms-correlation-request-id": "2f503dfa-5492-440c-bb48-550beaff6e12", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "e627b162-1fa8-4036-b8c4-7c08ca47f576", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064632Z:2f503dfa-5492-440c-bb48-550beaff6e12" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bd41c8b66861969d2deaca317bff7934", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c4e7b384-8629-48f1-a7ab-cff3b248b98a", + "x-ms-client-request-id": "bd41c8b66861969d2deaca317bff7934", + "x-ms-correlation-request-id": "dbf0d537-3e3c-4479-a7a9-81155dcc4b81", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "b5b56913-18e9-4c4a-a076-549bbddfa14e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064633Z:dbf0d537-3e3c-4479-a7a9-81155dcc4b81" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "76a5ba05c9947e78bf8d3ff791304f56", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "02d3cd7f-8104-41ad-b7d1-cd30a175e974", + "x-ms-client-request-id": "76a5ba05c9947e78bf8d3ff791304f56", + "x-ms-correlation-request-id": "efc2cd6b-d4b3-4ea6-9285-8da6ab1907aa", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "c2fc98e2-d346-4242-b021-32774dc8f851", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064634Z:efc2cd6b-d4b3-4ea6-9285-8da6ab1907aa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4d2d562e8da81b244c85e946aa531b2a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "cdcd0501-bf1b-424a-acda-a3865eed4007", + "x-ms-client-request-id": "4d2d562e8da81b244c85e946aa531b2a", + "x-ms-correlation-request-id": "fb04b3e0-8c5d-4b69-9d0b-7df709a753c5", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "1c7b2cf7-ca51-4894-b32f-88cd5c424934", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064636Z:fb04b3e0-8c5d-4b69-9d0b-7df709a753c5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9242b48f7c67ed6c4fc2fed428a504fc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "35ab710c-49a9-4f7c-9409-c0c16a2ba0d5", + "x-ms-client-request-id": "9242b48f7c67ed6c4fc2fed428a504fc", + "x-ms-correlation-request-id": "eb3db10e-28f2-47d6-8985-453acfad2d48", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "a4252cb7-be6d-4c2e-8f7d-bf547aaf162f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064637Z:eb3db10e-28f2-47d6-8985-453acfad2d48" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2402739b2cd1778c958a2a0ee032d46b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5d216c43-5140-456e-9e17-e72cfd9e3ffb", + "x-ms-client-request-id": "2402739b2cd1778c958a2a0ee032d46b", + "x-ms-correlation-request-id": "62edc169-fcd6-4349-ae94-4303b5b71864", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "b7845c25-962e-422f-adee-a29e7e1d79f2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064638Z:62edc169-fcd6-4349-ae94-4303b5b71864" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dd681571bceeb2eee940fee58f4ff2a6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "78024a2c-4b03-4a76-8d7a-b6f1c8797200", + "x-ms-client-request-id": "dd681571bceeb2eee940fee58f4ff2a6", + "x-ms-correlation-request-id": "5b0b46f5-7714-4b5f-a1d4-bc190d4af27a", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "8b6222cd-4d28-49e9-8d4e-2573a17f82d1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064640Z:5b0b46f5-7714-4b5f-a1d4-bc190d4af27a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "36aaec81f750635827cafcdd525d0c1c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "942f1e40-86c4-4c34-8e37-51bf05042a7d", + "x-ms-client-request-id": "36aaec81f750635827cafcdd525d0c1c", + "x-ms-correlation-request-id": "5d9581e0-37d2-40e9-8306-5c5cbf52f4a3", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "d7064c3b-88ba-4814-96a6-2842db20308e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064641Z:5d9581e0-37d2-40e9-8306-5c5cbf52f4a3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "136293ee273ddf0e85503a912ea7e845", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e1108cf3-e38f-47b4-a10e-34ea99f9900e", + "x-ms-client-request-id": "136293ee273ddf0e85503a912ea7e845", + "x-ms-correlation-request-id": "78ee4277-25e3-4117-8523-e715163e5aea", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "a5222f4f-1b7c-4de0-af8c-0f3346204300", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064642Z:78ee4277-25e3-4117-8523-e715163e5aea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f38d83979e887a1abc05b524c011608b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9fa3bc51-87a3-499d-802f-824ca75cfe56", + "x-ms-client-request-id": "f38d83979e887a1abc05b524c011608b", + "x-ms-correlation-request-id": "76e2bf7a-bba7-4ec0-bba3-ffca8b3add19", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "641c0b8f-5fdc-4825-9851-89d3402a20fe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064644Z:76e2bf7a-bba7-4ec0-bba3-ffca8b3add19" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fcf6e133deed5969decbb100bcc73480", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "77bd8b02-2330-4a9f-8132-58171dbb29d2", + "x-ms-client-request-id": "fcf6e133deed5969decbb100bcc73480", + "x-ms-correlation-request-id": "d521c6e0-cec8-4a9e-821f-40fe27a158ee", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "a096f18d-f856-4126-b24b-88e6efc26116", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064645Z:d521c6e0-cec8-4a9e-821f-40fe27a158ee" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ce45b6e119d0509478e8573871e91e73", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "3f0061c8-c450-4391-ba0f-f766d01dc313", + "x-ms-client-request-id": "ce45b6e119d0509478e8573871e91e73", + "x-ms-correlation-request-id": "02cddf8a-990f-4ea2-8c14-7cd04f0ba38c", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "084b4634-6ee3-4784-8670-3450808d5f55", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064646Z:02cddf8a-990f-4ea2-8c14-7cd04f0ba38c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4c5dafefecb0b858193315bcec19bef5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "09abbcc9-25e0-4401-8707-da57b60c05bd", + "x-ms-client-request-id": "4c5dafefecb0b858193315bcec19bef5", + "x-ms-correlation-request-id": "1b9ac4ad-ac87-4d43-b0e7-b50f3ed5d87c", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "9aacb15a-c792-4ace-a633-c51298b07452", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064647Z:1b9ac4ad-ac87-4d43-b0e7-b50f3ed5d87c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "094234d091cb1abb4da683058731e8f4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a5b10b4e-bec3-4698-be59-3757d6b96d0a", + "x-ms-client-request-id": "094234d091cb1abb4da683058731e8f4", + "x-ms-correlation-request-id": "2ac9b8ab-1bfd-47a5-8372-603d65b10e0a", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "c8b4f730-4487-49c5-bdba-8973f3a9411e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064649Z:2ac9b8ab-1bfd-47a5-8372-603d65b10e0a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0d113dace86af4d05e8cb49c03d7635f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "bd8e7ae3-fde6-48e4-9948-b6fd103755f4", + "x-ms-client-request-id": "0d113dace86af4d05e8cb49c03d7635f", + "x-ms-correlation-request-id": "8ea4f517-d3a0-48b0-89cc-5d27ff11f603", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "8cea09d6-1b1f-48d6-998a-6b6e7e1b6dd3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064650Z:8ea4f517-d3a0-48b0-89cc-5d27ff11f603" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3c67622915a75da7f342ff09695331e8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1632a1c7-b066-4627-a7fc-5607c07d30b4", + "x-ms-client-request-id": "3c67622915a75da7f342ff09695331e8", + "x-ms-correlation-request-id": "df0d3c15-fc74-4400-a368-e9828c8347b8", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "cec251cd-2bf3-4130-9945-8c916d2ffda3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064652Z:df0d3c15-fc74-4400-a368-e9828c8347b8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "af10214bb108e78b644eaa3edd1f1776", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "eaa6f279-ba29-41a6-938f-29ccf7f54104", + "x-ms-client-request-id": "af10214bb108e78b644eaa3edd1f1776", + "x-ms-correlation-request-id": "a5f73217-6ed0-42f8-b0ac-0834539cea80", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "baee5c24-e734-4902-88e3-9d618fc80a24", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064653Z:a5f73217-6ed0-42f8-b0ac-0834539cea80" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "25db2343abc9964d95b31927e9c78b0b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "7266dc32-5b81-458c-85a3-a0865ccab2d4", + "x-ms-client-request-id": "25db2343abc9964d95b31927e9c78b0b", + "x-ms-correlation-request-id": "0573d134-ceea-4f4e-8b28-314997048b5c", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "8f562cdf-c35d-442c-88d0-72179aaebd7d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064655Z:0573d134-ceea-4f4e-8b28-314997048b5c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e150cc5bb4c67857d67fd8586b6980d4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c9741be5-6dac-45fc-83d0-c824eb5f8f97", + "x-ms-client-request-id": "e150cc5bb4c67857d67fd8586b6980d4", + "x-ms-correlation-request-id": "c8b2e677-0972-46a4-956b-7c4413fe7ad3", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "bb80570a-e296-442b-a7d1-75e0daf37623", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064656Z:c8b2e677-0972-46a4-956b-7c4413fe7ad3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "45c5892b0b77a01ed47a19549763fe9c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "747fce47-c0b9-46ee-ba27-b8c068daead6", + "x-ms-client-request-id": "45c5892b0b77a01ed47a19549763fe9c", + "x-ms-correlation-request-id": "058adf06-37f7-4c10-828a-abdeabea948a", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "eb3ec3e1-6afb-47f1-a586-6c357bc49b8f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064657Z:058adf06-37f7-4c10-828a-abdeabea948a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "10e39ec335ce8fafcc624e49d2f42a2c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "dd10fa87-36d5-45a8-b07f-cb9462f496f3", + "x-ms-client-request-id": "10e39ec335ce8fafcc624e49d2f42a2c", + "x-ms-correlation-request-id": "6e6ef033-45bb-44da-a9ba-3ffd4b2bcc30", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "405aa785-aa50-450e-8721-42551e353681", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064659Z:6e6ef033-45bb-44da-a9ba-3ffd4b2bcc30" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "60fb453245015093adaf0d4c9a02e072", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3c205856-4035-432b-8f5a-b6fbc07ffe21", + "x-ms-client-request-id": "60fb453245015093adaf0d4c9a02e072", + "x-ms-correlation-request-id": "74eb31b3-538b-4d4e-9de3-c72f902a9434", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "18b1e4d0-866a-4c7f-a0ce-e7bde12f9b99", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064700Z:74eb31b3-538b-4d4e-9de3-c72f902a9434" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cc953b817086f505d9367814bcd4cee0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "782e5405-089c-4c7b-a08a-70cb0459b516", + "x-ms-client-request-id": "cc953b817086f505d9367814bcd4cee0", + "x-ms-correlation-request-id": "930ddb23-1bb9-442e-abb0-96cd7b3fdcd5", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "83854a65-504a-4a8d-96bb-3c57077193f6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064701Z:930ddb23-1bb9-442e-abb0-96cd7b3fdcd5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5222ed4f9e687d9b0a92631e2863f5ca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b722ad1e-bc94-45a0-a91e-bbc23a16e889", + "x-ms-client-request-id": "5222ed4f9e687d9b0a92631e2863f5ca", + "x-ms-correlation-request-id": "38fb8988-0b2e-41cb-86c9-7742a1638c1b", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "a1066f08-a641-45e7-ac6c-4862e9e056ac", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064702Z:38fb8988-0b2e-41cb-86c9-7742a1638c1b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "96c8db825e5ec2a63f0586cacc7f93d8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e47e179b-3ebd-4273-980a-91d1c631f699", + "x-ms-client-request-id": "96c8db825e5ec2a63f0586cacc7f93d8", + "x-ms-correlation-request-id": "9e5468d0-3606-43d3-9ffb-85b3f66749c0", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "0337be2d-b609-49fb-981b-44702ee55a16", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064704Z:9e5468d0-3606-43d3-9ffb-85b3f66749c0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "acfd2ce18ee0e20aa018c1f30de6cd76", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c89254d5-5543-46f6-81cd-3144650e8989", + "x-ms-client-request-id": "acfd2ce18ee0e20aa018c1f30de6cd76", + "x-ms-correlation-request-id": "f212f0f4-3a3d-4fc4-a357-3f6b978f9551", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "86fe8c93-4ed6-40c5-ad82-15725ed1795d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064705Z:f212f0f4-3a3d-4fc4-a357-3f6b978f9551" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e192ae41370cf181475f136218d0b08b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "56060b04-86e4-409d-9798-49f6283f360d", + "x-ms-client-request-id": "e192ae41370cf181475f136218d0b08b", + "x-ms-correlation-request-id": "0730b4c9-5dc8-49ae-8cf6-76fe6f533bfd", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "9df2addc-0a08-484d-81eb-8e49c42dd76e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064706Z:0730b4c9-5dc8-49ae-8cf6-76fe6f533bfd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fb3d8aff4866f4ead1e6f6469cb2b558", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "31710687-6dbf-4606-8687-c32f6e133b06", + "x-ms-client-request-id": "fb3d8aff4866f4ead1e6f6469cb2b558", + "x-ms-correlation-request-id": "3db0cfc4-3b76-449e-a338-97ea7af79771", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "66ba7b54-e53e-4b94-bf75-3f835ca0187e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064707Z:3db0cfc4-3b76-449e-a338-97ea7af79771" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1e891038b2eca9ccab0b65807aa8cacf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "77e4b039-7700-43ed-878b-d27eea6c8925", + "x-ms-client-request-id": "1e891038b2eca9ccab0b65807aa8cacf", + "x-ms-correlation-request-id": "0884ab0d-3d41-4f3b-a5c9-6ac1808ee811", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "28edb033-9a5b-4ab8-bb7b-3239680161ea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064709Z:0884ab0d-3d41-4f3b-a5c9-6ac1808ee811" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "82f33667d1a9f910c39e1026413b5494", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e85c66bb-be17-4e05-9732-54e0a54e7758", + "x-ms-client-request-id": "82f33667d1a9f910c39e1026413b5494", + "x-ms-correlation-request-id": "5c890ef3-94eb-4f35-b6d3-e8914e3c123d", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "c8067a7e-b259-4501-a3c0-1cfb969e4913", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064710Z:5c890ef3-94eb-4f35-b6d3-e8914e3c123d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0729baaa91474d9ebe94505ae2697928", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e0bbe299-fa20-4ab1-a3d6-e7e677847d18", + "x-ms-client-request-id": "0729baaa91474d9ebe94505ae2697928", + "x-ms-correlation-request-id": "836622b6-0511-4733-9c51-e2185acdf2f8", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "2d8e4148-1345-46ae-8322-60e50f0a3701", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064711Z:836622b6-0511-4733-9c51-e2185acdf2f8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "65df271b32bf66af008f5a4ea2a66770", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0b5c9136-9539-40fa-825b-cdcf745dd393", + "x-ms-client-request-id": "65df271b32bf66af008f5a4ea2a66770", + "x-ms-correlation-request-id": "ff6ea388-779c-410f-b5f2-e9d5a0a53003", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "a0e2b551-dcbe-4b4b-a6f5-fba91aca4fb9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064712Z:ff6ea388-779c-410f-b5f2-e9d5a0a53003" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c0d6d1b7c27ed58797a6c41481b5165a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "5b3c0196-0932-434c-a736-eb21e23ff39e", + "x-ms-client-request-id": "c0d6d1b7c27ed58797a6c41481b5165a", + "x-ms-correlation-request-id": "1311a082-14d7-4bf5-9982-9ed73ff9086d", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "6d13bffa-a7cd-41f4-b36b-967bbc0a14e2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064714Z:1311a082-14d7-4bf5-9982-9ed73ff9086d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1a0ae725ee5b77d40ac307b7374fab17", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f030566d-69c6-42e3-9efd-5c9aba31e32b", + "x-ms-client-request-id": "1a0ae725ee5b77d40ac307b7374fab17", + "x-ms-correlation-request-id": "d600d812-bc48-4554-85c9-140ac32db281", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "d00f29e2-84e4-43ab-a8e1-8cda0b6a5a33", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064715Z:d600d812-bc48-4554-85c9-140ac32db281" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "11a2e02cb89359aa9f09ce186e9be54a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ae678f78-2b94-46b0-977c-469e96abe9b2", + "x-ms-client-request-id": "11a2e02cb89359aa9f09ce186e9be54a", + "x-ms-correlation-request-id": "4fd50bd2-e9f5-4153-86b7-801b16facb68", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "2b210cc5-f7ac-402d-9c67-762f9ce699e4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064716Z:4fd50bd2-e9f5-4153-86b7-801b16facb68" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ba2900784d9bc814fc5fb5bbbacf9e47", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "dba305c4-818b-4e6a-956a-4cf2bd5389e1", + "x-ms-client-request-id": "ba2900784d9bc814fc5fb5bbbacf9e47", + "x-ms-correlation-request-id": "fbb67b27-e5f5-437e-9b24-53ab96eee654", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "bcfae00c-da9f-436a-ae7f-a34cfdae652a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064718Z:fbb67b27-e5f5-437e-9b24-53ab96eee654" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a0e7acfb05126cc63db07a5220bc086f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d7478b94-2a77-4a20-8a65-5e9582526b63", + "x-ms-client-request-id": "a0e7acfb05126cc63db07a5220bc086f", + "x-ms-correlation-request-id": "48124363-6d81-4f58-a569-69decb97ac40", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "403af2b7-88f0-4c7e-8828-51eb63d7517c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064719Z:48124363-6d81-4f58-a569-69decb97ac40" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "363fbddef026df7bccda143403ee9ed0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "214f0e4e-45a5-4340-94de-9ab4017b3eed", + "x-ms-client-request-id": "363fbddef026df7bccda143403ee9ed0", + "x-ms-correlation-request-id": "466a3436-289a-4726-bf2c-dc9ad9a47a1a", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "ca867b33-53b5-4e29-ac5d-c0fc9626e93d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064721Z:466a3436-289a-4726-bf2c-dc9ad9a47a1a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c11d866b44b3733739bd7debd3c2a740", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "6360cd2e-2eb3-480c-996d-bd94d0d4180f", + "x-ms-client-request-id": "c11d866b44b3733739bd7debd3c2a740", + "x-ms-correlation-request-id": "53f50328-c141-4541-9b50-6d2680d98797", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "fdd46737-20ed-4d37-83d2-dcb85365376a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064722Z:53f50328-c141-4541-9b50-6d2680d98797" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fcdc455668900a213008d438f192694e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2d7170cc-968d-4f7b-9b5a-c535344bca8b", + "x-ms-client-request-id": "fcdc455668900a213008d438f192694e", + "x-ms-correlation-request-id": "b93860df-ef72-447d-ac3c-66f45001864e", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "7dcc2119-50df-4837-86bf-8df994bbef5d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064723Z:b93860df-ef72-447d-ac3c-66f45001864e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9ae6a912479e99bc86cbfc6973900b0a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6fa8ac62-329b-477d-a955-4453d91b23e9", + "x-ms-client-request-id": "9ae6a912479e99bc86cbfc6973900b0a", + "x-ms-correlation-request-id": "18e18eb2-f668-497f-9450-496d1d2fc5e1", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "8dc47752-5cf7-4652-9d15-5867b37df5b6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064724Z:18e18eb2-f668-497f-9450-496d1d2fc5e1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bdded432a1120340641290aa70fe81a7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "9c299a97-88de-451b-964a-489205210ca6", + "x-ms-client-request-id": "bdded432a1120340641290aa70fe81a7", + "x-ms-correlation-request-id": "6c5b32dd-9d9e-4322-a672-de18d3ad9efb", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "269f7e64-7598-48dc-978f-5806e9b958c6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064726Z:6c5b32dd-9d9e-4322-a672-de18d3ad9efb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "29d82e530ddb0ea1884376c46bb897a0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e0df5ad6-e191-475b-8f39-4a01905532bb", + "x-ms-client-request-id": "29d82e530ddb0ea1884376c46bb897a0", + "x-ms-correlation-request-id": "f0572bfe-98d1-4352-9911-14b4a2024a3a", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "790d8a57-bec0-4707-a582-a4e5c1a876f1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064727Z:f0572bfe-98d1-4352-9911-14b4a2024a3a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1d05c9fcabb4703c69e3368bb6122887", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "75f05ebe-3fb6-4734-9298-c74d8b9bb8ec", + "x-ms-client-request-id": "1d05c9fcabb4703c69e3368bb6122887", + "x-ms-correlation-request-id": "ea705844-bf49-4246-a0f6-92be381e6611", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "59fb2123-2f2f-4b71-9b18-85c36a8861eb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064728Z:ea705844-bf49-4246-a0f6-92be381e6611" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4415554ae2b7252f32cf34ce2b7b97ac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c81866eb-1895-4309-a93b-af149d98a3f6", + "x-ms-client-request-id": "4415554ae2b7252f32cf34ce2b7b97ac", + "x-ms-correlation-request-id": "be3a85f4-1a67-4dcd-a30e-f64d1c46e0ad", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "2df1960c-93f3-41be-b784-096af11989b9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064730Z:be3a85f4-1a67-4dcd-a30e-f64d1c46e0ad" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a6adf07b64f9a8f3f268c0f7d7155876", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "36ab8e5f-9808-4976-9cff-0f61fad988a5", + "x-ms-client-request-id": "a6adf07b64f9a8f3f268c0f7d7155876", + "x-ms-correlation-request-id": "04455365-16f2-4b76-b0d6-480a3e1823bc", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "130855f5-b7ba-48f0-8798-6b9e3e4bc7c0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064731Z:04455365-16f2-4b76-b0d6-480a3e1823bc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "167aee1b52a21ae89adfeae4776e44ed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a62c89eb-729d-4f96-b8d1-2b6bd5f1d0b9", + "x-ms-client-request-id": "167aee1b52a21ae89adfeae4776e44ed", + "x-ms-correlation-request-id": "98eee352-1476-4c68-bdf6-86229b4d93de", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "e2798fe5-246c-44f7-a86d-c079beda43c8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064732Z:98eee352-1476-4c68-bdf6-86229b4d93de" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c510894c8164e58e616d524f22374e1d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "2f7c850d-b867-469d-93c4-43db641cb834", + "x-ms-client-request-id": "c510894c8164e58e616d524f22374e1d", + "x-ms-correlation-request-id": "f3851065-a4a3-4928-824d-67d14d2e93ff", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "910497cd-1a3c-40a9-9fc6-470030a71053", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064733Z:f3851065-a4a3-4928-824d-67d14d2e93ff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3cb3bd768001290908930c197a0e3184", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "df60858a-f42a-4cd4-b618-c4b542282cbb", + "x-ms-client-request-id": "3cb3bd768001290908930c197a0e3184", + "x-ms-correlation-request-id": "96c1bbaa-9d73-409e-a191-a06b1b89a8a1", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "f6182adf-7692-4f19-ab49-0c3fb5351baf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064735Z:96c1bbaa-9d73-409e-a191-a06b1b89a8a1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4daad224920599125f94b435ff99f762", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a764e387-c2f7-4e28-ad01-a568a1c66766", + "x-ms-client-request-id": "4daad224920599125f94b435ff99f762", + "x-ms-correlation-request-id": "da58dded-4b03-4d6c-83d5-2e4326a6ea36", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "44e2af54-8654-4fda-813f-b52cd8b7cbb7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064736Z:da58dded-4b03-4d6c-83d5-2e4326a6ea36" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b96dcd9107bacbeb7fe7bdd075756b53", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "60288534-abd2-4b1f-a31e-172b717b874d", + "x-ms-client-request-id": "b96dcd9107bacbeb7fe7bdd075756b53", + "x-ms-correlation-request-id": "c1378072-0b82-40ee-88a2-1cc08c1f3d31", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-request-id": "a03776f6-128d-4109-8fc9-9c8d16a4b5b2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064737Z:c1378072-0b82-40ee-88a2-1cc08c1f3d31" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4f2bce3c018de417ab1add6dccd4296f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2166a3a6-c11f-41d1-a6f3-f6cb4f7dd498", + "x-ms-client-request-id": "4f2bce3c018de417ab1add6dccd4296f", + "x-ms-correlation-request-id": "3d47a54f-a77e-4b6a-b3b0-36a26d406e46", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "c8e4a4ac-8459-40a3-aaf4-b0647820ce6e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064738Z:3d47a54f-a77e-4b6a-b3b0-36a26d406e46" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ac88a99b77a01cc9e6dfce1dd54223ea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "fac30129-37e0-4603-b7f1-f094d418edab", + "x-ms-client-request-id": "ac88a99b77a01cc9e6dfce1dd54223ea", + "x-ms-correlation-request-id": "6b6043ec-bec3-4ba1-af42-eccbb0c43a0d", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "d0c45d95-307f-495b-9fba-5f4cd7d31ec1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064740Z:6b6043ec-bec3-4ba1-af42-eccbb0c43a0d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "31f96128a76d8fd5b5890ea02a7effaa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "d4e71670-f448-447a-813b-f59551d06311", + "x-ms-client-request-id": "31f96128a76d8fd5b5890ea02a7effaa", + "x-ms-correlation-request-id": "2f8f23eb-f479-458b-a8d0-021b554108a0", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "c4c12366-4f1c-4f99-959f-4ad304875f8e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064741Z:2f8f23eb-f479-458b-a8d0-021b554108a0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cc344dbebeedc4b2040e69ad33fa0e68", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5dc299ca-3b4d-4f93-a3d7-c60376204dbe", + "x-ms-client-request-id": "cc344dbebeedc4b2040e69ad33fa0e68", + "x-ms-correlation-request-id": "f9684ab9-965f-45d6-a977-e50993f23e42", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "70de0116-2123-46bc-ae9d-b112223a2b7a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064742Z:f9684ab9-965f-45d6-a977-e50993f23e42" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6a44f3f6f7dbf401d3f8f6176928f167", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7f5ceb9f-3071-4b18-84c1-24a26f24e43d", + "x-ms-client-request-id": "6a44f3f6f7dbf401d3f8f6176928f167", + "x-ms-correlation-request-id": "490a9f99-1d54-49ba-89b4-82f17b459ed8", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "c5def4ba-c730-4ad7-9fe5-abed65d8c5a0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064744Z:490a9f99-1d54-49ba-89b4-82f17b459ed8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "885f23df570e6afcae342c5f3e275cbb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e7e2f758-66a8-417e-8e7f-72e2126a850e", + "x-ms-client-request-id": "885f23df570e6afcae342c5f3e275cbb", + "x-ms-correlation-request-id": "83aad6c5-90db-4e75-86f9-b554c51c1679", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "c19fb5f5-ed0a-4bd7-9bf8-90d292307257", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064745Z:83aad6c5-90db-4e75-86f9-b554c51c1679" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "37aaa57a943ac6cf4b40f8f5c79b5adc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "306c6806-f8db-4343-926c-597946db4296", + "x-ms-client-request-id": "37aaa57a943ac6cf4b40f8f5c79b5adc", + "x-ms-correlation-request-id": "deda860d-ed38-4d0d-aa26-1caa2a4fe7fd", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "ff6d6ae9-4c03-4f3e-be0d-25d3a51ffdeb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064746Z:deda860d-ed38-4d0d-aa26-1caa2a4fe7fd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0fce011c869a9e5af6dabba6cba2b5ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "bac92287-77bd-43bf-96d8-2a1ff2e583b5", + "x-ms-client-request-id": "0fce011c869a9e5af6dabba6cba2b5ab", + "x-ms-correlation-request-id": "132e27c1-5a18-4e1e-bbd6-43b489bd1075", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "4209424e-694c-4331-9b3e-63777bbe5587", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064747Z:132e27c1-5a18-4e1e-bbd6-43b489bd1075" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c39c3b9bba7e4a2d54983ccd5f07a213", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b69f878b-93cd-4fa4-b3e3-b689aaf6b78b", + "x-ms-client-request-id": "c39c3b9bba7e4a2d54983ccd5f07a213", + "x-ms-correlation-request-id": "73393fa5-1ef8-45e0-aa13-b50a47ee437c", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "b165770e-4cc2-4516-9cf1-2d6a3694a697", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064749Z:73393fa5-1ef8-45e0-aa13-b50a47ee437c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3d4250d94d59f4204b0b4160d828fba9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "0e52b4ba-0fd6-48a6-aa7b-76c2df7d558a", + "x-ms-client-request-id": "3d4250d94d59f4204b0b4160d828fba9", + "x-ms-correlation-request-id": "1451dffb-d7cf-4ce6-b7db-9491e38f6f19", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "ca79fd96-4342-4f92-b33d-7c486f95a94f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064750Z:1451dffb-d7cf-4ce6-b7db-9491e38f6f19" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8c594c8a97ff625dd383bb024a8c3fee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "cb83edf9-5ddb-46ae-8ca7-38841b4f76ad", + "x-ms-client-request-id": "8c594c8a97ff625dd383bb024a8c3fee", + "x-ms-correlation-request-id": "41967e7c-f2e0-4717-85df-f276ebfe510f", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "951c7fe8-3b2d-401c-9765-2d03b3482ea7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064751Z:41967e7c-f2e0-4717-85df-f276ebfe510f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7acda838785f4e511aa8787279cd712b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1112cd5c-f79d-4c13-94d0-997aeea9d458", + "x-ms-client-request-id": "7acda838785f4e511aa8787279cd712b", + "x-ms-correlation-request-id": "0dea64ad-7992-410c-90f8-6ed8999157ec", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "8fad5ce1-49db-456e-a8e7-96c358a32781", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064753Z:0dea64ad-7992-410c-90f8-6ed8999157ec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1242929c15ad4214f2e069d6911ea9be", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "35806279-4ff0-40d5-b102-ac71a5013024", + "x-ms-client-request-id": "1242929c15ad4214f2e069d6911ea9be", + "x-ms-correlation-request-id": "35a8777f-7d7a-4b7a-a81a-09c9e3761c17", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "1a33e67c-36a9-46ce-96e7-dfcc2a8a880b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064754Z:35a8777f-7d7a-4b7a-a81a-09c9e3761c17" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "302852cb815b1249fa0b71561eeae806", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1aa8a3e4-cd23-41bc-997b-1ab5c9fb8cc6", + "x-ms-client-request-id": "302852cb815b1249fa0b71561eeae806", + "x-ms-correlation-request-id": "5c3f2005-d59b-4344-a7dc-2a40145c2afe", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "fa53a2cb-4ea6-4ec2-82c6-e6c7a5d9465b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064755Z:5c3f2005-d59b-4344-a7dc-2a40145c2afe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b8658f112d4a2240948a877f0f7bbcfb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "92c86397-07c8-472d-8a61-641cb6d5fc8d", + "x-ms-client-request-id": "b8658f112d4a2240948a877f0f7bbcfb", + "x-ms-correlation-request-id": "79818c82-21d8-47e0-844c-fd492780abdc", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "e4cc3665-bdde-46b0-a73d-f1ec5c5b240b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064756Z:79818c82-21d8-47e0-844c-fd492780abdc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "27a6bafe41a51bd0483017a2a3bd2408", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4b9c17dc-5a07-449c-935d-2be5ce18e1fd", + "x-ms-client-request-id": "27a6bafe41a51bd0483017a2a3bd2408", + "x-ms-correlation-request-id": "1de7a4e3-a0fe-4b2f-ac9b-5c501074a657", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "e2410945-99d6-4e98-bf0f-e9137118c34a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064758Z:1de7a4e3-a0fe-4b2f-ac9b-5c501074a657" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "01c462f7f1b99e7411059bd0f9ca037f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "cbadda11-3695-45c6-92ef-0e69924afe5b", + "x-ms-client-request-id": "01c462f7f1b99e7411059bd0f9ca037f", + "x-ms-correlation-request-id": "59c7d170-d0fd-4683-a497-3c057d6b9b93", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "1a9adae6-88c5-4228-b845-5f3bdc8e310e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064800Z:59c7d170-d0fd-4683-a497-3c057d6b9b93" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6358764fc143cf61bf496f19169e7ed7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f8a447b5-9dd0-4fc9-9b3b-751901dfce70", + "x-ms-client-request-id": "6358764fc143cf61bf496f19169e7ed7", + "x-ms-correlation-request-id": "c8f3cdc3-8744-451e-b3b2-bf6725f2ea9e", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "0020ddf1-383d-444b-a60b-facdfb5356fe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064801Z:c8f3cdc3-8744-451e-b3b2-bf6725f2ea9e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ac887f66bab60d414608159fa6ff227e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "50101ca2-dcbe-48f0-ae31-eeb2edf793e1", + "x-ms-client-request-id": "ac887f66bab60d414608159fa6ff227e", + "x-ms-correlation-request-id": "9c60142b-f500-4a21-8e2c-7eae6c57f6bf", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "4e7e3dd9-99a9-4afb-bc18-5a1d381ea606", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064802Z:9c60142b-f500-4a21-8e2c-7eae6c57f6bf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2d53972cc06535c401f54170815a8873", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "178d92a8-000a-4e53-9a04-80092acec0a4", + "x-ms-client-request-id": "2d53972cc06535c401f54170815a8873", + "x-ms-correlation-request-id": "7bfb633b-c305-4ca8-89a9-942d80d61a31", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "1bfe193e-3a06-4c77-912d-b06a9a5bbf9a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064803Z:7bfb633b-c305-4ca8-89a9-942d80d61a31" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7a6ac486564194c9344a1d3bacc129c0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4748c321-263c-4ee6-8383-319f356a4f19", + "x-ms-client-request-id": "7a6ac486564194c9344a1d3bacc129c0", + "x-ms-correlation-request-id": "0f005835-6170-42ef-bc8c-ee37f46c4ceb", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "814d02bc-87b8-4660-afd1-e7847ef5ec94", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064805Z:0f005835-6170-42ef-bc8c-ee37f46c4ceb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7eedf126514ba672ba52abc178d18cec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9e2eda31-15ab-4639-9613-0b4cdd153eb0", + "x-ms-client-request-id": "7eedf126514ba672ba52abc178d18cec", + "x-ms-correlation-request-id": "94c7dc8a-f3ee-47e9-8684-def564a456e0", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "b00c330b-cf9b-4256-8b02-32520c7e267a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064806Z:94c7dc8a-f3ee-47e9-8684-def564a456e0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e118a280a894d53ccebef81aa389883f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "00c543f9-f1ae-41c4-9606-0670dd36b0c6", + "x-ms-client-request-id": "e118a280a894d53ccebef81aa389883f", + "x-ms-correlation-request-id": "f7f73468-7c54-44d2-9152-f5ca7133be7d", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "c1f6e569-771f-4315-bab7-841dcaca90ec", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064807Z:f7f73468-7c54-44d2-9152-f5ca7133be7d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "904981cb096c352751c4bfeeab071b63", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9621c2d9-1179-4527-bbb8-4f8c995305e9", + "x-ms-client-request-id": "904981cb096c352751c4bfeeab071b63", + "x-ms-correlation-request-id": "d9dc6796-6882-4443-a669-6cea32bb9244", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "7e073234-79f5-459b-845f-f237ba49d492", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064809Z:d9dc6796-6882-4443-a669-6cea32bb9244" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0abb30bd47a97e2bb417b08c58570231", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "386822ba-4bc5-4bcf-8613-d4e15b628388", + "x-ms-client-request-id": "0abb30bd47a97e2bb417b08c58570231", + "x-ms-correlation-request-id": "5c525dbf-010f-4604-afb3-b01d4822c659", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "6ff0f2bd-0281-4698-825f-647864f8e9ca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064810Z:5c525dbf-010f-4604-afb3-b01d4822c659" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f7f56ccafc87767f7ae390d0e94d2ac6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9e3cefc1-192d-43dd-aca5-1a48bea67f96", + "x-ms-client-request-id": "f7f56ccafc87767f7ae390d0e94d2ac6", + "x-ms-correlation-request-id": "03bce2de-aff8-452f-8c65-23b54e60923f", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "6bc9b86b-3245-47e5-86fb-605b54580266", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064811Z:03bce2de-aff8-452f-8c65-23b54e60923f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "725c94a37ece839655cbdb55599bdcfa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "245522c6-cf8f-4685-aeff-0761a7821fb0", + "x-ms-client-request-id": "725c94a37ece839655cbdb55599bdcfa", + "x-ms-correlation-request-id": "f2938f8d-a897-48fe-9424-e13a60536de7", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "fa9e7edc-6a3c-411c-a2b2-794ae45362e1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064812Z:f2938f8d-a897-48fe-9424-e13a60536de7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3f248dc12311c1dcb14490c6b75b9566", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "953309e3-4578-4f4b-9502-29d797a1b4a4", + "x-ms-client-request-id": "3f248dc12311c1dcb14490c6b75b9566", + "x-ms-correlation-request-id": "1e6ad0cf-ab4c-494b-911b-8b150dd67d74", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "5679116f-dd6e-437e-b3b1-6b2b5491a4bd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064814Z:1e6ad0cf-ab4c-494b-911b-8b150dd67d74" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c3e9e9ed90fa4b63d672a1bb202a1cde", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e908efd4-3616-49ef-930c-d29cf41044e2", + "x-ms-client-request-id": "c3e9e9ed90fa4b63d672a1bb202a1cde", + "x-ms-correlation-request-id": "da6e5377-f80e-4024-83aa-e75fa4e76018", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "5f8929f9-c281-466f-926a-356162975a27", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064815Z:da6e5377-f80e-4024-83aa-e75fa4e76018" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5b0e9606eb297fb4b89bc189edcfcbf9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "19f93452-0a99-456b-8eee-b3b7c86b4228", + "x-ms-client-request-id": "5b0e9606eb297fb4b89bc189edcfcbf9", + "x-ms-correlation-request-id": "1357d8b9-55ea-44f3-b620-6f9e73ddfe57", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "17465d3a-9de5-4d98-9bad-e4c40d097029", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064816Z:1357d8b9-55ea-44f3-b620-6f9e73ddfe57" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7068753618b230ff2ad9689f8121a186", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9f62f57c-bb42-4da4-aaa0-12ea4b3c51c9", + "x-ms-client-request-id": "7068753618b230ff2ad9689f8121a186", + "x-ms-correlation-request-id": "4e809094-96b9-4aee-8d9d-d2adede14498", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "615c5df6-9d33-447c-ab30-1e63da5adfba", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064818Z:4e809094-96b9-4aee-8d9d-d2adede14498" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "21bfb1283a4d013d34690b5fcfda5d06", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3582698a-e540-4ee7-8cb6-8a1128dac306", + "x-ms-client-request-id": "21bfb1283a4d013d34690b5fcfda5d06", + "x-ms-correlation-request-id": "c476e2a0-b7f9-4f84-bccf-070d79ecb4e4", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "8947f768-24b4-4f94-830d-47ee4036c54d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064819Z:c476e2a0-b7f9-4f84-bccf-070d79ecb4e4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ab85a8a6acc2ed2c97dd304f8215fd97", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2e0c86ae-6751-4268-9540-81818158eeeb", + "x-ms-client-request-id": "ab85a8a6acc2ed2c97dd304f8215fd97", + "x-ms-correlation-request-id": "7639c066-1d63-4b7d-9c76-f82a15f715b8", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "d068c374-d246-4cef-8fe6-8e1ec7e0c7c7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064820Z:7639c066-1d63-4b7d-9c76-f82a15f715b8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3c603af9aa10fcac37663c480d9f6150", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f8ff6f4d-910d-4ebb-8a5c-ab55c06a4ca5", + "x-ms-client-request-id": "3c603af9aa10fcac37663c480d9f6150", + "x-ms-correlation-request-id": "954d1b7c-0dc7-4e12-a1e1-99aead0fba4b", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "f0ab977e-084e-4686-87ee-f3cce2bb3125", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064821Z:954d1b7c-0dc7-4e12-a1e1-99aead0fba4b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d9f8627bf59c7cc485d28a6f09ed7f1f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3d322425-c1b9-4951-83be-1560d63f36f2", + "x-ms-client-request-id": "d9f8627bf59c7cc485d28a6f09ed7f1f", + "x-ms-correlation-request-id": "10c651da-a755-4961-a3fd-673725135d82", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "88462a31-1cff-44a7-9889-19ba3b004de3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064823Z:10c651da-a755-4961-a3fd-673725135d82" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9465746c2179fcf6fb88735c70e3e0f7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "c90b884b-6ee3-4992-b6be-f24e0b939fd0", + "x-ms-client-request-id": "9465746c2179fcf6fb88735c70e3e0f7", + "x-ms-correlation-request-id": "84592225-27b5-4e02-9466-ed45e745a552", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "d557309f-9bc0-4e22-9d5b-3e20a98ddaaa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064824Z:84592225-27b5-4e02-9466-ed45e745a552" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1fd4e07c231c04fb75e4b63d1f3df249", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "89c31430-13a0-4e28-8134-7e8ce97e7982", + "x-ms-client-request-id": "1fd4e07c231c04fb75e4b63d1f3df249", + "x-ms-correlation-request-id": "3eeb3c61-b165-4781-b768-7e8518f4441e", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "2b2fdbcf-6e76-4cb0-b367-3de33916c181", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064825Z:3eeb3c61-b165-4781-b768-7e8518f4441e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "98dc1ce6cc395ad66cfcde1381680ba1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b3cf9c65-4487-4ab2-8084-4d7a9ed5dd4f", + "x-ms-client-request-id": "98dc1ce6cc395ad66cfcde1381680ba1", + "x-ms-correlation-request-id": "bb0e00f2-8690-4f91-85c3-847f44d0680b", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "2c1cd63c-d89d-4f1d-b946-d2e583b6b4ba", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064826Z:bb0e00f2-8690-4f91-85c3-847f44d0680b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "28f392f26019480279611e946ab8dcbe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d06dfc35-6d52-4277-9658-018e3196f6bb", + "x-ms-client-request-id": "28f392f26019480279611e946ab8dcbe", + "x-ms-correlation-request-id": "549e8776-be4c-43c2-ac62-7f9b22cb1d30", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "2e3549ab-4855-4ec7-b7dd-47a370c91b83", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064828Z:549e8776-be4c-43c2-ac62-7f9b22cb1d30" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "53752a964707afbe097ab31f45e7820d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2c7dc645-0769-4bae-8295-0fbc91f05bd1", + "x-ms-client-request-id": "53752a964707afbe097ab31f45e7820d", + "x-ms-correlation-request-id": "de88e2f6-2905-4cc4-bd1a-08706040ed1d", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "3dd783b5-060e-497d-a424-55c0433d5f11", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064829Z:de88e2f6-2905-4cc4-bd1a-08706040ed1d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8c4b14d8c94a86301a931fd7ad41efb3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d2fd1673-3a1a-4b54-996a-7c2ab336c679", + "x-ms-client-request-id": "8c4b14d8c94a86301a931fd7ad41efb3", + "x-ms-correlation-request-id": "fc355ecd-6e6e-418f-a610-9fa9a6568677", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "b63761e8-d3c0-433c-8dc3-d834b887c223", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064830Z:fc355ecd-6e6e-418f-a610-9fa9a6568677" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "577d201fb8f2ab9ad4431f9face30391", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "090815ea-049f-4860-befd-cfc00f84142b", + "x-ms-client-request-id": "577d201fb8f2ab9ad4431f9face30391", + "x-ms-correlation-request-id": "495d3fe0-e032-486f-83ef-70c1ff67673d", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "ad6ee6d5-9882-4bb3-b0d6-526007406ad9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064832Z:495d3fe0-e032-486f-83ef-70c1ff67673d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "55bb11df4f6dcc73f9ef397327e601c7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:48: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": "85ef1b7d-be3d-4b9c-8195-90c1a9edb17e", + "x-ms-client-request-id": "55bb11df4f6dcc73f9ef397327e601c7", + "x-ms-correlation-request-id": "785d97f7-d94d-42e4-9df3-28e97a27fb44", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "10edf422-2b09-46bc-8eee-b0cee65ce522", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064833Z:785d97f7-d94d-42e4-9df3-28e97a27fb44" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "24ffff8a2a6a201b7a9fb806aa91d936", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "771e5690-bf3d-4def-b8fa-3264c4b62a14", + "x-ms-client-request-id": "24ffff8a2a6a201b7a9fb806aa91d936", + "x-ms-correlation-request-id": "c5847683-a9c3-427a-9a38-fd824799ec81", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "b31f143a-7043-4014-a46d-c934e5aec103", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064834Z:c5847683-a9c3-427a-9a38-fd824799ec81" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9cf88e909985d046acb05d027f2783ee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "66be6b80-98f3-4466-965b-b12d3c02bbaa", + "x-ms-client-request-id": "9cf88e909985d046acb05d027f2783ee", + "x-ms-correlation-request-id": "2de41281-bb42-4886-a4b0-f9c1d6e45d8a", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "6824be58-34e8-491d-9a79-e75ae5acf110", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064835Z:2de41281-bb42-4886-a4b0-f9c1d6e45d8a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ad145741dee3b426f69bdbcd976d2168", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9209bc0e-6ebc-4144-ae57-660b4645a878", + "x-ms-client-request-id": "ad145741dee3b426f69bdbcd976d2168", + "x-ms-correlation-request-id": "c56b196f-e907-4f0b-89db-c107d1599d3d", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "377abce4-054f-4353-b890-fc9fa18db770", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064837Z:c56b196f-e907-4f0b-89db-c107d1599d3d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "99e3021665eef041b82f78b9cc18a052", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "dc2d422a-6427-42d3-9308-2b7e75645782", + "x-ms-client-request-id": "99e3021665eef041b82f78b9cc18a052", + "x-ms-correlation-request-id": "0d4d9acc-9c67-4058-91bf-7de16d7c5ff5", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "65490cda-1564-4619-8b84-0b6d1363e802", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064838Z:0d4d9acc-9c67-4058-91bf-7de16d7c5ff5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "53c4ca1c2b7cb1536743a6eabe79383e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b64db58f-3679-46be-99ed-6dcf259cfdca", + "x-ms-client-request-id": "53c4ca1c2b7cb1536743a6eabe79383e", + "x-ms-correlation-request-id": "84d83cbb-7176-4e23-82f5-436db2163156", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "389bd990-28e2-4dd1-a41d-136f61e8c6ff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064839Z:84d83cbb-7176-4e23-82f5-436db2163156" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7decf58fea44dcff1524f4b3656de7dd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c632858c-f951-4eaf-93bf-916d0439d7e1", + "x-ms-client-request-id": "7decf58fea44dcff1524f4b3656de7dd", + "x-ms-correlation-request-id": "f039b6d8-4f21-485f-82fc-47f2ca427216", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "c645b6b3-07d5-43dd-8852-2966d5c5065e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064840Z:f039b6d8-4f21-485f-82fc-47f2ca427216" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cdb188fbcea9eaecae3132abbf57323f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c35ea342-54c8-4068-8a0b-081990f640fa", + "x-ms-client-request-id": "cdb188fbcea9eaecae3132abbf57323f", + "x-ms-correlation-request-id": "861be1af-0386-4260-af91-5533fdcc4d5b", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "f028b89c-60b9-4dce-acdc-1a81b1f33610", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064842Z:861be1af-0386-4260-af91-5533fdcc4d5b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d72a39f7232b320ecae83d57379f4bfa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d9a1a6d4-5b1f-45b1-a847-e4288ee5cd29", + "x-ms-client-request-id": "d72a39f7232b320ecae83d57379f4bfa", + "x-ms-correlation-request-id": "ba79c3f3-f8b1-4efa-b8c6-e91dd8975dbb", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "f352cc52-c0a4-4a1a-a5bc-6be7f7928be0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064843Z:ba79c3f3-f8b1-4efa-b8c6-e91dd8975dbb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/08f41c8c-848b-4f56-abf9-c79e0bb27554?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "35eec85b6ac7c1950902ce12b7541cbd", + "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, 08 Sep 2021 06:48:44 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": "9b72739e-06a6-4c84-9293-acc5e9238430", + "x-ms-client-request-id": "35eec85b6ac7c1950902ce12b7541cbd", + "x-ms-correlation-request-id": "405d1070-b233-4474-a26c-a8481aaf3ac6", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "b9a207bf-bd38-4667-8748-011db63df402", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064844Z:405d1070-b233-4474-a26c-a8481aaf3ac6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + } + ], + "Variables": { + "LOCATION": "westus2", + "RandomSeed": "1555932950", + "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/BastionHostContainerTests/CreateOrUpdateAsync.json b/sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/BastionHostContainerTests/CreateOrUpdateAsync.json new file mode 100644 index 0000000000000..02047b62ccca5 --- /dev/null +++ b/sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/BastionHostContainerTests/CreateOrUpdateAsync.json @@ -0,0 +1,18356 @@ +{ + "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-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3bc300f4604b6237f9f99488281c4b61", + "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, 08 Sep 2021 07:25:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0ff7702c-3963-42f6-9a46-6bedcc96499e", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "0ff7702c-3963-42f6-9a46-6bedcc96499e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072535Z:0ff7702c-3963-42f6-9a46-6bedcc96499e" + }, + "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/bastionrg-7251?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-e6a2c2c63949374796f9987e01184c70-e825e7fac500ef4b-00", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7d0343b88171688c62ecf9823ad6b103", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "226", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:25:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "399b3b43-6938-4159-a9c9-87273dc811df", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "399b3b43-6938-4159-a9c9-87273dc811df", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072535Z:399b3b43-6938-4159-a9c9-87273dc811df" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251", + "name": "bastionrg-7251", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "032ad13a69f301efb81c2be0eb708f0d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1249", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:25:35 GMT", + "ETag": "W/\u0022e995e46f-bd7c-4c0a-a7b6-5bb916c3a85d\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": "c6302c83-3a70-486d-95f5-4e414a37cebb", + "x-ms-client-request-id": "032ad13a69f301efb81c2be0eb708f0d", + "x-ms-correlation-request-id": "6b757079-f8ee-4686-a929-7de775f4ad3d", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "e0855136-852d-41c7-bde0-81a3ab9c2ee4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072535Z:6b757079-f8ee-4686-a929-7de775f4ad3d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022vnet-6121\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022e995e46f-bd7c-4c0a-a7b6-5bb916c3a85d\\\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: \u0022a7067e65-d510-4fab-b894-da0e03df110f\u0022,\r\n", + " \u0022addressSpace\u0022: {\r\n", + " \u0022addressPrefixes\u0022: [\r\n", + " \u002210.0.0.0/16\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022subnets\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022AzureBastionSubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121/subnets/AzureBastionSubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022e995e46f-bd7c-4c0a-a7b6-5bb916c3a85d\\\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/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121/subnets/AzureBastionSubnet?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5151224ec8c072ef735ad85f66b52823", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "551", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:25:35 GMT", + "ETag": "W/\u0022e995e46f-bd7c-4c0a-a7b6-5bb916c3a85d\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": "3a040586-2874-467f-a0f1-7ec585dcb76e", + "x-ms-client-request-id": "5151224ec8c072ef735ad85f66b52823", + "x-ms-correlation-request-id": "03bdfd03-3937-4dcf-a305-0ab4f31fc5f8", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "ea95c851-b74e-4706-aec9-4ad673e32f7f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072536Z:03bdfd03-3937-4dcf-a305-0ab4f31fc5f8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022AzureBastionSubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121/subnets/AzureBastionSubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022e995e46f-bd7c-4c0a-a7b6-5bb916c3a85d\\\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/bastionrg-7251/providers/Microsoft.Network/publicIPAddresses/ip-3184?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "564e914847f24f6e5301c55556ac7df2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "664", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:25:35 GMT", + "ETag": "W/\u002265b4b902-d5bb-43b2-a62c-242041123291\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": "14fba5c0-b58d-454a-9ee5-f9d8d3eb3d82", + "x-ms-client-request-id": "564e914847f24f6e5301c55556ac7df2", + "x-ms-correlation-request-id": "9ebcb067-25de-40ea-aa0b-708f766aabc4", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "66997fcf-11ca-4d5c-9891-375b2c86ea55", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072536Z:9ebcb067-25de-40ea-aa0b-708f766aabc4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022ip-3184\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/publicIPAddresses/ip-3184\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002265b4b902-d5bb-43b2-a62c-242041123291\\\u0022\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022cf12151e-bd67-4380-9ac6-86981f12aa37\u0022,\r\n", + " \u0022ipAddress\u0022: \u002220.98.77.111\u0022,\r\n", + " \u0022publicIPAddressVersion\u0022: \u0022IPv4\u0022,\r\n", + " \u0022publicIPAllocationMethod\u0022: \u0022Static\u0022,\r\n", + " \u0022idleTimeoutInMinutes\u0022: 4,\r\n", + " \u0022ipTags\u0022: []\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/publicIPAddresses\u0022,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Standard\u0022,\r\n", + " \u0022tier\u0022: \u0022Regional\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-897?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "468", + "Content-Type": "application/json", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "841734eb425fe271b7909890909a03f3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "id": null, + "properties": { + "ipConfigurations": [ + { + "name": "bastionIPConfig-218", + "id": null, + "properties": { + "subnet": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121/subnets/AzureBastionSubnet" + }, + "publicIPAddress": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/publicIPAddresses/ip-3184" + } + } + } + ] + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "1451", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:25:41 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": "43fa4960-0e61-4eae-b5e5-5e965e3b4266", + "x-ms-client-request-id": "841734eb425fe271b7909890909a03f3", + "x-ms-correlation-request-id": "ce31cb71-fad1-4fcb-ae45-73069520c844", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "7ad4057d-93fe-4d6d-b4de-d81247d782d3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072542Z:ce31cb71-fad1-4fcb-ae45-73069520c844" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022bastion-897\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-897\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022127d91d4-95e5-4ef1-bda5-b0ec702e52ab\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022scaleUnits\u0022: 2,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022bastionIPConfig-218\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-897/bastionHostIpConfigurations/bastionIPConfig-218\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022127d91d4-95e5-4ef1-bda5-b0ec702e52ab\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts/bastionHostIpConfigurations\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/bastionrg-7251/providers/Microsoft.Network/publicIPAddresses/ip-3184\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121/subnets/AzureBastionSubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022bastionShareableLinks\u0022: {}\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "807b01e69e104ee8dc743ab7d5bec267", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:25:42 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": "8f151981-97e6-4388-937e-c63261167cb0", + "x-ms-client-request-id": "807b01e69e104ee8dc743ab7d5bec267", + "x-ms-correlation-request-id": "6448f8e2-5d4e-44e0-9594-77c93c3599d5", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "79ec29de-34f9-440f-a97f-49cfa938049c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072542Z:6448f8e2-5d4e-44e0-9594-77c93c3599d5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "144f62c2d023cf242d638261836f489b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:25:43 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": "171ebddb-ecff-4375-85c6-ab727ef73fd3", + "x-ms-client-request-id": "144f62c2d023cf242d638261836f489b", + "x-ms-correlation-request-id": "51e3a0d2-812e-47d4-9787-6317781dcd13", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "fd5a9019-a25e-4689-bdb8-1e4828deaf20", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072544Z:51e3a0d2-812e-47d4-9787-6317781dcd13" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8eaabac9821f68e2af0b45c3e14fde43", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:25:44 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": "b738d377-ca76-404f-a16f-813856b3be00", + "x-ms-client-request-id": "8eaabac9821f68e2af0b45c3e14fde43", + "x-ms-correlation-request-id": "0bf19927-0eda-4ac3-b5e6-fdb8578f05eb", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "dc639b46-0880-42c8-bc2e-713f68aed858", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072545Z:0bf19927-0eda-4ac3-b5e6-fdb8578f05eb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3740573bb2cd15b9ddab53ad1b86cb6d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "11487d4a-d604-470d-b999-06ff9a24743f", + "x-ms-client-request-id": "3740573bb2cd15b9ddab53ad1b86cb6d", + "x-ms-correlation-request-id": "4b659068-35d5-473c-baa1-be2836f7674f", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "1f150128-f19b-45a9-b08a-088208809b4b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072546Z:4b659068-35d5-473c-baa1-be2836f7674f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1bed9f2c331440487fe665178a61eedd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:25:47 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": "f4b99e4c-5a92-4ea3-bd06-972175ec254d", + "x-ms-client-request-id": "1bed9f2c331440487fe665178a61eedd", + "x-ms-correlation-request-id": "600e2d91-ed6a-4e0b-8321-9c46a3cdbbdb", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "4ffb3e01-0087-4121-bbe9-28d6bda5c22f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072547Z:600e2d91-ed6a-4e0b-8321-9c46a3cdbbdb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2c263f84112e17ce0194b1732e354c28", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:25:48 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": "440e1de3-fcba-4d9d-adf8-a9cb96c52569", + "x-ms-client-request-id": "2c263f84112e17ce0194b1732e354c28", + "x-ms-correlation-request-id": "4848aa2a-18de-45a4-a4e5-9b8c9d9eb232", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "fca58199-d260-498e-a195-009363028728", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072549Z:4848aa2a-18de-45a4-a4e5-9b8c9d9eb232" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4296d840c362072e0f00b7e64ca18b7b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:25:49 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": "1a4fb953-3579-4418-bca9-509a2980b408", + "x-ms-client-request-id": "4296d840c362072e0f00b7e64ca18b7b", + "x-ms-correlation-request-id": "c15c333a-242c-41a0-a0f9-4bff2569264d", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "9a651612-ebf4-4ee6-a36d-868a718468fd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072550Z:c15c333a-242c-41a0-a0f9-4bff2569264d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dc2876bc9f5f1b3ed0d6198082d4114a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "a302dca8-c756-4acc-88ba-4801f2bbde2b", + "x-ms-client-request-id": "dc2876bc9f5f1b3ed0d6198082d4114a", + "x-ms-correlation-request-id": "3fcca00d-0572-48f6-b674-0812cb995c94", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "f56a551c-7d71-4e3c-84ec-03ccdf2bbf29", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072551Z:3fcca00d-0572-48f6-b674-0812cb995c94" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b1d73c99accac17b101f1c2e59e7ca5f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:25:52 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": "875750d0-d25a-4442-b8c8-7c1427d16fd5", + "x-ms-client-request-id": "b1d73c99accac17b101f1c2e59e7ca5f", + "x-ms-correlation-request-id": "03395ddc-fdfa-4e71-9e61-1afcc24e5a1f", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "5a414fb0-2c1c-4643-9c6c-623ce405c699", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072552Z:03395ddc-fdfa-4e71-9e61-1afcc24e5a1f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b8b63608700ca1c99a7b718ba9ae853b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "49b0cc40-f45c-4795-9a27-422c23365622", + "x-ms-client-request-id": "b8b63608700ca1c99a7b718ba9ae853b", + "x-ms-correlation-request-id": "d48baed1-2c87-4f63-a774-87522114b403", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "9fc0e3a7-ad66-4e50-ad26-6da1fa43233b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072554Z:d48baed1-2c87-4f63-a774-87522114b403" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "104d6cefd9ca10b0fb66cb40820fc1e9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5992ab96-2797-4f89-8f14-fb6f87cc1889", + "x-ms-client-request-id": "104d6cefd9ca10b0fb66cb40820fc1e9", + "x-ms-correlation-request-id": "de01a38e-49bd-4da4-8e1c-939d3ea5fccf", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "957c1566-3f98-4f80-acc0-ae1f4d1e5b5d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072555Z:de01a38e-49bd-4da4-8e1c-939d3ea5fccf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4b77ba0c581d293d7336174f3bef1862", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "d2b91b03-7ba0-4bef-929a-86f2b7ffd37c", + "x-ms-client-request-id": "4b77ba0c581d293d7336174f3bef1862", + "x-ms-correlation-request-id": "27cdc34e-dcca-4273-b459-d10b8a57fa04", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "f96efe6c-3421-483b-8a0d-b000385b6dcf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072556Z:27cdc34e-dcca-4273-b459-d10b8a57fa04" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ed3fe199b99a2f9485a6bda5a4881f8a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3043f1c2-db69-44c7-afae-73dbfbfa7f78", + "x-ms-client-request-id": "ed3fe199b99a2f9485a6bda5a4881f8a", + "x-ms-correlation-request-id": "e834feac-e80e-4c7b-afa5-cd5c57e0e66b", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "3150855d-e6dc-408c-9f64-399f78803c13", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072558Z:e834feac-e80e-4c7b-afa5-cd5c57e0e66b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ee7f87ba3937961d2f249d94c161d40b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a8521d9a-b23b-4d87-aeb4-2bc41e408da9", + "x-ms-client-request-id": "ee7f87ba3937961d2f249d94c161d40b", + "x-ms-correlation-request-id": "32a01327-a49c-4ea1-a090-0113c63bb41c", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "38d6bd74-b0c6-4336-8730-44a88dc4ced2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072559Z:32a01327-a49c-4ea1-a090-0113c63bb41c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a0a6694ed4d0524f2647c5769b9784ea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ef36b00c-300f-4321-8d2e-6b92ab5b2038", + "x-ms-client-request-id": "a0a6694ed4d0524f2647c5769b9784ea", + "x-ms-correlation-request-id": "072f7a82-1311-4ba8-b366-c685264cca12", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "48eb3d74-e13d-4542-b531-30b037235dde", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072600Z:072f7a82-1311-4ba8-b366-c685264cca12" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b3948d172970602bc3a9bd761c006d24", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e735fdc3-4716-410f-a56f-065a9cf32e99", + "x-ms-client-request-id": "b3948d172970602bc3a9bd761c006d24", + "x-ms-correlation-request-id": "e6c1c42b-156a-423f-83a7-ab3d2dec7a80", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "26017283-41eb-4892-9392-9a97455bf007", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072601Z:e6c1c42b-156a-423f-83a7-ab3d2dec7a80" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3b57b1d17ee1e6b9382cc8ef73a7fa97", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c27f5aac-cbb3-4d61-88c6-f25e8cf0cc44", + "x-ms-client-request-id": "3b57b1d17ee1e6b9382cc8ef73a7fa97", + "x-ms-correlation-request-id": "5bcc8881-4c8c-41d6-83cd-4eb843f55a29", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "55fd5b1b-e980-4361-aba3-cc50f9091148", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072603Z:5bcc8881-4c8c-41d6-83cd-4eb843f55a29" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "347db29f21cc249b3e46dc2716d93625", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "38dfb178-38ee-423e-8e96-e050be456157", + "x-ms-client-request-id": "347db29f21cc249b3e46dc2716d93625", + "x-ms-correlation-request-id": "c3cc1bf4-10b8-45cf-96ea-af568eb1e228", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "b99b428f-4cad-4a6f-a2f3-bb9d840f7ef6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072604Z:c3cc1bf4-10b8-45cf-96ea-af568eb1e228" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e9a5a1d948409808d3ae7b44613bec1c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9a2031ef-6435-4d60-9645-28da3db52455", + "x-ms-client-request-id": "e9a5a1d948409808d3ae7b44613bec1c", + "x-ms-correlation-request-id": "a4f85b94-46f5-4924-a67d-eda05c679f21", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "5b06bdd0-29e8-4814-a1c3-42672b895257", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072605Z:a4f85b94-46f5-4924-a67d-eda05c679f21" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "69d626ae3983b0581633fd9ba192cf5f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "16f9d86a-f171-4da5-92e4-ba81afdb57a4", + "x-ms-client-request-id": "69d626ae3983b0581633fd9ba192cf5f", + "x-ms-correlation-request-id": "b7ba7234-23a0-4b81-a212-9fa57c8ffd4d", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "3f058ce7-9008-4a00-9fed-c386cf579ea2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072607Z:b7ba7234-23a0-4b81-a212-9fa57c8ffd4d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d215a2f510015657aae4611da556c202", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c30644f6-cef4-4e0e-b3ac-554ea369c502", + "x-ms-client-request-id": "d215a2f510015657aae4611da556c202", + "x-ms-correlation-request-id": "64cbafe4-0c57-4557-adf8-d435881daa4a", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "b906ff6e-21e1-4810-a0ef-251219f8f16d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072608Z:64cbafe4-0c57-4557-adf8-d435881daa4a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ef78bf5acd02a0a248f4d30d4b6df740", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "370cfb42-c598-400b-a4b0-58a0f5ffbecc", + "x-ms-client-request-id": "ef78bf5acd02a0a248f4d30d4b6df740", + "x-ms-correlation-request-id": "4bf20959-0e95-4b4e-8ff4-628f7aa8c7ef", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "00451b2d-6148-48f4-bab3-498540940145", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072609Z:4bf20959-0e95-4b4e-8ff4-628f7aa8c7ef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "be4f1cde19259e1acf7fbf9ed73b0bc0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "eeffec5d-e791-48ad-99ad-8aba1a7ab819", + "x-ms-client-request-id": "be4f1cde19259e1acf7fbf9ed73b0bc0", + "x-ms-correlation-request-id": "8adcab44-b7ff-42bd-a0fd-382bdde85e3e", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "df696b61-ddee-422b-aea4-f74b2e42e865", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072610Z:8adcab44-b7ff-42bd-a0fd-382bdde85e3e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e141fa70e01a275c00748a0d3d490b3d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c234f994-6417-4309-bac7-2d2df77093b3", + "x-ms-client-request-id": "e141fa70e01a275c00748a0d3d490b3d", + "x-ms-correlation-request-id": "0ca4e264-9a4f-4d8c-bd5e-4c5da484b541", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "0f8cb92c-df7a-4ba0-85f4-740e509ee901", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072612Z:0ca4e264-9a4f-4d8c-bd5e-4c5da484b541" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "883e20ed040740dca5da20820e03c90d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "73245f82-0974-4472-a83e-e03ab3d55903", + "x-ms-client-request-id": "883e20ed040740dca5da20820e03c90d", + "x-ms-correlation-request-id": "0d089832-347f-496e-aa75-0ef3bea52eee", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "e903b2bf-0d87-4fb3-91be-f4284111daac", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072613Z:0d089832-347f-496e-aa75-0ef3bea52eee" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "509d13e9152bfe26bf27bdb18f0d6185", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "bad9bed4-7814-44ad-8074-2ae2d811d02f", + "x-ms-client-request-id": "509d13e9152bfe26bf27bdb18f0d6185", + "x-ms-correlation-request-id": "0ce014f7-0ec5-449d-8e48-c2c9d708d86d", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "72e4314e-a4a5-4e77-88e3-0e55eecf0883", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072614Z:0ce014f7-0ec5-449d-8e48-c2c9d708d86d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b6b1827482fc6bb81d003c3fbfda19fd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1b678a73-8568-4322-870e-57548f0ac15e", + "x-ms-client-request-id": "b6b1827482fc6bb81d003c3fbfda19fd", + "x-ms-correlation-request-id": "f65eeabc-8cf3-47fe-9609-d1f4b9d1a337", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "d7c0c1e3-b09c-4847-aa5f-ab065e64cf1d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072616Z:f65eeabc-8cf3-47fe-9609-d1f4b9d1a337" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "29247cabbaacd811fa40c8df462bb097", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "58305515-b3d2-42c6-875c-1d0d21705bd7", + "x-ms-client-request-id": "29247cabbaacd811fa40c8df462bb097", + "x-ms-correlation-request-id": "09d4aec9-ac1c-4106-847a-be057d0f8861", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "a7594ac9-bbf4-4492-8468-07aae0884ff1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072617Z:09d4aec9-ac1c-4106-847a-be057d0f8861" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8c0d9a79125166105a31322bd8e63fe5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ed2881a9-dab3-4704-8472-f64f776ce281", + "x-ms-client-request-id": "8c0d9a79125166105a31322bd8e63fe5", + "x-ms-correlation-request-id": "91415ec0-5d26-44d3-a670-27de3978b730", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "25b49d82-f337-4a38-8248-42638693e51e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072618Z:91415ec0-5d26-44d3-a670-27de3978b730" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1205bf0e37e8bad870d9bbbcb9d824f2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "a71edaf6-007c-4397-9488-281dd002425e", + "x-ms-client-request-id": "1205bf0e37e8bad870d9bbbcb9d824f2", + "x-ms-correlation-request-id": "70922644-de7b-4a00-8c6b-a26b27895469", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "f1806ac3-49e8-44ea-8c5c-0c89df1d1d1d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072619Z:70922644-de7b-4a00-8c6b-a26b27895469" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "24c6a5508ccc98ab6cbdcf7b87e6ff13", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "896d7274-3bf5-4f85-a56f-7137def5114c", + "x-ms-client-request-id": "24c6a5508ccc98ab6cbdcf7b87e6ff13", + "x-ms-correlation-request-id": "9d0e3476-81f1-4985-b034-c543190e8c07", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "b4d21613-0bd2-49c2-bf0e-83d03992eb60", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072621Z:9d0e3476-81f1-4985-b034-c543190e8c07" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "86d1e2019d2541aec1531b785654ac82", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d666c330-abfe-404a-985e-5eb864f2f90c", + "x-ms-client-request-id": "86d1e2019d2541aec1531b785654ac82", + "x-ms-correlation-request-id": "13c7f0fc-400f-4daa-b2ff-5ad909affe5a", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "b75238d0-0b21-445e-ab79-33e956e940de", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072622Z:13c7f0fc-400f-4daa-b2ff-5ad909affe5a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "33da400c1a1f8119146da62b685d338a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "52dc54ef-83fe-42a5-ad1b-37f14770d8fb", + "x-ms-client-request-id": "33da400c1a1f8119146da62b685d338a", + "x-ms-correlation-request-id": "b8a9b81e-cef4-413d-a3db-27a6a5d58fbe", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "69a1771d-8dd0-432a-a9d7-04adbeb6c9e0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072623Z:b8a9b81e-cef4-413d-a3db-27a6a5d58fbe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d6bba8d99e06b2ccf684627871334118", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a079dcb5-01c4-41a3-aaeb-76c33403ae46", + "x-ms-client-request-id": "d6bba8d99e06b2ccf684627871334118", + "x-ms-correlation-request-id": "0b32d9de-7911-45a8-a25d-b90914bbe6f5", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "760b5b1d-7fb6-4bea-bd33-da8d5485bdcc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072625Z:0b32d9de-7911-45a8-a25d-b90914bbe6f5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "466e4d11cc0be6f3c95072b8f783d964", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4f46db0d-a600-4923-a48d-a02555706e1f", + "x-ms-client-request-id": "466e4d11cc0be6f3c95072b8f783d964", + "x-ms-correlation-request-id": "677dc309-a15e-417a-a292-6d219e1e3c9d", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "3eff99dd-bd96-4c2f-bbbf-02198de62604", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072626Z:677dc309-a15e-417a-a292-6d219e1e3c9d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ae9e9020d5986e7b73283d9bb7a010e0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "9d895990-8162-43d7-955d-440b65772bbc", + "x-ms-client-request-id": "ae9e9020d5986e7b73283d9bb7a010e0", + "x-ms-correlation-request-id": "d96a4aa8-1bff-4d7f-8669-d929de854fb8", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "50a941ed-2be9-4ae3-8c51-00529b340a4c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072627Z:d96a4aa8-1bff-4d7f-8669-d929de854fb8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1a1a8e2becee0d7fb4d40db62b14bb72", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "8eb6c609-2b2a-4894-9293-932e4f69f9cf", + "x-ms-client-request-id": "1a1a8e2becee0d7fb4d40db62b14bb72", + "x-ms-correlation-request-id": "2af62343-8d8e-4eed-8bf9-926930141240", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "80570ab3-b13d-4d02-b333-3cf6fc06eee6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072628Z:2af62343-8d8e-4eed-8bf9-926930141240" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e058feab92943b7fd200d3e38e582f28", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "c66a6957-0a7c-43e6-a2c2-a09c2af20304", + "x-ms-client-request-id": "e058feab92943b7fd200d3e38e582f28", + "x-ms-correlation-request-id": "e7648f85-aa4c-400d-ae5a-3035f137b207", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "e6404b9f-1db2-4129-abd2-2a590cb52a5a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072630Z:e7648f85-aa4c-400d-ae5a-3035f137b207" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "698c9140bf6933751191fac3c8c4425f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "48402acc-8155-4f71-8cb3-e45ca9d204e9", + "x-ms-client-request-id": "698c9140bf6933751191fac3c8c4425f", + "x-ms-correlation-request-id": "579a310b-53b8-4a6f-80a3-f582b0f1f75f", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "6e86a497-9aa6-454b-b89b-cb04371e3271", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072631Z:579a310b-53b8-4a6f-80a3-f582b0f1f75f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b8f0ca6d2f47994c0ede48ee199c7e5b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "213f4c17-9ea9-4002-bdce-47e3a87c7a38", + "x-ms-client-request-id": "b8f0ca6d2f47994c0ede48ee199c7e5b", + "x-ms-correlation-request-id": "fea7e781-23cc-47a2-a59e-e5b40cb1d7d4", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "99c6277d-7158-45db-8346-d1c6707a7842", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072632Z:fea7e781-23cc-47a2-a59e-e5b40cb1d7d4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9976e4a55188eb098925cf0397bc730d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "05a203cc-e64a-404e-948f-5f12bc618eec", + "x-ms-client-request-id": "9976e4a55188eb098925cf0397bc730d", + "x-ms-correlation-request-id": "dc294eef-0472-4b0e-8906-540ff7eb1115", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "46f32431-d49a-4019-a72c-8e2725c018e5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072634Z:dc294eef-0472-4b0e-8906-540ff7eb1115" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c47574be766810e145f25a8a76871a74", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "be1877f5-21b9-4ce7-9ef8-0ecfad062136", + "x-ms-client-request-id": "c47574be766810e145f25a8a76871a74", + "x-ms-correlation-request-id": "badd9cfa-67af-4ec2-800a-9ce3486163a5", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "949bd14d-5daf-4371-aeeb-56931788c01c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072635Z:badd9cfa-67af-4ec2-800a-9ce3486163a5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e31e9f12a84e1bd6c0042f2260480152", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "85dfb3c3-fe30-4c97-bf89-7a22f3c6ca74", + "x-ms-client-request-id": "e31e9f12a84e1bd6c0042f2260480152", + "x-ms-correlation-request-id": "a53989ac-bc62-4e8f-bc44-e1fe196bb4f7", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "21c412b0-f186-4908-b4aa-7aaac5655274", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072636Z:a53989ac-bc62-4e8f-bc44-e1fe196bb4f7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a5303b6bb9262ff203655395f67f7501", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "6391b329-98e0-4dd0-99d3-7fb8386f0438", + "x-ms-client-request-id": "a5303b6bb9262ff203655395f67f7501", + "x-ms-correlation-request-id": "acbe0fd7-5ea1-41e1-9c12-94de9965c64f", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "17202d3c-8eeb-4d78-926e-7cfd26340340", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072637Z:acbe0fd7-5ea1-41e1-9c12-94de9965c64f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f8f05a0a909d15bf9d5a046446beaffc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "ad0d0abc-5c3e-49e1-b765-aa2845a304b2", + "x-ms-client-request-id": "f8f05a0a909d15bf9d5a046446beaffc", + "x-ms-correlation-request-id": "b2888c27-63a4-4674-87d6-27f84e24d180", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "d0e54c5b-2d29-4bf6-98e1-0881cdeee36c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072639Z:b2888c27-63a4-4674-87d6-27f84e24d180" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3a1e08f17557584eadefdfe855412441", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "d8e69c0f-2a9a-4d70-a8c7-aba442a053d1", + "x-ms-client-request-id": "3a1e08f17557584eadefdfe855412441", + "x-ms-correlation-request-id": "f86b7524-dac7-436e-b8e3-17cea36a2424", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "c0635376-9184-44f2-a2b3-b081294f3bdd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072640Z:f86b7524-dac7-436e-b8e3-17cea36a2424" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "06172e8e0858dbb47c1a07ccb58de845", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "3cd7b873-f57b-4f7a-9b9b-ca679e6d8158", + "x-ms-client-request-id": "06172e8e0858dbb47c1a07ccb58de845", + "x-ms-correlation-request-id": "a0e36286-3547-45e3-9582-eec6404ceea3", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "a22ec112-78da-40b7-9707-741d35261778", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072641Z:a0e36286-3547-45e3-9582-eec6404ceea3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eea357b53a6095aa0c974baeb0d7c05c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ef18d4f2-dc98-4627-a84f-77c36c06f7c3", + "x-ms-client-request-id": "eea357b53a6095aa0c974baeb0d7c05c", + "x-ms-correlation-request-id": "7977cd50-36cb-4f4c-8c04-4c2e31851068", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "8c1a350a-9bf9-4c13-8da4-ef40495c506d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072643Z:7977cd50-36cb-4f4c-8c04-4c2e31851068" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "18d6c235a9a6e8a45443be3c6d81a21f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c6c7905d-ed69-4576-8138-e2f9012a8d1a", + "x-ms-client-request-id": "18d6c235a9a6e8a45443be3c6d81a21f", + "x-ms-correlation-request-id": "c1ebf109-3513-4c60-94d7-41921f8d755d", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "b458b9fd-ff68-4a3e-aab7-ef0393636cce", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072644Z:c1ebf109-3513-4c60-94d7-41921f8d755d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fd329906369d53e18382fac0bd052aa4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "91ae94c6-92e7-461e-aba7-59bfd64a9a72", + "x-ms-client-request-id": "fd329906369d53e18382fac0bd052aa4", + "x-ms-correlation-request-id": "088957e2-c60c-40ea-a6f4-f8eaf66c7027", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "aa26cecc-48cf-4840-85be-d9f6bd7eb25f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072645Z:088957e2-c60c-40ea-a6f4-f8eaf66c7027" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f396ab5ad0b60c9eb2bb991c7c6d278a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e82721eb-f9d7-4e98-88e0-69eff5d6fb17", + "x-ms-client-request-id": "f396ab5ad0b60c9eb2bb991c7c6d278a", + "x-ms-correlation-request-id": "407c5d48-fad3-433a-822e-6494046a0275", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "400870e3-f57a-4775-8f9f-f0e6b6770c3b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072647Z:407c5d48-fad3-433a-822e-6494046a0275" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "17a82bf5c2a4febfe0839424afe42b4f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9af6cfd5-31a1-42b6-8468-96fad7f39155", + "x-ms-client-request-id": "17a82bf5c2a4febfe0839424afe42b4f", + "x-ms-correlation-request-id": "f33994f7-ada2-4e2d-a9f6-c681e04b2da1", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "b6dfafad-bf0e-47f9-b8ed-b27e78557a7e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072648Z:f33994f7-ada2-4e2d-a9f6-c681e04b2da1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c2e11918afea3668fb254be19dc4d715", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "69ff5325-19dc-4fe4-88ed-11a5b155c2d7", + "x-ms-client-request-id": "c2e11918afea3668fb254be19dc4d715", + "x-ms-correlation-request-id": "a3b4b17c-1f85-4fea-a12f-e31f460e2345", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "de9a4a02-65bd-4733-9b67-6dc42e7917f3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072649Z:a3b4b17c-1f85-4fea-a12f-e31f460e2345" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "91cb705a135d9800ec9712333b795ccd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "5187f90d-15c6-40aa-b7ad-1da70c430aab", + "x-ms-client-request-id": "91cb705a135d9800ec9712333b795ccd", + "x-ms-correlation-request-id": "43944f63-99c1-4b4a-b1ca-e4e9d98da361", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "5bce33aa-946e-4c5a-8588-6bd98f34635a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072650Z:43944f63-99c1-4b4a-b1ca-e4e9d98da361" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "62044a8f658c459fc3711b7e76dd611c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "420ba2bd-3d2f-48b7-96a0-16d0bdeb9d7c", + "x-ms-client-request-id": "62044a8f658c459fc3711b7e76dd611c", + "x-ms-correlation-request-id": "be351d0d-b755-46f5-ae4b-7c39a83e227b", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "fa80a1a8-aff5-4d93-9bd5-3cd8130c6a3a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072652Z:be351d0d-b755-46f5-ae4b-7c39a83e227b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3fca7eac9a1905f11948d6539c35fa81", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0957c74f-44b6-4f66-a7fa-758570dff57e", + "x-ms-client-request-id": "3fca7eac9a1905f11948d6539c35fa81", + "x-ms-correlation-request-id": "fea6df0f-91c4-49a9-b2d7-32e6f5854243", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "34ef3471-790a-4a09-8921-ebec217fe5a1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072653Z:fea6df0f-91c4-49a9-b2d7-32e6f5854243" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "52527dc974c0f489d085cdebf781220e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "35417506-1991-40c1-8f57-22a22335453f", + "x-ms-client-request-id": "52527dc974c0f489d085cdebf781220e", + "x-ms-correlation-request-id": "e87ddda6-bce8-481e-af1b-e78badc70330", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "ea92f7e7-4abf-48a1-a9a6-0e03ec8158e2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072654Z:e87ddda6-bce8-481e-af1b-e78badc70330" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bd87f6351daff5b458ff48438f4ca88d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0de68366-db31-48e7-8669-4829b45012f9", + "x-ms-client-request-id": "bd87f6351daff5b458ff48438f4ca88d", + "x-ms-correlation-request-id": "83bbfbfb-f9d9-408b-acfe-c2ff213b4cf0", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "d745a3e6-f5fa-4cbc-9faf-f8b30b3b9b14", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072655Z:83bbfbfb-f9d9-408b-acfe-c2ff213b4cf0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f8b599770f8a375cf4d56e94cc060d98", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3d14e81b-8243-454e-a6cf-35756562f7ed", + "x-ms-client-request-id": "f8b599770f8a375cf4d56e94cc060d98", + "x-ms-correlation-request-id": "bcc8a70e-42b7-43c1-b5fb-b7c708853e80", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "f4ece7db-0ffa-4091-9d5d-a5fe29a064d9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072657Z:bcc8a70e-42b7-43c1-b5fb-b7c708853e80" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a61dc7263daeabd2c95dfac02b466584", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "37c4c6e2-317f-43a6-bf5e-5cc9e48c5ff5", + "x-ms-client-request-id": "a61dc7263daeabd2c95dfac02b466584", + "x-ms-correlation-request-id": "eafca971-51c6-4cb1-8e32-8f8cd97fb1b6", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "830f2d12-9b14-40b5-87df-8809c4c22460", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072658Z:eafca971-51c6-4cb1-8e32-8f8cd97fb1b6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5d7440dc29cb26839a4fc8d9ae202852", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "bb9569bf-93bb-447a-a6b0-10291bfe05fe", + "x-ms-client-request-id": "5d7440dc29cb26839a4fc8d9ae202852", + "x-ms-correlation-request-id": "01d51beb-f661-48dd-84e4-c44843993a09", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "e6cd78e6-a712-441c-aea3-adb120b1393c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072659Z:01d51beb-f661-48dd-84e4-c44843993a09" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c71cb0f2022f39dfc7092f2d159b0bae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "fe8b820a-02a0-4efd-a0c2-1472530bb0aa", + "x-ms-client-request-id": "c71cb0f2022f39dfc7092f2d159b0bae", + "x-ms-correlation-request-id": "39ef5720-1e5f-40bb-8c31-001d93755fcc", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "f3c84166-d34e-48c7-8e37-40bbe04ce154", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072701Z:39ef5720-1e5f-40bb-8c31-001d93755fcc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8cb7ea70af92fdcd43f60c5e75f9fda8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "bdb36522-662a-4092-b66a-2f136135a3c3", + "x-ms-client-request-id": "8cb7ea70af92fdcd43f60c5e75f9fda8", + "x-ms-correlation-request-id": "3de289bc-95f9-49cb-8da2-0ab43ed60f94", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "4e4707a4-ac98-4785-b215-f79c813b2f0d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072702Z:3de289bc-95f9-49cb-8da2-0ab43ed60f94" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7bcea7349d29d955603a96c1f95611ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "be06b055-d265-4eef-b4e9-f3211b96f335", + "x-ms-client-request-id": "7bcea7349d29d955603a96c1f95611ff", + "x-ms-correlation-request-id": "c537b401-0ae9-411c-9693-1ffc1ff7f786", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "a70d03fe-0bc6-4864-acec-9d34a8882191", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072703Z:c537b401-0ae9-411c-9693-1ffc1ff7f786" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c46919439c6842bfe21f8438f680c4ce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "451d5a47-a8b3-4d97-a67d-bf709b80d1ce", + "x-ms-client-request-id": "c46919439c6842bfe21f8438f680c4ce", + "x-ms-correlation-request-id": "9fa98863-570a-412b-b8c6-d1734cbeabb8", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "61476307-e14c-499a-b6a7-24f293a36ca5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072704Z:9fa98863-570a-412b-b8c6-d1734cbeabb8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6df9860c8fccd28494dd2b57180b04ed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "a5e14b0c-4871-4b8b-882d-6e352948d19a", + "x-ms-client-request-id": "6df9860c8fccd28494dd2b57180b04ed", + "x-ms-correlation-request-id": "802f87d2-4aaf-477d-b15c-a27ddab7ed7d", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "94982c65-e1df-470e-bbb6-65cd663c449f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072706Z:802f87d2-4aaf-477d-b15c-a27ddab7ed7d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5b1b0de5388f9740e78b990a191ce3df", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "06ff16fa-cfec-4850-8b6b-817b9415b7da", + "x-ms-client-request-id": "5b1b0de5388f9740e78b990a191ce3df", + "x-ms-correlation-request-id": "b4c94287-544a-42c8-a811-701a07261617", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "9c385768-10dd-43d1-86c3-109c9693f791", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072707Z:b4c94287-544a-42c8-a811-701a07261617" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "72b5c876a35db33295972f8a70682ad7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "1d529167-f79e-4fbd-be80-8517b9f66bdd", + "x-ms-client-request-id": "72b5c876a35db33295972f8a70682ad7", + "x-ms-correlation-request-id": "737721bb-9235-43c8-a4d2-f29d239c3061", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "383b0745-45ed-4e12-9d0f-54b965020c4a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072708Z:737721bb-9235-43c8-a4d2-f29d239c3061" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e953971b6965d33e46618540f67ab878", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "64dd1436-04c7-45bc-a0cc-ef811ec3a169", + "x-ms-client-request-id": "e953971b6965d33e46618540f67ab878", + "x-ms-correlation-request-id": "44d81cde-c2e5-4ea7-b5c2-5eff038b6998", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "b39ad741-d5c9-44aa-8ec9-433cb62c4b37", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072710Z:44d81cde-c2e5-4ea7-b5c2-5eff038b6998" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "50e14cfa91564190da67c6f809b5277f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e8eea271-b5a7-44df-b955-ba49d53a04ce", + "x-ms-client-request-id": "50e14cfa91564190da67c6f809b5277f", + "x-ms-correlation-request-id": "1125d325-3430-4510-a073-b187bd004598", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "de000fe2-2c24-473f-97db-93c7ffb7c16a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072711Z:1125d325-3430-4510-a073-b187bd004598" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "82efc161fac90c798ae12bfb1ef2bd1a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "9c9841b2-2001-42b2-9391-1b1783fcf738", + "x-ms-client-request-id": "82efc161fac90c798ae12bfb1ef2bd1a", + "x-ms-correlation-request-id": "bc094317-5b1a-4c70-96ab-715c9b0eb7c0", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "41438bb9-d132-4345-b5d0-4a134572a503", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072712Z:bc094317-5b1a-4c70-96ab-715c9b0eb7c0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2390b7dfda86898006110efea345ca91", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b7b11ffa-4937-4692-8527-4abceff47106", + "x-ms-client-request-id": "2390b7dfda86898006110efea345ca91", + "x-ms-correlation-request-id": "236da309-2240-43e8-9aa3-5e4aa12f1bbc", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "e77c6071-d17a-4ebb-8d5e-31216e7ed333", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072713Z:236da309-2240-43e8-9aa3-5e4aa12f1bbc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "35df0639358affafd2d4c574659423e8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "2f026952-065f-462d-a8b6-6e17a5ed0049", + "x-ms-client-request-id": "35df0639358affafd2d4c574659423e8", + "x-ms-correlation-request-id": "e433eac7-4399-4947-a023-00b5bd307a74", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "76fecce5-ea6e-4b42-8a26-0c44b73db23a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072715Z:e433eac7-4399-4947-a023-00b5bd307a74" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5219abaa032487f840657bb7eb7b6944", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "67258a25-8682-42f8-b73f-64a59a9b2c91", + "x-ms-client-request-id": "5219abaa032487f840657bb7eb7b6944", + "x-ms-correlation-request-id": "ee4ac655-354a-4510-8c87-24b35de6dc76", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "78953591-4dd5-42e8-b8c8-00ca9f9d87af", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072716Z:ee4ac655-354a-4510-8c87-24b35de6dc76" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "18c29a178713a98f079151b2140c2372", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "39c1ed3c-559e-46f4-ae1c-f5927af2cd65", + "x-ms-client-request-id": "18c29a178713a98f079151b2140c2372", + "x-ms-correlation-request-id": "1fd4f5e3-29be-4116-8ded-55f1eee89e9b", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "3e800570-9acb-47d4-a783-b3865ac51ba5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072717Z:1fd4f5e3-29be-4116-8ded-55f1eee89e9b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f85326ee782b366d0d57f424baf81456", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "69683c1a-6c5d-4a47-b1b0-063638a23f0e", + "x-ms-client-request-id": "f85326ee782b366d0d57f424baf81456", + "x-ms-correlation-request-id": "a7b7ccef-be66-4942-93e5-a930a907bbea", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "d9c06a3f-3a96-4a06-aa14-3a77aa32219c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072719Z:a7b7ccef-be66-4942-93e5-a930a907bbea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cb5d806b0bd222d51b704a92b2467234", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "77110b39-bce0-4cf4-8556-0774c35a56f5", + "x-ms-client-request-id": "cb5d806b0bd222d51b704a92b2467234", + "x-ms-correlation-request-id": "fd8cfd7f-8bea-4b9c-afe4-c4cb36e10d07", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "f4529707-b666-42ff-bcc0-a884b61c9cb3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072720Z:fd8cfd7f-8bea-4b9c-afe4-c4cb36e10d07" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c4c8084270289f192d8b0abb936aef0f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "964fc094-c0ef-481b-9474-6c141c4600ed", + "x-ms-client-request-id": "c4c8084270289f192d8b0abb936aef0f", + "x-ms-correlation-request-id": "5083ba7f-d5d0-44d6-8e15-e05ffdb2fd09", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "90b13a20-80da-43f8-84e9-99203a3e4dd9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072721Z:5083ba7f-d5d0-44d6-8e15-e05ffdb2fd09" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9446fa7d58aee3a05131dcbb2dda84c7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "d5287799-76c7-417d-a0bc-672b8c04362b", + "x-ms-client-request-id": "9446fa7d58aee3a05131dcbb2dda84c7", + "x-ms-correlation-request-id": "1650a492-91d4-468b-afcd-ccbcc728ee4f", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "8f4a1231-966b-4f67-b7f1-3fe7126cc270", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072722Z:1650a492-91d4-468b-afcd-ccbcc728ee4f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b1e2bfe54f2ffa2e67bd9e4600198eb0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0a9188d3-cb52-4347-b7c3-dc9faa9354ef", + "x-ms-client-request-id": "b1e2bfe54f2ffa2e67bd9e4600198eb0", + "x-ms-correlation-request-id": "07c7331b-e954-46b7-a5ae-abd553e1ce5d", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "c6bab8ae-0d55-4e5b-99d8-7ae441067b1d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072724Z:07c7331b-e954-46b7-a5ae-abd553e1ce5d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b7153a80deffe98568e473f7945d7152", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e3dfc419-5b7f-4ce1-bdfa-def962af37a0", + "x-ms-client-request-id": "b7153a80deffe98568e473f7945d7152", + "x-ms-correlation-request-id": "6238b69e-9282-4ae6-87c3-530dda4593ac", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "c4367d05-ab56-4ec8-86db-9b0f0e89dc12", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072725Z:6238b69e-9282-4ae6-87c3-530dda4593ac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d4d643073e882de0cc4b2cf0ba59e337", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "1c50f16d-ef24-4628-aac6-1c66df31d19b", + "x-ms-client-request-id": "d4d643073e882de0cc4b2cf0ba59e337", + "x-ms-correlation-request-id": "a0c3517e-94d2-42f7-83f0-2bbad7aec1fb", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "8f4d4d3c-abe1-4ae5-be9a-291e0a1351ff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072726Z:a0c3517e-94d2-42f7-83f0-2bbad7aec1fb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f33a2ca2cdc406c739f9484bdc37660a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "428f94c7-1e33-44fc-ad9f-eeb89d1a3bac", + "x-ms-client-request-id": "f33a2ca2cdc406c739f9484bdc37660a", + "x-ms-correlation-request-id": "3c318d9a-0c99-4863-bd6a-0f5b883ecc53", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "3e26d607-d9de-42ec-a4b5-212d79546c63", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072727Z:3c318d9a-0c99-4863-bd6a-0f5b883ecc53" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bd3e4b4cba4342285ae8eab4b1952f0e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "3bf27ce0-2cd0-4ebd-8095-bc4e04a7d086", + "x-ms-client-request-id": "bd3e4b4cba4342285ae8eab4b1952f0e", + "x-ms-correlation-request-id": "70de4404-c5eb-44c9-9409-9ecf517b197c", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "f0b0d539-8530-4a16-a44f-2c58329405bb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072729Z:70de4404-c5eb-44c9-9409-9ecf517b197c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "67543b017e223a8e7ccf9a8ef5945195", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "97224876-1688-48c9-9af6-a39136af3eed", + "x-ms-client-request-id": "67543b017e223a8e7ccf9a8ef5945195", + "x-ms-correlation-request-id": "236ca7ba-1f6d-4779-9732-72c86d71a642", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "83ab85eb-533f-4861-a39f-3145514ee067", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072730Z:236ca7ba-1f6d-4779-9732-72c86d71a642" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6ea422e4261be7f303f899dce21254a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e620b70a-e8a8-4b78-bb41-bdab4a129158", + "x-ms-client-request-id": "6ea422e4261be7f303f899dce21254a4", + "x-ms-correlation-request-id": "261a757c-cc8b-489a-8693-7d44bd40cb02", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "117cce22-a110-493f-aa35-cd4660f29a50", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072731Z:261a757c-cc8b-489a-8693-7d44bd40cb02" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a04939c9fee2cee7bd03417420994cc5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "024ea565-a0cb-47f5-8e73-100cd4f05a13", + "x-ms-client-request-id": "a04939c9fee2cee7bd03417420994cc5", + "x-ms-correlation-request-id": "52010748-f039-4c84-ab5d-1757f070072d", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "3f12f7fd-c90c-4ee6-8bb2-2555230f86fc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072733Z:52010748-f039-4c84-ab5d-1757f070072d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8fcf5496c1f0dbf3476d632ae4b15869", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "dd8bb3cb-5952-4ff8-9a46-708a69e30c47", + "x-ms-client-request-id": "8fcf5496c1f0dbf3476d632ae4b15869", + "x-ms-correlation-request-id": "c64b065d-1e89-4714-a9b1-db9375717120", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "95864575-e593-4bde-a5af-270a8d948beb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072734Z:c64b065d-1e89-4714-a9b1-db9375717120" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bcc5f57ab14ae6b33ad5b117e57fc66a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0575cb05-cb77-42d9-b981-bfd832bc75b5", + "x-ms-client-request-id": "bcc5f57ab14ae6b33ad5b117e57fc66a", + "x-ms-correlation-request-id": "0c4f1da5-0b1a-430b-8c15-ab37521eeda8", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "61836ad5-5549-4356-a050-1296f70e1ead", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072736Z:0c4f1da5-0b1a-430b-8c15-ab37521eeda8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8d46d3abc54308b3466e58759bbde90b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "18fb61bf-1c2d-47e7-9905-769e8be38f8c", + "x-ms-client-request-id": "8d46d3abc54308b3466e58759bbde90b", + "x-ms-correlation-request-id": "888a72a5-0c1d-4d1d-a07a-6b86afc596a4", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "b766ab6f-7b1b-43bd-9c3e-0e90b4d65502", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072737Z:888a72a5-0c1d-4d1d-a07a-6b86afc596a4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2af9d7ab90d4e57aa1e9541a10dcf5c8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "39fba550-35d7-426e-9d9d-a9d0f6d4bd97", + "x-ms-client-request-id": "2af9d7ab90d4e57aa1e9541a10dcf5c8", + "x-ms-correlation-request-id": "bb775a0a-bf95-4e78-851a-5e9eb42f38ec", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "a0c6af20-0cc0-4da5-a621-f1611ca6c829", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072738Z:bb775a0a-bf95-4e78-851a-5e9eb42f38ec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "117ef9a6ca6bb52541bc75dc583d4a7d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "000714bd-1a3f-4385-a73d-923522a12423", + "x-ms-client-request-id": "117ef9a6ca6bb52541bc75dc583d4a7d", + "x-ms-correlation-request-id": "bc57e92d-3e91-40b3-8531-a6fb1cb12a1f", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-request-id": "4c96f188-d527-40be-b644-847e8cb1ff98", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072740Z:bc57e92d-3e91-40b3-8531-a6fb1cb12a1f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0d6ba5ec9b851a955961eb5a7099f86a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "638f3cc5-3e43-4bce-8ba3-8b2620baa805", + "x-ms-client-request-id": "0d6ba5ec9b851a955961eb5a7099f86a", + "x-ms-correlation-request-id": "eb3427b2-3a02-4be2-af92-3b53cd80fcf0", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "282eb424-486f-442e-8caa-527b5a246702", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072741Z:eb3427b2-3a02-4be2-af92-3b53cd80fcf0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a1ce8f78d83ee1a0b244e9181a9e8c64", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "5800e52f-9737-4019-9dc9-755c6d582cd7", + "x-ms-client-request-id": "a1ce8f78d83ee1a0b244e9181a9e8c64", + "x-ms-correlation-request-id": "29f534f6-d922-469a-8a01-5f7e4091d67f", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "caea6fc0-93bf-4280-88c6-a0414ff5f4e5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072743Z:29f534f6-d922-469a-8a01-5f7e4091d67f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6a2ed79ee8700a436364b80adecb44a8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "29cf138a-6e38-471a-960c-a036e85a3e40", + "x-ms-client-request-id": "6a2ed79ee8700a436364b80adecb44a8", + "x-ms-correlation-request-id": "28232dcf-f060-4e29-aad9-fee72dc6d285", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "d61fc8e3-1076-423c-bac5-33406243bf10", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072744Z:28232dcf-f060-4e29-aad9-fee72dc6d285" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c9630bc3a96f143e048a5a40b27dffba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "ed2c7d71-7c89-4483-8d20-6bb258ea9e7b", + "x-ms-client-request-id": "c9630bc3a96f143e048a5a40b27dffba", + "x-ms-correlation-request-id": "519f482d-0af7-4f3d-82b3-a83d62878263", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "74ad42f9-1262-44d3-a07f-6d666f22915e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072745Z:519f482d-0af7-4f3d-82b3-a83d62878263" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "98bb87d58d6a8ff94cc43dda209502e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "2bc54ea4-017a-47a3-b57d-901083d704ae", + "x-ms-client-request-id": "98bb87d58d6a8ff94cc43dda209502e7", + "x-ms-correlation-request-id": "58dc4ad4-0636-4dd1-a4a2-1aa15e80a74f", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "2e940ee1-201b-4dbe-879b-b9ba0080f180", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072747Z:58dc4ad4-0636-4dd1-a4a2-1aa15e80a74f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0e544000c23bf4f4991966e68e0257e6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "2a4bdf33-b29b-44ec-97a3-2e6c323f3285", + "x-ms-client-request-id": "0e544000c23bf4f4991966e68e0257e6", + "x-ms-correlation-request-id": "b132041f-d901-49ba-8fb4-ef3434a88715", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "03e45874-629a-4c3b-bced-c67a6843b8ff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072748Z:b132041f-d901-49ba-8fb4-ef3434a88715" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5735fd64ab0f353d12d37caa6c64f46e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "583ed33f-bbcc-4666-82c4-e2d4af760d8d", + "x-ms-client-request-id": "5735fd64ab0f353d12d37caa6c64f46e", + "x-ms-correlation-request-id": "3ae75027-c8bf-4c11-94a6-80935d4ae9f1", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "bcadc5d9-915d-4126-b7b2-4b89022b2424", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072749Z:3ae75027-c8bf-4c11-94a6-80935d4ae9f1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "713f7387f128127f92c6ff5027130149", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "163f4440-57e7-40c3-a2a3-2de49d8542b1", + "x-ms-client-request-id": "713f7387f128127f92c6ff5027130149", + "x-ms-correlation-request-id": "8b27d0c2-f50c-484c-a881-c544c6776cf9", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "4f4d7b6e-9c00-4508-8889-aedb29fafdb9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072750Z:8b27d0c2-f50c-484c-a881-c544c6776cf9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2276566cab6055d7031efc67454a8835", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e791940a-8e6d-4710-ae00-b8c15a767ab1", + "x-ms-client-request-id": "2276566cab6055d7031efc67454a8835", + "x-ms-correlation-request-id": "de368586-2851-4438-9f1b-ea5787fd2608", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "ac495076-05ef-47cd-9b72-fed44fee0f71", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072752Z:de368586-2851-4438-9f1b-ea5787fd2608" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1a5ef725e5c273bd7e23c448abec0dff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "aa334b73-224b-4622-aace-63b630a5807c", + "x-ms-client-request-id": "1a5ef725e5c273bd7e23c448abec0dff", + "x-ms-correlation-request-id": "3c8562a1-d0dc-4a36-b423-c36caa8d9fa4", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "af625f81-3066-40c5-9041-23775e5d4c00", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072753Z:3c8562a1-d0dc-4a36-b423-c36caa8d9fa4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "153e33d1d2eddc0e9bea6e09f417cc48", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "43e15e38-28fd-40f1-bb44-cc1bed048d47", + "x-ms-client-request-id": "153e33d1d2eddc0e9bea6e09f417cc48", + "x-ms-correlation-request-id": "dc662b05-3589-4917-a2a8-6c5e06315ac4", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "641547c1-f59c-495c-9144-edbce57207d1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072754Z:dc662b05-3589-4917-a2a8-6c5e06315ac4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "302bca3ee6b486869803a33de68fa916", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "d00b7f46-4e28-4b29-bc14-c3b98741a61a", + "x-ms-client-request-id": "302bca3ee6b486869803a33de68fa916", + "x-ms-correlation-request-id": "e3b656b1-5e37-495e-969b-d2f804ef5805", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "d6376151-eb7a-4068-a0bc-fc5cc43f9196", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072756Z:e3b656b1-5e37-495e-969b-d2f804ef5805" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1296fd11730c5347e8827fd877b47e67", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "09fee1ec-c987-461a-af81-bdc594c425c6", + "x-ms-client-request-id": "1296fd11730c5347e8827fd877b47e67", + "x-ms-correlation-request-id": "0f8807da-7984-42d8-bad3-ec2631452774", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "7622fa9b-aac8-427e-bf46-e975c4fe76a4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072757Z:0f8807da-7984-42d8-bad3-ec2631452774" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e00a7c56ddc1ea4aacb77cea2ed0f60c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "bdabd4b4-9036-46e3-89ed-b32158562df1", + "x-ms-client-request-id": "e00a7c56ddc1ea4aacb77cea2ed0f60c", + "x-ms-correlation-request-id": "24eeb994-65be-459e-bdeb-13563189b6bb", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "b4e48b1c-7f62-42b5-a3ac-fcf2e5da4917", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072758Z:24eeb994-65be-459e-bdeb-13563189b6bb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f6f85741b980ca3c83d7483267ae0fe4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "4d80286e-754c-47db-a216-a5c26f054ec7", + "x-ms-client-request-id": "f6f85741b980ca3c83d7483267ae0fe4", + "x-ms-correlation-request-id": "dda7bc27-2f77-4053-a05d-33a6b0bea7c1", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "961ff877-06b5-40e2-b0ce-571f01a7bb7a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072759Z:dda7bc27-2f77-4053-a05d-33a6b0bea7c1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6ae63c84c8843355b3ab6554f75d2517", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "36eb3d81-88e7-4f42-b6f8-6936f9d7a685", + "x-ms-client-request-id": "6ae63c84c8843355b3ab6554f75d2517", + "x-ms-correlation-request-id": "a1564bbf-0025-4977-8b4a-e6e9b2aa13a8", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "4a589942-6bb2-49a5-9ffb-4d65f888046f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072801Z:a1564bbf-0025-4977-8b4a-e6e9b2aa13a8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1f96728b88bb9ce6403f5de9951782fe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "581a4b68-d8eb-4fad-8d24-791c347fd8b5", + "x-ms-client-request-id": "1f96728b88bb9ce6403f5de9951782fe", + "x-ms-correlation-request-id": "3c304987-d5a2-496c-a71c-b1d1a884d68a", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "8c0c0675-7016-40fd-9244-16ffeb6701ae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072802Z:3c304987-d5a2-496c-a71c-b1d1a884d68a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f16597a78be9788802c443d553e7d326", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "d1d8c033-9d18-42c0-a655-18ec7a1bff95", + "x-ms-client-request-id": "f16597a78be9788802c443d553e7d326", + "x-ms-correlation-request-id": "f18de6ed-c500-4d02-bddc-92f5000a69f1", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "795906f9-3653-4b33-8aa7-75e65aa7b3f7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072803Z:f18de6ed-c500-4d02-bddc-92f5000a69f1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f5a630b2ef17fc29564a2a446b6b9e9b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "018fc6f3-9953-49d6-8729-ab2908913e2d", + "x-ms-client-request-id": "f5a630b2ef17fc29564a2a446b6b9e9b", + "x-ms-correlation-request-id": "eb72c306-25b5-4ae4-b8b2-b3a21cb3db99", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "8a92956a-8198-4ccf-8fc5-9e851513f0bf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072805Z:eb72c306-25b5-4ae4-b8b2-b3a21cb3db99" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5fac672833f7002dea1e1df644104858", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "08a24cc5-7d96-48ed-a362-1c45016a0964", + "x-ms-client-request-id": "5fac672833f7002dea1e1df644104858", + "x-ms-correlation-request-id": "99398896-79ab-4b04-847e-5389b70360bb", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "a1b0be64-74e5-46c8-a0b6-c107353a91f4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072806Z:99398896-79ab-4b04-847e-5389b70360bb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6437376c8d71b8e66d699b9f61430d96", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "a758e89f-93ee-440e-b6ae-ec49e28de247", + "x-ms-client-request-id": "6437376c8d71b8e66d699b9f61430d96", + "x-ms-correlation-request-id": "39d69ada-295c-43c2-a99b-c44b106312be", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "a0ac9aeb-23b4-45b4-9ddd-0294c80db191", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072807Z:39d69ada-295c-43c2-a99b-c44b106312be" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ebaca726733a7e2e02a60bf9d233b745", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "42af1ac5-9ad9-496f-858c-b2ec93197ca6", + "x-ms-client-request-id": "ebaca726733a7e2e02a60bf9d233b745", + "x-ms-correlation-request-id": "7947e6d8-0b98-41db-b43c-638cda719719", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "4487f485-6724-4ff8-b2cb-90e5df7ed165", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072809Z:7947e6d8-0b98-41db-b43c-638cda719719" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "33d8d1013a349b2a81f4f28e988e9ea7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "2f7f1363-6a14-4a9c-a44d-9e02bcfda8bf", + "x-ms-client-request-id": "33d8d1013a349b2a81f4f28e988e9ea7", + "x-ms-correlation-request-id": "eb68abd4-30e1-4172-b330-8a55982a9ea7", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "6142a66b-bd5f-47b4-b089-98aae5f956bc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072810Z:eb68abd4-30e1-4172-b330-8a55982a9ea7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9dd086115c64f81e08b962ca82ede63a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "1ce7e4cb-d060-4ca4-a63a-c82bbc3c9b4a", + "x-ms-client-request-id": "9dd086115c64f81e08b962ca82ede63a", + "x-ms-correlation-request-id": "ae341e59-ad3e-49b4-9485-a182916aaba6", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "7591dcda-f4d5-4dad-8f41-73f81babde3c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072811Z:ae341e59-ad3e-49b4-9485-a182916aaba6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "909e56b1d96aec627d106a4581a0e573", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "1fcca3e4-cd32-43da-aa9b-2295043e0d83", + "x-ms-client-request-id": "909e56b1d96aec627d106a4581a0e573", + "x-ms-correlation-request-id": "172b98b8-6e43-422c-905d-a358e29bc848", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "a35b92a9-602b-4806-8524-a06307e7490c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072813Z:172b98b8-6e43-422c-905d-a358e29bc848" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4be764081a63a4e0b2df2b7ad75f1993", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "a9248163-3da3-4889-9aba-048f1e907bf5", + "x-ms-client-request-id": "4be764081a63a4e0b2df2b7ad75f1993", + "x-ms-correlation-request-id": "9df0f76b-69e5-4207-b70a-5f11cceaa0cc", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "6ccda6fb-e555-42fb-9418-dfb9fd94ed7f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072814Z:9df0f76b-69e5-4207-b70a-5f11cceaa0cc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "42dcb80e0def373c24e42053f2d97768", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "27340462-ab27-4f75-b3e9-6641e574cb65", + "x-ms-client-request-id": "42dcb80e0def373c24e42053f2d97768", + "x-ms-correlation-request-id": "bad5a0b7-5456-4858-a10b-78461be3639f", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "24f111cf-e726-49c3-a577-61087bac72cc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072815Z:bad5a0b7-5456-4858-a10b-78461be3639f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1ec2eed39a0597d675fade8aaee7141d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:28: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": "a50d3099-9f15-4475-842a-b785fb17c9bc", + "x-ms-client-request-id": "1ec2eed39a0597d675fade8aaee7141d", + "x-ms-correlation-request-id": "eab847d8-04be-45a2-8df2-fcc6a17c3f34", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "c82e1cde-98b6-4d4a-b079-93f9f7990541", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072816Z:eab847d8-04be-45a2-8df2-fcc6a17c3f34" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c937d6f7a3c4fa8427af277efa8db1d9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "3f406cbe-c2e8-4a6b-9e36-dec3a645905f", + "x-ms-client-request-id": "c937d6f7a3c4fa8427af277efa8db1d9", + "x-ms-correlation-request-id": "f74dda1b-5748-401c-93c8-2023710bda91", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "cca61460-3f64-458b-b4b4-75c0308df944", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072818Z:f74dda1b-5748-401c-93c8-2023710bda91" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e8a7c268fb9d738ee144cdf52eb1893c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0fd74a13-6f30-4387-89d8-f40ef791a865", + "x-ms-client-request-id": "e8a7c268fb9d738ee144cdf52eb1893c", + "x-ms-correlation-request-id": "ca8e972d-144c-4b1a-8974-85e7ddc36524", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "3f41cab3-4fa6-42be-a293-406f806cc700", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072819Z:ca8e972d-144c-4b1a-8974-85e7ddc36524" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1b5b02cfaea22fa36ac7f65573579ce7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "ef539f8f-848a-461f-88db-bdd0bed6c4ab", + "x-ms-client-request-id": "1b5b02cfaea22fa36ac7f65573579ce7", + "x-ms-correlation-request-id": "64af6a26-ed9a-4f46-8ceb-1a7d9395628a", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "a0402fa7-655c-4341-baba-dd8ec46a2445", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072820Z:64af6a26-ed9a-4f46-8ceb-1a7d9395628a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eb2205482b3ffc7f48c3e87fd68ecb75", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "25cdef24-994d-4aef-962d-3c1fb2a5f49d", + "x-ms-client-request-id": "eb2205482b3ffc7f48c3e87fd68ecb75", + "x-ms-correlation-request-id": "9375b676-8dab-4a5d-b450-4aa2fdbd09a2", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "929a1ccc-ea4b-4bb1-80c8-586eccde2a19", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072822Z:9375b676-8dab-4a5d-b450-4aa2fdbd09a2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f7afea269631ba361e777ed504380089", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0d0ac174-2426-45a7-8468-90579bfbc419", + "x-ms-client-request-id": "f7afea269631ba361e777ed504380089", + "x-ms-correlation-request-id": "bc6735c5-86c6-4f28-8dc7-73b6f9b4e33d", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "3d40a120-0e76-4cd2-8108-67358cfc1473", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072823Z:bc6735c5-86c6-4f28-8dc7-73b6f9b4e33d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "29ade5a79e8fa4fc825fd3dfc62459dc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "27baa066-327c-48d0-aead-58680731280e", + "x-ms-client-request-id": "29ade5a79e8fa4fc825fd3dfc62459dc", + "x-ms-correlation-request-id": "e4aa8a2d-f833-4c20-a447-f0069db5d146", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "c1cdfed5-1ded-4104-8878-655559e266b8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072824Z:e4aa8a2d-f833-4c20-a447-f0069db5d146" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "882f81fca5a8b1b6ce67ccc7ada9f70f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "26de5b92-19f8-41cc-b039-0e48da94b527", + "x-ms-client-request-id": "882f81fca5a8b1b6ce67ccc7ada9f70f", + "x-ms-correlation-request-id": "d897f6f9-c789-4cdb-acd6-26759d36ae0c", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "73e95fb6-b0b6-41ee-99e9-fd5e15af3cda", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072825Z:d897f6f9-c789-4cdb-acd6-26759d36ae0c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f1d75ec2a2e088e5ed0b74d1c357f4fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "4a5cfee3-7cb9-49da-871f-713de4b6019e", + "x-ms-client-request-id": "f1d75ec2a2e088e5ed0b74d1c357f4fa", + "x-ms-correlation-request-id": "e51223ed-f879-4326-a266-357987ad58f3", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "010ddf7f-6d3a-4a1d-b4f3-c77c4fcaa32b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072827Z:e51223ed-f879-4326-a266-357987ad58f3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "83d9a21e770902e02efb5a28d134f6d8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "1c692197-6403-4490-b094-8919983359c0", + "x-ms-client-request-id": "83d9a21e770902e02efb5a28d134f6d8", + "x-ms-correlation-request-id": "8fd1410b-897d-4b7c-ba35-09beee5195ac", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "c939b48c-8eb5-4b57-a1e9-a472db81f8e3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072829Z:8fd1410b-897d-4b7c-ba35-09beee5195ac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "671cc368684d59fb9ba69a9d30e4ee76", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "a28dfffc-b200-4987-979e-87413fd09d68", + "x-ms-client-request-id": "671cc368684d59fb9ba69a9d30e4ee76", + "x-ms-correlation-request-id": "e5c44d39-af67-41ad-be86-aa84bc375b90", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "a318bcfd-7ddc-41c4-b365-156499cf0a99", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072830Z:e5c44d39-af67-41ad-be86-aa84bc375b90" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0aa9d27373d04a067ed4c2e547bdb6b9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e6ac3d10-1145-45bc-aaa6-e7438899ed68", + "x-ms-client-request-id": "0aa9d27373d04a067ed4c2e547bdb6b9", + "x-ms-correlation-request-id": "b1e2c0e4-0859-43c4-90f8-a12d94245e02", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "3e0f2acc-bf58-4eae-a1a7-85fdd7ded3ca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072831Z:b1e2c0e4-0859-43c4-90f8-a12d94245e02" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "00689b148d3bb6ada77fe862dc42d149", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "35b3191b-4d60-42c9-a069-a9ca1310bcee", + "x-ms-client-request-id": "00689b148d3bb6ada77fe862dc42d149", + "x-ms-correlation-request-id": "ac146d0a-6e6f-4f8d-8e75-599a30966dda", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "7474f47c-ae8a-4b72-9139-59aff3286375", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072832Z:ac146d0a-6e6f-4f8d-8e75-599a30966dda" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ffb4e30ceb8bf408bdd1e878a51512de", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0cf0110f-9ad9-473a-b814-e15e838e8926", + "x-ms-client-request-id": "ffb4e30ceb8bf408bdd1e878a51512de", + "x-ms-correlation-request-id": "633d0863-fa6f-4e05-90db-1cd5818dee7a", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "7af2280c-cd62-4e1b-9ce9-eb3c78b690c1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072834Z:633d0863-fa6f-4e05-90db-1cd5818dee7a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9589e1f0ee7ce63b25f263508ba36e3b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "927f6bcf-ef99-4d97-956a-0f63ec7ab139", + "x-ms-client-request-id": "9589e1f0ee7ce63b25f263508ba36e3b", + "x-ms-correlation-request-id": "1b3d3cc9-3396-4d56-8d26-3c16c81c3641", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "7bead4a7-e7c5-4bac-8f1a-cccde2450e7e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072835Z:1b3d3cc9-3396-4d56-8d26-3c16c81c3641" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "63d87802b708282d92734269a4341091", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "5c16a90d-9e41-43c0-810a-019459a26ddd", + "x-ms-client-request-id": "63d87802b708282d92734269a4341091", + "x-ms-correlation-request-id": "ce514f5c-866d-4079-9bf9-fc398f546767", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "ac666254-4677-4d75-a4dc-7d9021807faa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072836Z:ce514f5c-866d-4079-9bf9-fc398f546767" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fa720a6d3cb91ecda8ceda9888b86919", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "a0ed2854-c458-4338-9970-e91851a7a3e5", + "x-ms-client-request-id": "fa720a6d3cb91ecda8ceda9888b86919", + "x-ms-correlation-request-id": "0e21b77b-b938-4afb-8cbc-df7ea161380f", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "f7735fc6-70d0-4bc7-a21e-72c0e8c7d143", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072838Z:0e21b77b-b938-4afb-8cbc-df7ea161380f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2d75ac63ae3d38d5b4600208abd141f0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "4c1598e2-177e-4260-8b12-f05996ef2f4c", + "x-ms-client-request-id": "2d75ac63ae3d38d5b4600208abd141f0", + "x-ms-correlation-request-id": "0d442d9d-38b4-4d3e-bdd5-6b58dce32a1e", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "5b179b6f-78d9-46d5-8150-d1ccfb116b93", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072839Z:0d442d9d-38b4-4d3e-bdd5-6b58dce32a1e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "81e2d2e27331c582aab9bb3adc94a0da", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "a5cc722c-ea29-470d-9545-05f55f38c407", + "x-ms-client-request-id": "81e2d2e27331c582aab9bb3adc94a0da", + "x-ms-correlation-request-id": "bf58964e-02da-4710-a10e-5773fa3aec1b", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "e21fc355-ae11-4eff-a2a4-3ba7ca2d3be1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072840Z:bf58964e-02da-4710-a10e-5773fa3aec1b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f706290ae2bebf54343946583ac572d6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e39371b5-e238-488a-9812-8c448769c4e2", + "x-ms-client-request-id": "f706290ae2bebf54343946583ac572d6", + "x-ms-correlation-request-id": "13ccbe9b-f063-4e40-96c3-ffb09022f033", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "4cec4718-2520-45f8-ba11-8595466b41e5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072841Z:13ccbe9b-f063-4e40-96c3-ffb09022f033" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b5b6e98ce8d5efe82aaf8383f39a5c1f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e18585b8-a8c5-4e5f-8e21-07f64421f215", + "x-ms-client-request-id": "b5b6e98ce8d5efe82aaf8383f39a5c1f", + "x-ms-correlation-request-id": "9aabd08f-6f76-418c-9e8e-0a4e664eec86", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "7a2a5047-b098-46fd-b2ca-7ef7805b1eeb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072843Z:9aabd08f-6f76-418c-9e8e-0a4e664eec86" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "82fd27c04acbff327e234cf72c298be4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0e788d91-80a4-40b4-ac9e-71c7d3c61922", + "x-ms-client-request-id": "82fd27c04acbff327e234cf72c298be4", + "x-ms-correlation-request-id": "df7ebe9a-8fc9-4a30-ac83-37c1c6c1cd56", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "52e952f5-9717-49d2-81f6-24236023bf0e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072844Z:df7ebe9a-8fc9-4a30-ac83-37c1c6c1cd56" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f3aee547eade21044116cd0e5fd1cb9a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "d12040f2-bfae-4869-bb8d-3e608b2ffaf5", + "x-ms-client-request-id": "f3aee547eade21044116cd0e5fd1cb9a", + "x-ms-correlation-request-id": "422da0c1-113f-4639-bc8b-d84b8e540459", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "7af2486b-cffb-4dbe-900b-c1c11fb447e9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072845Z:422da0c1-113f-4639-bc8b-d84b8e540459" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "139827ddf0c8410bb7b737b29bf0c301", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b6e15ace-a61a-4344-9b9e-92b5c5cf4611", + "x-ms-client-request-id": "139827ddf0c8410bb7b737b29bf0c301", + "x-ms-correlation-request-id": "80257be5-f879-4a46-887e-f242e778e44f", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "3704498d-db5b-41de-b3ae-e23e34c144c0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072847Z:80257be5-f879-4a46-887e-f242e778e44f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0d3c9e2468ebd54123db41b47d239fad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "815e323b-135a-422c-a644-f7eb4f25a8cc", + "x-ms-client-request-id": "0d3c9e2468ebd54123db41b47d239fad", + "x-ms-correlation-request-id": "92126acb-7887-46a7-ac16-237c04fca13d", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "d124105e-7571-4bff-a634-3b5cd0975d7e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072848Z:92126acb-7887-46a7-ac16-237c04fca13d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "051ab2577791561cda6c3b26b2528650", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "d1e6c90a-a338-430a-9f27-e6ba0f015ab4", + "x-ms-client-request-id": "051ab2577791561cda6c3b26b2528650", + "x-ms-correlation-request-id": "80548f1d-283e-4320-99fe-0b90238049a6", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "23f1e6d8-316c-4739-9dc7-cb8dc8236105", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072849Z:80548f1d-283e-4320-99fe-0b90238049a6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c1e9cb53bd9474aee5c2f0ecaf56c494", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "551a23bf-41b0-4285-bd1f-448c4fd2a469", + "x-ms-client-request-id": "c1e9cb53bd9474aee5c2f0ecaf56c494", + "x-ms-correlation-request-id": "1dab987b-2db2-4d23-a220-64c84f6de319", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "1e600d48-a697-4f9b-b93a-f434051c7f61", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072850Z:1dab987b-2db2-4d23-a220-64c84f6de319" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e95a8a18bdd6ac7081e5337f2c1a23d0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "8df7c644-0429-43be-b223-e3d1fccbcd35", + "x-ms-client-request-id": "e95a8a18bdd6ac7081e5337f2c1a23d0", + "x-ms-correlation-request-id": "ae61f2f1-96c4-4eb5-9f19-b7ad9b8557bb", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "35f0da8f-a56c-4041-8ce7-e4bb46f88aaa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072852Z:ae61f2f1-96c4-4eb5-9f19-b7ad9b8557bb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b160f055dd39991803a51fce8730a683", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "79b22499-54ac-4968-8dde-504c840de1e8", + "x-ms-client-request-id": "b160f055dd39991803a51fce8730a683", + "x-ms-correlation-request-id": "0083495d-6121-425d-b244-d57fbe4c168d", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "3ea5b83c-b5b5-4660-91a6-ab452ab5994b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072853Z:0083495d-6121-425d-b244-d57fbe4c168d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "280ea7a79cf796795b3c3fae8a2f47cb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0ae5ce5a-acf7-4844-a326-3d0d9545c003", + "x-ms-client-request-id": "280ea7a79cf796795b3c3fae8a2f47cb", + "x-ms-correlation-request-id": "5ff2c514-a51b-42e4-924a-003f32fced90", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "cc7e4ea6-cfab-4ee6-8839-b71e3ef1d1de", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072854Z:5ff2c514-a51b-42e4-924a-003f32fced90" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bf961f9f13f53a5a72c0e6309ea12551", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "97da784e-a1ca-4d64-831d-95aff4c002a5", + "x-ms-client-request-id": "bf961f9f13f53a5a72c0e6309ea12551", + "x-ms-correlation-request-id": "138b9267-0147-41c6-8335-d99a463e2a2f", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "dacef440-db2c-465b-9e6d-904b05808537", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072855Z:138b9267-0147-41c6-8335-d99a463e2a2f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "85d7b03ffa0cb9d876ca55fc9e690fd4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e7261ff1-4e34-436c-931c-3811a1ee084e", + "x-ms-client-request-id": "85d7b03ffa0cb9d876ca55fc9e690fd4", + "x-ms-correlation-request-id": "15abf42d-0a01-44c9-99a8-02566d887644", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-request-id": "a9ebd884-8c47-4a49-b854-633e6124e787", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072857Z:15abf42d-0a01-44c9-99a8-02566d887644" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "682f545de799948d4dd3b636b548f7ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "f8e70fb3-c4ca-44e6-9018-801af0071f45", + "x-ms-client-request-id": "682f545de799948d4dd3b636b548f7ba", + "x-ms-correlation-request-id": "a13d6ee3-da00-4628-8f66-fe34451b7911", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "bd0deb76-5a01-44fa-ace0-72b3c3943d5f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072858Z:a13d6ee3-da00-4628-8f66-fe34451b7911" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "da6fee17c257a4be46dd482bbd5e9c09", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b6842511-bd31-4d26-9ec1-ee19bd2b862c", + "x-ms-client-request-id": "da6fee17c257a4be46dd482bbd5e9c09", + "x-ms-correlation-request-id": "81b34fe0-3890-4064-8c2e-c9d977b50760", + "x-ms-ratelimit-remaining-subscription-reads": "11788", + "x-ms-request-id": "40d16afb-f9eb-40d4-8434-fb503d7dc8a2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072859Z:81b34fe0-3890-4064-8c2e-c9d977b50760" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "49d311b1bc7157b72243383944a1032d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "59e303f6-059b-416e-b79a-11448b1b8ba2", + "x-ms-client-request-id": "49d311b1bc7157b72243383944a1032d", + "x-ms-correlation-request-id": "067df787-bbea-4fed-ac6d-71b35e80da0e", + "x-ms-ratelimit-remaining-subscription-reads": "11787", + "x-ms-request-id": "7def2c35-0c38-46f3-802d-1d007c88ef0d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072901Z:067df787-bbea-4fed-ac6d-71b35e80da0e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "afe49bd235f99a7d968b21bc9f62d7ef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "f39be402-49d4-4614-9f2e-27a17cbfc0d9", + "x-ms-client-request-id": "afe49bd235f99a7d968b21bc9f62d7ef", + "x-ms-correlation-request-id": "0a7c97a5-e801-4835-926b-0f26126d8f1c", + "x-ms-ratelimit-remaining-subscription-reads": "11786", + "x-ms-request-id": "17bc68b6-191d-4ecb-ab81-93774294ecb3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072902Z:0a7c97a5-e801-4835-926b-0f26126d8f1c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a485ac37ad755a483617b7148a845fa4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "1ce95403-94a1-4e2d-bf51-49f1c71e0160", + "x-ms-client-request-id": "a485ac37ad755a483617b7148a845fa4", + "x-ms-correlation-request-id": "54786902-a6a4-42b2-a4dd-68767baa19b5", + "x-ms-ratelimit-remaining-subscription-reads": "11785", + "x-ms-request-id": "42b859e3-4850-41c8-8e62-8e2a0e12a67c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072903Z:54786902-a6a4-42b2-a4dd-68767baa19b5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "21581ad9ec797b0f9438b3e69bfbb8bf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b97d176a-d1d6-4327-8624-a2a710750945", + "x-ms-client-request-id": "21581ad9ec797b0f9438b3e69bfbb8bf", + "x-ms-correlation-request-id": "15b323e8-88e1-498f-ad8e-dc974cdf1656", + "x-ms-ratelimit-remaining-subscription-reads": "11784", + "x-ms-request-id": "a93b2e0d-eb34-4f40-b6c4-5b1014e86b66", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072904Z:15b323e8-88e1-498f-ad8e-dc974cdf1656" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9702486b5f1c25b8538979e17d681011", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "1011f8db-be2f-4054-8c8a-4ca1b9e3f7b9", + "x-ms-client-request-id": "9702486b5f1c25b8538979e17d681011", + "x-ms-correlation-request-id": "39340ddf-e384-4d10-a559-e46c7e69ce0f", + "x-ms-ratelimit-remaining-subscription-reads": "11783", + "x-ms-request-id": "6f04219e-568a-4227-92e9-68f3ae1cef71", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072906Z:39340ddf-e384-4d10-a559-e46c7e69ce0f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "84e37c2bb50a4a759d090f3dfa61bf3b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "8576b153-a184-4250-8f45-02135a8e5009", + "x-ms-client-request-id": "84e37c2bb50a4a759d090f3dfa61bf3b", + "x-ms-correlation-request-id": "1d122d96-ee31-498e-8ed1-fdddabe5669e", + "x-ms-ratelimit-remaining-subscription-reads": "11782", + "x-ms-request-id": "6f81a266-4d54-4b73-854e-7080d81b5601", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072907Z:1d122d96-ee31-498e-8ed1-fdddabe5669e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "41a8f85ec8827a886233ceef732dfe2b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "259e61a2-bdf7-4213-9bee-563c66913149", + "x-ms-client-request-id": "41a8f85ec8827a886233ceef732dfe2b", + "x-ms-correlation-request-id": "ad0accad-c740-4562-b492-f233d74f2079", + "x-ms-ratelimit-remaining-subscription-reads": "11781", + "x-ms-request-id": "354a32fd-16b3-4d50-b103-37af47db7381", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072908Z:ad0accad-c740-4562-b492-f233d74f2079" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1ebba2283418b6b5d3b8fa124f7b2bf1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "a3d39e3c-28d9-494c-86da-fc9c2281bcd8", + "x-ms-client-request-id": "1ebba2283418b6b5d3b8fa124f7b2bf1", + "x-ms-correlation-request-id": "1c6aeee3-af2b-4d31-a99c-1441985d1b22", + "x-ms-ratelimit-remaining-subscription-reads": "11780", + "x-ms-request-id": "fa44d036-9a69-49ce-ae3c-52721ac13b41", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072910Z:1c6aeee3-af2b-4d31-a99c-1441985d1b22" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "85823dcacec0628ff46822d7e786d66f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "eeada005-ee3b-4d71-9e39-32e9efacf1bb", + "x-ms-client-request-id": "85823dcacec0628ff46822d7e786d66f", + "x-ms-correlation-request-id": "05ee57f2-621d-4531-a0a8-859fca629e54", + "x-ms-ratelimit-remaining-subscription-reads": "11779", + "x-ms-request-id": "5bc32335-a748-49cb-9e51-1a6211c149d3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072911Z:05ee57f2-621d-4531-a0a8-859fca629e54" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5714e40ba1a62a2342f26ecace762be6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "dbb65e18-565f-430f-b610-06763866f763", + "x-ms-client-request-id": "5714e40ba1a62a2342f26ecace762be6", + "x-ms-correlation-request-id": "8d49e083-0065-40a6-9874-a94e05711f2c", + "x-ms-ratelimit-remaining-subscription-reads": "11778", + "x-ms-request-id": "b11ab103-8dbe-4f67-99f3-b159a335421c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072912Z:8d49e083-0065-40a6-9874-a94e05711f2c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3625dc0778aa5a6a135829af11dece4c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:29: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": "7bcf1285-b45f-4f25-91e4-4ae61db3543a", + "x-ms-client-request-id": "3625dc0778aa5a6a135829af11dece4c", + "x-ms-correlation-request-id": "1054d9d8-97f0-4f0c-b93e-0fa6f045be93", + "x-ms-ratelimit-remaining-subscription-reads": "11777", + "x-ms-request-id": "238988c2-d2d0-464f-aaf7-cb87fc6387af", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072914Z:1054d9d8-97f0-4f0c-b93e-0fa6f045be93" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6a068ae1d366284b1a5843ce5fc4947d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "5ad7ed21-b7c9-4fa5-8f67-15af48eb53d5", + "x-ms-client-request-id": "6a068ae1d366284b1a5843ce5fc4947d", + "x-ms-correlation-request-id": "c46f6155-8af9-4d08-a2d3-59371a6d1f0b", + "x-ms-ratelimit-remaining-subscription-reads": "11776", + "x-ms-request-id": "2c11dae9-bbd6-4c05-bf06-a5e20e2d5151", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072915Z:c46f6155-8af9-4d08-a2d3-59371a6d1f0b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0acf3b3da06193c579ba444d77731963", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "45f74086-80a0-4c42-bedb-fdcedb879d7e", + "x-ms-client-request-id": "0acf3b3da06193c579ba444d77731963", + "x-ms-correlation-request-id": "1d2055f4-c2e4-4e72-9a73-dbebc7962c3c", + "x-ms-ratelimit-remaining-subscription-reads": "11775", + "x-ms-request-id": "1b370241-eb33-40f4-84c1-a135f0e908cd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072916Z:1d2055f4-c2e4-4e72-9a73-dbebc7962c3c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "44e82223c070347f91fd1b52359cfa4e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "2778f7b7-ec1e-460b-a902-b685b28c3582", + "x-ms-client-request-id": "44e82223c070347f91fd1b52359cfa4e", + "x-ms-correlation-request-id": "456d0420-186d-493c-a59c-f941dc2f611d", + "x-ms-ratelimit-remaining-subscription-reads": "11774", + "x-ms-request-id": "492528fd-7385-43b8-9499-6a18bc6083c7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072917Z:456d0420-186d-493c-a59c-f941dc2f611d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d571acc3c40f41ebc473f1ac8efdb0a6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "2e9c856d-fc9a-4467-a36a-43e1079d0c5e", + "x-ms-client-request-id": "d571acc3c40f41ebc473f1ac8efdb0a6", + "x-ms-correlation-request-id": "f867de39-ded7-4ec8-ac3d-abac3e1b1828", + "x-ms-ratelimit-remaining-subscription-reads": "11773", + "x-ms-request-id": "964914a4-1cf8-4eef-9559-8c9f0d38aca0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072919Z:f867de39-ded7-4ec8-ac3d-abac3e1b1828" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3dabdf3e50dc7d0dbc9a786484725ddd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e896c1ce-f620-4308-b220-23f3bc3b9729", + "x-ms-client-request-id": "3dabdf3e50dc7d0dbc9a786484725ddd", + "x-ms-correlation-request-id": "8e607c73-4c5d-4664-8f1b-6851fe087e3e", + "x-ms-ratelimit-remaining-subscription-reads": "11772", + "x-ms-request-id": "db734b81-d638-41e5-b116-9442f1a71cae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072920Z:8e607c73-4c5d-4664-8f1b-6851fe087e3e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cb89f6bf44015e5436a77ffcced3a594", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "76c79023-b463-4348-90fd-cf0e6343b636", + "x-ms-client-request-id": "cb89f6bf44015e5436a77ffcced3a594", + "x-ms-correlation-request-id": "2bdca1de-f82b-4d74-a9b7-b2d824ab35ae", + "x-ms-ratelimit-remaining-subscription-reads": "11771", + "x-ms-request-id": "c5baeca5-bdd3-4325-a32b-5c921e765762", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072921Z:2bdca1de-f82b-4d74-a9b7-b2d824ab35ae" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5614754cbdf173729ef419744b87bc52", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b4f4d67c-aa13-49d5-b539-1c82d392e669", + "x-ms-client-request-id": "5614754cbdf173729ef419744b87bc52", + "x-ms-correlation-request-id": "d7a26593-c7f2-480f-9e8d-12b5f8102b0c", + "x-ms-ratelimit-remaining-subscription-reads": "11770", + "x-ms-request-id": "148587e1-ba59-4a4b-9149-4e419d9f8bbc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072922Z:d7a26593-c7f2-480f-9e8d-12b5f8102b0c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "98ec1415e573faa48a4c0634d110aee8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "d097d21a-fbda-445c-bda7-1ca0b08cb97a", + "x-ms-client-request-id": "98ec1415e573faa48a4c0634d110aee8", + "x-ms-correlation-request-id": "6d5d79be-2b33-47a4-8a99-866b4a652a15", + "x-ms-ratelimit-remaining-subscription-reads": "11769", + "x-ms-request-id": "a836b10d-0a58-4f87-87ae-af60debcf149", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072924Z:6d5d79be-2b33-47a4-8a99-866b4a652a15" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0f17e4f5075e02eb83162d0d2ae012af", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "ca08fc95-5731-490e-8ce1-c042383a2e36", + "x-ms-client-request-id": "0f17e4f5075e02eb83162d0d2ae012af", + "x-ms-correlation-request-id": "f2304b0e-f578-4cb3-b3a0-1ae9cf78c168", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "85f06978-1bab-45de-bab0-19838cc4cdef", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072925Z:f2304b0e-f578-4cb3-b3a0-1ae9cf78c168" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bae72dea0ce66720d019cba4b63da18d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:29: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": "1a2052c9-daf7-43f7-b9f4-5b9cb7fb7dbc", + "x-ms-client-request-id": "bae72dea0ce66720d019cba4b63da18d", + "x-ms-correlation-request-id": "edf8a1f7-fd12-41cf-a7e6-30c8ebe2fd23", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "87830bd4-0b63-4863-a0e1-08c43d6b6f2e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072927Z:edf8a1f7-fd12-41cf-a7e6-30c8ebe2fd23" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "677f3045ad6f0df328ea155db796cfaa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "a6605fad-20a6-41c8-9ebd-b35143676edf", + "x-ms-client-request-id": "677f3045ad6f0df328ea155db796cfaa", + "x-ms-correlation-request-id": "4d9925b3-7d36-4e9f-8605-a08a436bcb00", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "1c1aa3dd-2749-4992-bf4a-f901c90ef461", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072928Z:4d9925b3-7d36-4e9f-8605-a08a436bcb00" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a44a5739f329e802c3b03f443c474b45", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "63b653ff-b3a8-4b75-96f7-7dc5efb5ccab", + "x-ms-client-request-id": "a44a5739f329e802c3b03f443c474b45", + "x-ms-correlation-request-id": "1f4c707f-698c-415b-9766-67db098255ba", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "140bf00b-bb21-4978-a9fa-af1704a6a7a4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072929Z:1f4c707f-698c-415b-9766-67db098255ba" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fac7a074ab603d3f39da92fbf7c3af39", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "5cfedaa0-4682-4b33-8f4f-b545b9ec3110", + "x-ms-client-request-id": "fac7a074ab603d3f39da92fbf7c3af39", + "x-ms-correlation-request-id": "49c56716-5dc4-453f-b39c-e32add7e4d6d", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "6d13eea2-f8ec-41cc-a92e-e607a49e904e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072931Z:49c56716-5dc4-453f-b39c-e32add7e4d6d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5e6a204afdf351632e97a4bf6eaed0e1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "55c864e6-deff-4e5a-b033-4ecaedf04dc1", + "x-ms-client-request-id": "5e6a204afdf351632e97a4bf6eaed0e1", + "x-ms-correlation-request-id": "6b4ce3a3-96dc-42db-a163-3068c79aba7a", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "a513635e-0e37-4ff0-aa9f-cf582dec85a3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072932Z:6b4ce3a3-96dc-42db-a163-3068c79aba7a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "17e8cf9fd5ce8e4a180c6a4f6106f0ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "ae4f8804-e990-4fe3-be1d-aabfd3e8da07", + "x-ms-client-request-id": "17e8cf9fd5ce8e4a180c6a4f6106f0ff", + "x-ms-correlation-request-id": "cd4a81ba-f5a2-48b7-ae09-f5bbb8fdb327", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "5bcebb59-4b53-4875-ba7d-142f2630f229", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072933Z:cd4a81ba-f5a2-48b7-ae09-f5bbb8fdb327" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1bf90500ecdc76523c75cbc90680cf8a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "cacce143-2a49-4b47-a2e6-506427b2807f", + "x-ms-client-request-id": "1bf90500ecdc76523c75cbc90680cf8a", + "x-ms-correlation-request-id": "5e0281ba-5bb9-4dba-b2d3-4df84e4bd7a4", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "c0cb016f-2a5f-4139-9431-33541f18e94b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072935Z:5e0281ba-5bb9-4dba-b2d3-4df84e4bd7a4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "285cb10998db756ad6db46e79314f028", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "5dfa2641-44f1-4836-bba7-e73f7ddbcea9", + "x-ms-client-request-id": "285cb10998db756ad6db46e79314f028", + "x-ms-correlation-request-id": "7fe86547-7248-4d17-9bfc-b6255a6e5fde", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "6358854f-4c33-4e67-9448-c0eb2dbc68b1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072936Z:7fe86547-7248-4d17-9bfc-b6255a6e5fde" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "68bea5a7b5b5b2047c71db5909808898", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "d3ff5774-8a0d-40ec-a9f5-786fdf818748", + "x-ms-client-request-id": "68bea5a7b5b5b2047c71db5909808898", + "x-ms-correlation-request-id": "d8a92082-1905-432a-adf6-e009747ad4d1", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "8937544f-5c2d-498e-84f6-cd7be90dffb9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072937Z:d8a92082-1905-432a-adf6-e009747ad4d1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b046df3dc7a968249b844401a66be327", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "494ab85e-a7c5-4444-a08f-3a6612cecdf6", + "x-ms-client-request-id": "b046df3dc7a968249b844401a66be327", + "x-ms-correlation-request-id": "bc039204-0b06-4e92-80d3-6021c50ba0e8", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "de2a378c-ced5-445b-9fcf-8e2b6cc33d89", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072939Z:bc039204-0b06-4e92-80d3-6021c50ba0e8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6122a38566c153d5acaaab69bc116c55", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "69efc1db-92f4-46bf-8561-94dbd19a6f76", + "x-ms-client-request-id": "6122a38566c153d5acaaab69bc116c55", + "x-ms-correlation-request-id": "198eb447-054f-4596-8091-26fe9dea2b76", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "3f900732-5926-40e3-aecc-7b011338e875", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072940Z:198eb447-054f-4596-8091-26fe9dea2b76" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b3a9ae5340cedf7e8055cd3070030b11", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "bb9abffb-89ef-4cda-b7dc-cc302fef8f21", + "x-ms-client-request-id": "b3a9ae5340cedf7e8055cd3070030b11", + "x-ms-correlation-request-id": "878e6475-421c-4457-9abf-53a1374a9090", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "e4c6a9b4-2dfc-4bf3-84c0-c98c018c4bbd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072941Z:878e6475-421c-4457-9abf-53a1374a9090" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "66d3b48e275ed6d609f203ff1bbbac89", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "a13743d5-a0ba-4028-a63b-3a668434355b", + "x-ms-client-request-id": "66d3b48e275ed6d609f203ff1bbbac89", + "x-ms-correlation-request-id": "40fa53b0-5a3b-4e27-8deb-458502bc5cdd", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "728c83a8-de46-4142-ad19-8ee503264dac", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072943Z:40fa53b0-5a3b-4e27-8deb-458502bc5cdd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f8adee182fc145582442e06b99a4e2a9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "a6c3048d-3b4b-476a-ac9f-45700d7dd5d5", + "x-ms-client-request-id": "f8adee182fc145582442e06b99a4e2a9", + "x-ms-correlation-request-id": "a6566d99-2265-4f94-a0e5-0e37f1ecf74b", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "35fab22f-22e6-4263-9c94-f761121fe736", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072944Z:a6566d99-2265-4f94-a0e5-0e37f1ecf74b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "08da9a9e053d2bf6d7d3a9dc3d7fc3c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "c2a4c9b3-9fff-4e31-9f3d-29c1e0ca5c94", + "x-ms-client-request-id": "08da9a9e053d2bf6d7d3a9dc3d7fc3c5", + "x-ms-correlation-request-id": "b42e9319-ed81-4e14-88d7-5b5300080fab", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "6c6939be-9e80-45e6-bc68-a7471105243d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072945Z:b42e9319-ed81-4e14-88d7-5b5300080fab" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "811844a913555e505b8e421c476b3d64", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "203e043f-a3ac-4d9d-af4d-c7c1c4dbe5e5", + "x-ms-client-request-id": "811844a913555e505b8e421c476b3d64", + "x-ms-correlation-request-id": "9f5ba282-8393-4db7-b8bf-52744b66f7db", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "dc69fdeb-8973-4a24-b58d-612f93f86ae2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072947Z:9f5ba282-8393-4db7-b8bf-52744b66f7db" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8160590fa3e0124bf78220ee857c07a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "d9f3b5ea-aaca-4a10-a5d7-b8131625fe3f", + "x-ms-client-request-id": "8160590fa3e0124bf78220ee857c07a4", + "x-ms-correlation-request-id": "ecbc1fee-4286-46a3-88d6-f6bff8bb6c73", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "8966fd9d-7926-4f04-8969-73e54ef67891", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072948Z:ecbc1fee-4286-46a3-88d6-f6bff8bb6c73" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "55c11a7f618c8a544a7badafc3dae46b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "5b7d849e-809c-4d06-91f6-faa4914d5d0b", + "x-ms-client-request-id": "55c11a7f618c8a544a7badafc3dae46b", + "x-ms-correlation-request-id": "f974da4b-f9f2-4f92-84c6-b4dd6dbeddbc", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "ea67722b-2415-4edc-adcc-4de0c5b43131", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072949Z:f974da4b-f9f2-4f92-84c6-b4dd6dbeddbc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e3cd4595421e05e5f8068ad3f261d8de", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "17717654-bb8c-4908-9ce4-21b5d35fc099", + "x-ms-client-request-id": "e3cd4595421e05e5f8068ad3f261d8de", + "x-ms-correlation-request-id": "7fdceeef-7280-488e-a727-8935dedf11df", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "0ba236ca-1198-470e-a90f-76ed420dd7a9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072950Z:7fdceeef-7280-488e-a727-8935dedf11df" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2c9c9d86e8a9aed804d63764f69c4e1c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "be869e5e-594d-4643-9110-b4135ec4d838", + "x-ms-client-request-id": "2c9c9d86e8a9aed804d63764f69c4e1c", + "x-ms-correlation-request-id": "ea978e34-7362-4144-bc4c-70e1cc4cacd2", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "0cbe046d-6ff8-4b1a-afa9-9868d9f66a36", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072952Z:ea978e34-7362-4144-bc4c-70e1cc4cacd2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4058b59d24af3d8535bb5c85d78198e8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "f58aaeeb-8479-4bc3-897b-eea70318b862", + "x-ms-client-request-id": "4058b59d24af3d8535bb5c85d78198e8", + "x-ms-correlation-request-id": "ba256fa6-38bc-4fab-bf1a-5b72cc096c74", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "6f8278db-b403-44a1-b69e-a697560d835b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072953Z:ba256fa6-38bc-4fab-bf1a-5b72cc096c74" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2628cea3b83dadc16c1ede480a800f5b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "4fd39d70-2508-4e08-88e1-50e3aabd2860", + "x-ms-client-request-id": "2628cea3b83dadc16c1ede480a800f5b", + "x-ms-correlation-request-id": "b72db4c5-66ca-4825-acc5-2fe42a267f43", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "bf484c51-4420-45e5-ba92-c62fc0d826bf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072954Z:b72db4c5-66ca-4825-acc5-2fe42a267f43" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3d366db79708622f175ff7ee8b53d783", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "488dd576-3551-4836-99f3-f77df65308fc", + "x-ms-client-request-id": "3d366db79708622f175ff7ee8b53d783", + "x-ms-correlation-request-id": "22aca0d9-2748-468d-95a1-8824a0491cd1", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "f62a681b-2211-4776-95a2-78888ff89e65", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072956Z:22aca0d9-2748-468d-95a1-8824a0491cd1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "28c14e3d2874e5dff3abd490453d32b4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "c709fce7-939e-44da-bdb3-1a51dc2fb40d", + "x-ms-client-request-id": "28c14e3d2874e5dff3abd490453d32b4", + "x-ms-correlation-request-id": "54fb5c1b-bb13-4ab0-84fe-fcee099120bb", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "af5f7a34-08a0-4240-aa32-89de21061d26", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072957Z:54fb5c1b-bb13-4ab0-84fe-fcee099120bb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "69ce01ac5a4b0bdf9ec50edec0d32119", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0221cb3a-f4b6-4ba2-89ca-976798c39ea5", + "x-ms-client-request-id": "69ce01ac5a4b0bdf9ec50edec0d32119", + "x-ms-correlation-request-id": "4246568d-85fb-4344-8d45-a6161f5cbbf3", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "8ccfdd7c-8757-45c1-96ec-2d71a26e93e8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T072958Z:4246568d-85fb-4344-8d45-a6161f5cbbf3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bc0a5b47e6bf8ee78e50495cc39f1dda", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "f5156293-db4b-423c-bf7e-94ce2540e5ff", + "x-ms-client-request-id": "bc0a5b47e6bf8ee78e50495cc39f1dda", + "x-ms-correlation-request-id": "a9a8efbc-e31c-4a4f-aec0-1caea6e74df6", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "ca924845-6846-4e7a-84d6-c82277ce4a80", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073000Z:a9a8efbc-e31c-4a4f-aec0-1caea6e74df6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8a41422d6d84e3386eb68aae1a00241f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "9092ad19-2a09-4982-ac63-1f67e962a597", + "x-ms-client-request-id": "8a41422d6d84e3386eb68aae1a00241f", + "x-ms-correlation-request-id": "529ab714-293d-43f2-b82b-4b5b253969ec", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "6b9c3ecd-9b5f-4e5c-9d7e-b58284c09890", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073001Z:529ab714-293d-43f2-b82b-4b5b253969ec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ea48bb8a7632c6f5193fdbfa108347fe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "4ebb30ee-40d3-4750-8941-6726bd646a22", + "x-ms-client-request-id": "ea48bb8a7632c6f5193fdbfa108347fe", + "x-ms-correlation-request-id": "7b2b65ef-36ae-4f96-b89d-afff48a9af53", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "f5371caa-2d18-4b11-b11b-ec6cec86e6b8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073002Z:7b2b65ef-36ae-4f96-b89d-afff48a9af53" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7db034a89692da9422274d085c38748d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "358abaaf-6742-4dec-85c3-bd416906c7a6", + "x-ms-client-request-id": "7db034a89692da9422274d085c38748d", + "x-ms-correlation-request-id": "fc78abc5-8d8e-4b81-b4c2-e8126b804159", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "9e2138e4-e865-4b41-834f-9016d87287da", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073004Z:fc78abc5-8d8e-4b81-b4c2-e8126b804159" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "07d2292c3357b7a84d7b7044913ed2eb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "3ec02fae-cb74-4cbe-accd-b15b0938b040", + "x-ms-client-request-id": "07d2292c3357b7a84d7b7044913ed2eb", + "x-ms-correlation-request-id": "80cde3cf-ab29-4593-8d12-36004654d4da", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "58a54f5f-c92c-4dfd-95d8-8970eb8e3854", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073005Z:80cde3cf-ab29-4593-8d12-36004654d4da" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e6068b6ea650f38d266dc70a28ec6ae0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "05a33b1f-e154-4539-9783-a525d60b9bdd", + "x-ms-client-request-id": "e6068b6ea650f38d266dc70a28ec6ae0", + "x-ms-correlation-request-id": "077bb4a4-257e-4b89-8b23-7d8cebdf3cc4", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "be390833-e1e2-48d8-8304-d81e54676afc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073006Z:077bb4a4-257e-4b89-8b23-7d8cebdf3cc4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e6ce4ecb3fb074a78cf93016264f49e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "4b0015ff-8e32-43f3-84f3-d51fbd88078f", + "x-ms-client-request-id": "e6ce4ecb3fb074a78cf93016264f49e4", + "x-ms-correlation-request-id": "79649126-0f68-4e99-952a-ed86a9641be3", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "94c5164e-5451-4170-8d5f-d1cd1f89c53f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073008Z:79649126-0f68-4e99-952a-ed86a9641be3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d09961548e32853c9cdee1e96b9d8e60", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "8866e1b7-312b-4caf-b365-22f2977c7e3f", + "x-ms-client-request-id": "d09961548e32853c9cdee1e96b9d8e60", + "x-ms-correlation-request-id": "675b88b9-50f4-470e-b588-4e0a6cce06ef", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "8faccde0-1808-446b-8f77-46d82f9e6ab8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073009Z:675b88b9-50f4-470e-b588-4e0a6cce06ef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "42798f11eb702e3ae49159577676cdd7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e41aa3a7-4f94-4564-a5c4-f43e36305757", + "x-ms-client-request-id": "42798f11eb702e3ae49159577676cdd7", + "x-ms-correlation-request-id": "c2e97118-e22c-440a-a3ff-8a8ec85283eb", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "be009b32-9e0b-4ee9-97e0-822556ab84f4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073010Z:c2e97118-e22c-440a-a3ff-8a8ec85283eb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c7b5e22499523dae11484ad25ebd08ef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "48d1d720-50ae-4071-ae19-89ec3c55c394", + "x-ms-client-request-id": "c7b5e22499523dae11484ad25ebd08ef", + "x-ms-correlation-request-id": "119cc59a-ee3f-49ef-ae35-08e4b772f281", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "68ff134f-ec68-4a66-a71a-a2bc2be4c2c1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073012Z:119cc59a-ee3f-49ef-ae35-08e4b772f281" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9605cf6a06d66974266beba134e50e25", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "463a575b-d54f-477f-a6d3-1fbcccb5d7d5", + "x-ms-client-request-id": "9605cf6a06d66974266beba134e50e25", + "x-ms-correlation-request-id": "630478ce-d666-4ad3-aec9-14ed042d4c00", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "684500d8-7732-4042-8c1e-da83cf5fe231", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073013Z:630478ce-d666-4ad3-aec9-14ed042d4c00" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "89c40911c7e7770ee13b3127a068d026", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "ec6451fc-d421-4231-b2cf-c400bd98d3bc", + "x-ms-client-request-id": "89c40911c7e7770ee13b3127a068d026", + "x-ms-correlation-request-id": "c960f9d2-05d5-4276-9e45-c2cd630c52c0", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "a42e5cd3-b98f-488b-a053-b739d6925fc6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073014Z:c960f9d2-05d5-4276-9e45-c2cd630c52c0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a7ec6a8836711e006e4ca0e7ae0c092c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e2b18a2d-f488-4e69-b1e6-6669162db04c", + "x-ms-client-request-id": "a7ec6a8836711e006e4ca0e7ae0c092c", + "x-ms-correlation-request-id": "74f438a3-c213-48c8-b90f-b327a77eac3c", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "6afc44da-bb0d-4550-85d5-9fe1e1079501", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073015Z:74f438a3-c213-48c8-b90f-b327a77eac3c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "54c1253a7ff8a207c18db49ad54dc8be", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "7e73014d-f4ed-4a95-af3b-e89edba986a4", + "x-ms-client-request-id": "54c1253a7ff8a207c18db49ad54dc8be", + "x-ms-correlation-request-id": "9f796150-9eed-4718-86c9-62223d93e77a", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "09cf0420-75ec-42a9-bc38-a06d49c0a72b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073017Z:9f796150-9eed-4718-86c9-62223d93e77a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c918c49a66f8dab309a61a9a2726c9d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "bfab6b91-ff01-4eb4-b852-fee0b9c871b0", + "x-ms-client-request-id": "c918c49a66f8dab309a61a9a2726c9d5", + "x-ms-correlation-request-id": "e89961a1-191e-4800-8116-ae82fbd9edff", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "133e3c77-ef10-49f4-a9c9-23c439778fe1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073018Z:e89961a1-191e-4800-8116-ae82fbd9edff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7aec05327ba7082e624ae6e382654921", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e0cf606a-793b-4660-b051-e4df7726e57f", + "x-ms-client-request-id": "7aec05327ba7082e624ae6e382654921", + "x-ms-correlation-request-id": "d4592090-42b3-47ec-972a-2256ddb6636a", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "9e74fd71-b49b-400f-acb1-85ca946dc51e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073019Z:d4592090-42b3-47ec-972a-2256ddb6636a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e94ce1833ff3d33372e64b52656d7b9a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e83ad699-2f98-4dc0-88a3-ded4a955d79e", + "x-ms-client-request-id": "e94ce1833ff3d33372e64b52656d7b9a", + "x-ms-correlation-request-id": "c2e20a36-3f0e-4064-9b31-b71a07aa3002", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "c18ad04a-6d27-498d-8167-342bc8eea478", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073021Z:c2e20a36-3f0e-4064-9b31-b71a07aa3002" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d068dfc44d601f17961066ae80cf58a3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "cd9f6ea8-c2fd-4f7b-8a36-77b4a8417ecc", + "x-ms-client-request-id": "d068dfc44d601f17961066ae80cf58a3", + "x-ms-correlation-request-id": "018a3ef9-62ba-48f0-8e86-47c31356ad0b", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "808e9cda-573b-436b-be6e-27320a0cc393", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073022Z:018a3ef9-62ba-48f0-8e86-47c31356ad0b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4616f95ddfd9f3e1d11908c02fdba3f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "776b2c2c-7d45-42af-a95d-23227fb71441", + "x-ms-client-request-id": "4616f95ddfd9f3e1d11908c02fdba3f5", + "x-ms-correlation-request-id": "5396cbea-a55b-45ae-a29c-8d3033724614", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "b1378297-fe48-4bf0-8bbb-43007599e150", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073023Z:5396cbea-a55b-45ae-a29c-8d3033724614" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a21e4bcf79fd36c1ca2d52e3d88453a2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "9b1c03fe-0230-4924-82b5-705213071205", + "x-ms-client-request-id": "a21e4bcf79fd36c1ca2d52e3d88453a2", + "x-ms-correlation-request-id": "5462dd43-db34-4b1e-ad54-29488d2a0eb1", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "9a7ee878-838d-454a-8f94-2263e0e6e6d7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073025Z:5462dd43-db34-4b1e-ad54-29488d2a0eb1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6cf4a78e3556e4c1fe75fe474456efba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "ca9ce248-f8dd-4953-8012-dbbd238ae1ed", + "x-ms-client-request-id": "6cf4a78e3556e4c1fe75fe474456efba", + "x-ms-correlation-request-id": "6895ddec-c433-4677-8a03-89482913f899", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "dda564ac-82b6-46e6-a2fd-ae2d017b50c0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073026Z:6895ddec-c433-4677-8a03-89482913f899" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "35df706cb5b1e4a638e07bab8dfd1a4c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "119dbe22-cf67-4204-8d45-309f43201372", + "x-ms-client-request-id": "35df706cb5b1e4a638e07bab8dfd1a4c", + "x-ms-correlation-request-id": "0390e49b-92a2-420a-9a4c-448deacf0aa7", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "d54d5978-b4f8-44c7-9945-fbd4495909ab", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073027Z:0390e49b-92a2-420a-9a4c-448deacf0aa7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "873266c636e7999f893aa3877a79f173", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "12cbac81-f6b8-4270-a343-a5ead58753c2", + "x-ms-client-request-id": "873266c636e7999f893aa3877a79f173", + "x-ms-correlation-request-id": "55ba6b30-ff6b-456b-9203-b51cfe11a56b", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "7040bbcb-e7e0-4338-850c-665921ab1e5a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073029Z:55ba6b30-ff6b-456b-9203-b51cfe11a56b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6876973d1ea5d8f101103475b9155701", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b97baa9c-8239-45ba-937b-2ef62f06b507", + "x-ms-client-request-id": "6876973d1ea5d8f101103475b9155701", + "x-ms-correlation-request-id": "e8244185-7463-4680-bc16-d61be6dab173", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "28ba1545-63cb-4539-84d5-a8202ecb3449", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073030Z:e8244185-7463-4680-bc16-d61be6dab173" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "de81b15b672435d3d145ab76111e69be", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "ea6a8fa9-dd0d-4bb8-ba3e-0a39534d5f51", + "x-ms-client-request-id": "de81b15b672435d3d145ab76111e69be", + "x-ms-correlation-request-id": "6f989685-2371-4731-8be3-1e88ad47b787", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "ae264f34-700a-4e37-8696-93572f8afe68", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073031Z:6f989685-2371-4731-8be3-1e88ad47b787" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f56e08eeb286a7a7755986d70229e074", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "7885fac2-1aec-412a-9066-fefe87dc54ce", + "x-ms-client-request-id": "f56e08eeb286a7a7755986d70229e074", + "x-ms-correlation-request-id": "ed2b504a-6243-4ea9-bfb0-fdd3fc3c06f6", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "ae270b91-3776-4b17-904a-52f4439bf749", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073033Z:ed2b504a-6243-4ea9-bfb0-fdd3fc3c06f6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c82ca2e213f8d64fc440965f727ac6e2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0da5bbc1-001a-4a13-8025-640b6413b0c2", + "x-ms-client-request-id": "c82ca2e213f8d64fc440965f727ac6e2", + "x-ms-correlation-request-id": "8f924713-050e-49e7-9aa1-b6fce147f07a", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "e068ff68-3467-486a-bf96-8763c04ca647", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073034Z:8f924713-050e-49e7-9aa1-b6fce147f07a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b08776a662a7a87b0ad968cae1fc33a7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "24dcf267-8444-440c-b720-ac4b8f8c3c57", + "x-ms-client-request-id": "b08776a662a7a87b0ad968cae1fc33a7", + "x-ms-correlation-request-id": "f04e1f3a-b121-4432-9f4f-2728af68b428", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "6d11fad6-2928-4814-ba2c-c09dfb511a06", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073035Z:f04e1f3a-b121-4432-9f4f-2728af68b428" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6f943764a1f2dbc5b99830451b4735fb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "c777bc37-0da1-4374-b4e5-70acf2dec1e1", + "x-ms-client-request-id": "6f943764a1f2dbc5b99830451b4735fb", + "x-ms-correlation-request-id": "7605f97d-0be5-43ec-8796-c62b9827e1f5", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "a5e948ea-6922-44dc-912a-9796f9e53476", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073037Z:7605f97d-0be5-43ec-8796-c62b9827e1f5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8c31a3932fa280cc2783be1faa84f4c8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "55a3f4b0-c7cc-4f0e-aef8-14ed868ce6b3", + "x-ms-client-request-id": "8c31a3932fa280cc2783be1faa84f4c8", + "x-ms-correlation-request-id": "9ece0cd5-0bc7-4fc9-9bc7-65dad616f18c", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "a471f31f-f091-421b-8f5a-c3d2df34c515", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073038Z:9ece0cd5-0bc7-4fc9-9bc7-65dad616f18c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3bfbef0d57e604f0b0abf70f31358dc3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "cd3e4f07-df4f-4555-82d3-152b3ea99e14", + "x-ms-client-request-id": "3bfbef0d57e604f0b0abf70f31358dc3", + "x-ms-correlation-request-id": "dc745cb8-40c5-486a-8390-1aa68e934f07", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "a3f4d90d-4b59-4d78-92f6-318fa8928c55", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073039Z:dc745cb8-40c5-486a-8390-1aa68e934f07" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3d376da4a6ca35056a13476ee3a53134", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "f0bf1c58-bd3e-4ca4-b353-2a059614cb28", + "x-ms-client-request-id": "3d376da4a6ca35056a13476ee3a53134", + "x-ms-correlation-request-id": "a3b5c252-f5ca-4091-820f-f1b46d70dd65", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "3cd488c5-48f4-4eca-812b-c3a1babdbc90", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073041Z:a3b5c252-f5ca-4091-820f-f1b46d70dd65" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2c3767a3f94c3b15b32cdcf738bd4ef1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0f86b4d1-5452-4521-bba1-a8346ca1d8aa", + "x-ms-client-request-id": "2c3767a3f94c3b15b32cdcf738bd4ef1", + "x-ms-correlation-request-id": "315bcf28-a58d-4a71-b189-1bc393c36761", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "ff0b658e-59a1-4dc6-a932-d8d851a74f22", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073042Z:315bcf28-a58d-4a71-b189-1bc393c36761" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3d7bfaf6b74d67fdeac5d1d20f82210a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "72c13c1f-e9d7-42fe-8f36-5a4ece0e5496", + "x-ms-client-request-id": "3d7bfaf6b74d67fdeac5d1d20f82210a", + "x-ms-correlation-request-id": "32c94cb6-3ae1-4cef-9072-5f21f6e6bff7", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "a6d68e72-399b-4e95-a34a-1b53527b9a9e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073043Z:32c94cb6-3ae1-4cef-9072-5f21f6e6bff7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad4057d-93fe-4d6d-b4de-d81247d782d3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c96cc37a61fdaa7758fb8a9eca0efcad", + "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, 08 Sep 2021 07:30:44 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": "43b6b651-5aba-48ff-833e-60095c596375", + "x-ms-client-request-id": "c96cc37a61fdaa7758fb8a9eca0efcad", + "x-ms-correlation-request-id": "be4dd652-cda7-494d-8d84-ce0d908c9fc8", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "354326dc-cb88-421d-88be-e0fb43493c88", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073045Z:be4dd652-cda7-494d-8d84-ce0d908c9fc8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-897?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e87856c4f32aebe66ad0428627422b30", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1531", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:30:44 GMT", + "ETag": "W/\u0022630c6bd7-0c9f-4b6a-9ec7-2c698d1d4534\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": "5331a26a-333c-4d3c-9d7b-0fcf03ad19d4", + "x-ms-client-request-id": "e87856c4f32aebe66ad0428627422b30", + "x-ms-correlation-request-id": "ef2f7b28-20dd-4ba0-b845-afa8c8521146", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "11674b80-a699-4574-9c0b-3e82ccae5556", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073045Z:ef2f7b28-20dd-4ba0-b845-afa8c8521146" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022bastion-897\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-897\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022630c6bd7-0c9f-4b6a-9ec7-2c698d1d4534\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022dnsName\u0022: \u0022bst-d027d102-2424-4778-b660-c415adacbe4b.bastion.azure.com\u0022,\r\n", + " \u0022scaleUnits\u0022: 2,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022bastionIPConfig-218\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-897/bastionHostIpConfigurations/bastionIPConfig-218\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022630c6bd7-0c9f-4b6a-9ec7-2c698d1d4534\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts/bastionHostIpConfigurations\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/bastionrg-7251/providers/Microsoft.Network/publicIPAddresses/ip-3184\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121/subnets/AzureBastionSubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022bastionShareableLinks\u0022: {}\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "747cd10a855194f383d0e4522d5f9cdc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1692", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:30:44 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": "4f9d953d-8a5e-49a4-b625-c06416ac29ea", + "x-ms-client-request-id": "747cd10a855194f383d0e4522d5f9cdc", + "x-ms-correlation-request-id": "e16ee9d3-561d-42b5-afff-357cb7552f00", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "c9f64c5e-0fb4-45c0-9c13-c7b254f9a9a0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073045Z:e16ee9d3-561d-42b5-afff-357cb7552f00" + }, + "ResponseBody": [ + "{\r\n", + " \u0022value\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022bastion-897\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-897\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022630c6bd7-0c9f-4b6a-9ec7-2c698d1d4534\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022dnsName\u0022: \u0022bst-d027d102-2424-4778-b660-c415adacbe4b.bastion.azure.com\u0022,\r\n", + " \u0022scaleUnits\u0022: 2,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022bastionIPConfig-218\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-897/bastionHostIpConfigurations/bastionIPConfig-218\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022630c6bd7-0c9f-4b6a-9ec7-2c698d1d4534\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts/bastionHostIpConfigurations\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/bastionrg-7251/providers/Microsoft.Network/publicIPAddresses/ip-3184\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121/subnets/AzureBastionSubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022bastionShareableLinks\u0022: {}\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022\r\n", + " }\r\n", + " }\r\n", + " ]\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-897?api-version=2021-02-01", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b90d24c9380a86e0dc805f2d1ff18315", + "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/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 08 Sep 2021 07:30:45 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operationResults/5794d010-9e89-48fb-ad2c-a79064f0f894?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": "be3b3d93-f1c7-48a2-97ae-15277bd8a2bf", + "x-ms-client-request-id": "b90d24c9380a86e0dc805f2d1ff18315", + "x-ms-correlation-request-id": "a49a4634-8a10-4126-a6b1-2969aa2d5eec", + "x-ms-ratelimit-remaining-subscription-deletes": "14999", + "x-ms-request-id": "5794d010-9e89-48fb-ad2c-a79064f0f894", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073046Z:a49a4634-8a10-4126-a6b1-2969aa2d5eec" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "03bd66347234d126f0f697d025c67592", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:30:46 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": "3099aa77-2a73-416f-865c-77ac35578f8c", + "x-ms-client-request-id": "03bd66347234d126f0f697d025c67592", + "x-ms-correlation-request-id": "add50123-ecf7-48ce-9461-95ee23793b9b", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "c91490d6-9a51-44ba-a8d7-d523d8dd8b00", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073046Z:add50123-ecf7-48ce-9461-95ee23793b9b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d382cf4da3cb414ac8ce5726d3867748", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:30:47 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": "1c8dd41d-47bc-41a1-a1dd-d352a41f8bf6", + "x-ms-client-request-id": "d382cf4da3cb414ac8ce5726d3867748", + "x-ms-correlation-request-id": "63f79b61-f9d1-4269-aede-cf1fc4a516c3", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "97246516-b048-4864-a471-cb0792792645", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073048Z:63f79b61-f9d1-4269-aede-cf1fc4a516c3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b9f954c27f345de133c2089aef8b199c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:30:48 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": "75a7367a-7121-4a5e-8caf-cc41445b4803", + "x-ms-client-request-id": "b9f954c27f345de133c2089aef8b199c", + "x-ms-correlation-request-id": "15b2173e-60c7-4b7e-bbff-3674333aa677", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "d509705c-0cd7-471e-9741-18e2c8e02853", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073049Z:15b2173e-60c7-4b7e-bbff-3674333aa677" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3f0cd36dea1191401b7b3a651bfffe6a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:30:50 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": "c72dc513-333a-4cf1-b1ac-923670240811", + "x-ms-client-request-id": "3f0cd36dea1191401b7b3a651bfffe6a", + "x-ms-correlation-request-id": "67479c26-d9c3-4e73-9c8f-d209539c886e", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "ff99be4b-e301-4a73-b8bb-99da154c781e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073050Z:67479c26-d9c3-4e73-9c8f-d209539c886e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d10d4f7ebccdcd5eed25a0089aaf513c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:30:51 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": "5b9242f1-561b-4709-b3f9-829d1dcdb26f", + "x-ms-client-request-id": "d10d4f7ebccdcd5eed25a0089aaf513c", + "x-ms-correlation-request-id": "46bf1a90-d548-45b3-9a42-d84f920ec831", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "6ad75fb9-042e-4be7-8c96-c16c16ca0759", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073052Z:46bf1a90-d548-45b3-9a42-d84f920ec831" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "00b9bab53779d83614679db8457b4133", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:30:52 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": "fd8e61c8-69f2-4bbc-8ec4-b682771c9b43", + "x-ms-client-request-id": "00b9bab53779d83614679db8457b4133", + "x-ms-correlation-request-id": "22d54c05-8aec-4ea7-9eeb-4ebcfe546020", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "02bc5673-1623-4974-8bf4-415c8af57fce", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073053Z:22d54c05-8aec-4ea7-9eeb-4ebcfe546020" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a01b9dc4477db1ce753f52ec4937f66b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:30:53 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": "55c3834f-e115-4ac1-9ca5-756c02851040", + "x-ms-client-request-id": "a01b9dc4477db1ce753f52ec4937f66b", + "x-ms-correlation-request-id": "6d711e20-ea06-4abe-a815-4a5ae04171a1", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "8997fab5-2adc-4d87-acba-d6cfc216fd8d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073054Z:6d711e20-ea06-4abe-a815-4a5ae04171a1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "60b0fd2afe4647f11835bd651ea58872", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:30:55 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": "9ed91bde-4507-451d-a94d-d2ad6c0f6c00", + "x-ms-client-request-id": "60b0fd2afe4647f11835bd651ea58872", + "x-ms-correlation-request-id": "d5f938fe-0e17-486c-9a98-f3e848449f9d", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "08f1573e-5395-447c-b86f-d2e85c075176", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073056Z:d5f938fe-0e17-486c-9a98-f3e848449f9d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fd446de3b0936dbfec078b39e54a8edc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:30:56 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": "85cb2501-0394-43f1-952f-db3caf5cf8c4", + "x-ms-client-request-id": "fd446de3b0936dbfec078b39e54a8edc", + "x-ms-correlation-request-id": "f6c4af64-1177-4d91-8668-fc8bd70a459e", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "68d54cc0-1e35-4bd4-8b28-30b507e259fe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073057Z:f6c4af64-1177-4d91-8668-fc8bd70a459e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "478d3271e1cac6edacd488488a6992cf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "aa1c5035-2d74-4b4d-b195-c5f3af31a6b5", + "x-ms-client-request-id": "478d3271e1cac6edacd488488a6992cf", + "x-ms-correlation-request-id": "5ed6be70-1fdd-47fa-a2e5-4d1e54dd803c", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "4c984d2a-6230-4f2d-baba-e04efca3a328", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073058Z:5ed6be70-1fdd-47fa-a2e5-4d1e54dd803c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dc08dfb7f9f279d73e43743e72b762ce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "c902d95d-2715-4c4f-8fa7-4b7c31e7c81d", + "x-ms-client-request-id": "dc08dfb7f9f279d73e43743e72b762ce", + "x-ms-correlation-request-id": "92ae07c1-2079-444a-84ca-e124f7cb08b5", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "bf59fb23-d366-461b-9c1b-8fedebf95806", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073100Z:92ae07c1-2079-444a-84ca-e124f7cb08b5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ebf3e0a6401802a8807e50bf2876e383", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b6694a8e-fc85-4bcb-8dc9-6ba5f8b66245", + "x-ms-client-request-id": "ebf3e0a6401802a8807e50bf2876e383", + "x-ms-correlation-request-id": "85299bb4-bf79-408c-9a3d-cacf60e30f3d", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "2835ffd7-b6a3-4358-9492-b711726ceb3b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073101Z:85299bb4-bf79-408c-9a3d-cacf60e30f3d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0582bb74b24178e95b1308876cae53f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0f35285d-93a9-481d-958b-82169ca6b048", + "x-ms-client-request-id": "0582bb74b24178e95b1308876cae53f5", + "x-ms-correlation-request-id": "553c5048-fbad-4d21-b52f-41bf16fcc39d", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "2731db27-84e0-47b3-893a-cc6e40405b72", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073102Z:553c5048-fbad-4d21-b52f-41bf16fcc39d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a9a1ba71a77576b737065c74a81751c8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b0eb6d17-e436-4d8a-8973-1bd5f6a228ef", + "x-ms-client-request-id": "a9a1ba71a77576b737065c74a81751c8", + "x-ms-correlation-request-id": "a04d3b01-cfb4-490a-919e-6ba2ddddf771", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "b82040da-f8ed-4a2e-989b-feb34c63b6d8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073104Z:a04d3b01-cfb4-490a-919e-6ba2ddddf771" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b7caf0605c35f48cf77b9004382095d2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "90e091ce-3826-407a-aad2-0127480f5c9d", + "x-ms-client-request-id": "b7caf0605c35f48cf77b9004382095d2", + "x-ms-correlation-request-id": "211ae7c2-8b2e-46f4-8ae0-37bebe0d308b", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "7d2bf16d-d1f9-4670-ae05-5fdf1753b4a9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073105Z:211ae7c2-8b2e-46f4-8ae0-37bebe0d308b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6e4d5b2b39d4cd0d040bce3b5575d043", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "1192f3d7-ad07-4ea9-b3be-2112d7bf4bcb", + "x-ms-client-request-id": "6e4d5b2b39d4cd0d040bce3b5575d043", + "x-ms-correlation-request-id": "83fb551e-9194-45c4-b92d-396f51974ae4", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "7cebbd73-8dc3-4a9c-b09f-291a40da01d3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073106Z:83fb551e-9194-45c4-b92d-396f51974ae4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7b2740c29ce315bf2dacb2f916b33e16", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "838fd12a-7f25-4a4c-91f7-0dc721e8ef64", + "x-ms-client-request-id": "7b2740c29ce315bf2dacb2f916b33e16", + "x-ms-correlation-request-id": "9156f742-b96a-45d6-959f-82c83a8e4d5b", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "7c763474-6af2-4388-82e5-b23c3ad55693", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073108Z:9156f742-b96a-45d6-959f-82c83a8e4d5b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4c498a70e3c926f3e3fcb22a8e519f81", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "bcaf0e1b-c0e4-499d-ac1c-d7383077407a", + "x-ms-client-request-id": "4c498a70e3c926f3e3fcb22a8e519f81", + "x-ms-correlation-request-id": "c89fd17b-208e-4565-97d2-ffe866f4a6f8", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "eb111dbc-4e77-4319-b4ab-9ebc39618b1c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073109Z:c89fd17b-208e-4565-97d2-ffe866f4a6f8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f8414dab19f98fee9b3840278714b751", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e7c5c201-65d6-4a02-97a0-fe17badd1ee5", + "x-ms-client-request-id": "f8414dab19f98fee9b3840278714b751", + "x-ms-correlation-request-id": "27fb9978-aff0-4e59-b61d-751b265e5a4b", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "6444b6ea-f599-413f-abf9-20debf3ac295", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073110Z:27fb9978-aff0-4e59-b61d-751b265e5a4b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cbcab7cc832cdf794c0098e7e99586db", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "74139bef-d661-4393-af16-d49d18ea64e6", + "x-ms-client-request-id": "cbcab7cc832cdf794c0098e7e99586db", + "x-ms-correlation-request-id": "6b97c8dd-09f9-4d3c-8a66-4f20af639ced", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "f17f2f0f-d8c1-4637-88a3-18a552a7987e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073112Z:6b97c8dd-09f9-4d3c-8a66-4f20af639ced" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c94e300d4671571c9cb9b191a2cb9ece", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "d6de45ab-0e38-4664-8f00-3672685d3096", + "x-ms-client-request-id": "c94e300d4671571c9cb9b191a2cb9ece", + "x-ms-correlation-request-id": "f7548247-18d8-4ebd-a186-d33b191ba309", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "29dc8a90-9ba0-4cd5-83ea-f0c9a84307b0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073113Z:f7548247-18d8-4ebd-a186-d33b191ba309" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d65d6145d3872855d362abf88006a505", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0331118e-70bb-4d5d-8ca3-967aaed7e958", + "x-ms-client-request-id": "d65d6145d3872855d362abf88006a505", + "x-ms-correlation-request-id": "958b7845-d9fc-49be-bb22-b5e317f33ef5", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "b0c8c60c-df32-4983-a74e-45c8ba75b41c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073114Z:958b7845-d9fc-49be-bb22-b5e317f33ef5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "571a65b1eec585e09a722f72d1e83d81", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "3282eedf-d29d-48e9-817d-84447b0703e6", + "x-ms-client-request-id": "571a65b1eec585e09a722f72d1e83d81", + "x-ms-correlation-request-id": "394c1576-60e0-48b5-bae3-a7f19be82822", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "fb34111a-db7d-4405-821a-c3e066d575b6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073116Z:394c1576-60e0-48b5-bae3-a7f19be82822" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "88a2ca62af383a54da26f50e9b24d795", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "69a04f3a-9d61-4a3f-a370-a49745d6dfb1", + "x-ms-client-request-id": "88a2ca62af383a54da26f50e9b24d795", + "x-ms-correlation-request-id": "3af703fc-5949-43ea-9db4-02c7a8f0a2c6", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "b33a72f5-50d9-4390-8354-336f284f2781", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073117Z:3af703fc-5949-43ea-9db4-02c7a8f0a2c6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3cdfab1446b1560980d73c15a4e356eb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "cef70c8b-1890-4101-94cb-0c2eeedabd22", + "x-ms-client-request-id": "3cdfab1446b1560980d73c15a4e356eb", + "x-ms-correlation-request-id": "a40efdd5-847d-4ded-8e07-4986fc105fcb", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "a4f45d86-8f58-43c8-8e06-0c48504e70f1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073118Z:a40efdd5-847d-4ded-8e07-4986fc105fcb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b6962a251d6402cd11df7d9ff8d1ea76", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "1564ac02-4bfb-4b42-a7c3-2046dce2405c", + "x-ms-client-request-id": "b6962a251d6402cd11df7d9ff8d1ea76", + "x-ms-correlation-request-id": "fab7f8eb-d176-42c6-8c14-80dfef1d3b5f", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "076a4d56-7b16-4779-87ca-77defc51cd11", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073120Z:fab7f8eb-d176-42c6-8c14-80dfef1d3b5f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "265d999b00081ccfc04b0760733e95f6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "02f05367-95ff-47d1-90b2-916368e1c2a7", + "x-ms-client-request-id": "265d999b00081ccfc04b0760733e95f6", + "x-ms-correlation-request-id": "ac8337f8-a023-49c8-826d-7849744cf46b", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "6b95e53c-728c-48c2-afd9-d8b3770b2088", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073121Z:ac8337f8-a023-49c8-826d-7849744cf46b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "71e90ad0208df631dddd2bd1c86a5eaf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "29eb8056-8d9f-4974-9021-003dda26fda6", + "x-ms-client-request-id": "71e90ad0208df631dddd2bd1c86a5eaf", + "x-ms-correlation-request-id": "95c60e89-529e-436b-a024-65bfd1626f5e", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "6de73ce3-a9dc-4df4-a276-531edd4c76b9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073122Z:95c60e89-529e-436b-a024-65bfd1626f5e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0b79c5ed2f8525e25a7af518156d8ed2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "c3169190-6cca-40e3-b4bf-adc5c8da1236", + "x-ms-client-request-id": "0b79c5ed2f8525e25a7af518156d8ed2", + "x-ms-correlation-request-id": "efa34f25-065f-4f1d-b636-21b6871afb18", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "f5532352-d9ad-4b9b-b18a-1733dfe0f86f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073123Z:efa34f25-065f-4f1d-b636-21b6871afb18" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eecf874a79e77ae86767482bd4fe5356", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "08ca9c58-058e-4b8d-8e51-32ce969c0d60", + "x-ms-client-request-id": "eecf874a79e77ae86767482bd4fe5356", + "x-ms-correlation-request-id": "6600cb6f-1e78-40c3-9a89-de74a1b0ab62", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "c38def42-7a39-4a51-88fa-8965146f57f2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073125Z:6600cb6f-1e78-40c3-9a89-de74a1b0ab62" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ad7357ed8ac5a07027c316132a18e170", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "60a6d8f1-f186-450f-9e52-16f42ecf283c", + "x-ms-client-request-id": "ad7357ed8ac5a07027c316132a18e170", + "x-ms-correlation-request-id": "ca162ea0-2739-4262-8d57-207c975af8c0", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "ae6568d0-43a8-42b1-9bb2-bf5d7493e060", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073126Z:ca162ea0-2739-4262-8d57-207c975af8c0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4187594e6f9a73c7dcfea31ee6b7515c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "8b39236e-ff73-4cb8-8ee5-233ef9a162ba", + "x-ms-client-request-id": "4187594e6f9a73c7dcfea31ee6b7515c", + "x-ms-correlation-request-id": "008226b5-11e1-4829-b073-0d4cdca5f8fb", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "6b11f240-4a34-46e8-83ec-e1830df7079f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073127Z:008226b5-11e1-4829-b073-0d4cdca5f8fb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bd2b9f26e0f9bf0c162ec72362d5504e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "9bced726-5cc7-4ccc-a8f2-0c6c53c4cfa5", + "x-ms-client-request-id": "bd2b9f26e0f9bf0c162ec72362d5504e", + "x-ms-correlation-request-id": "0503a41c-e689-4a17-99df-3abb286cdf6d", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "faa7cb1d-6810-4e8a-8ae8-9697eab5fb43", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073129Z:0503a41c-e689-4a17-99df-3abb286cdf6d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7adcd88512767ebb90ffd1c6e652b970", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "8aff62e6-e1d4-4b06-99b7-70188af67a41", + "x-ms-client-request-id": "7adcd88512767ebb90ffd1c6e652b970", + "x-ms-correlation-request-id": "f230483d-8933-41c7-905b-e88399d92790", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "08d0ed9e-d60d-46db-b111-e9f47afc578b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073130Z:f230483d-8933-41c7-905b-e88399d92790" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8bedba7223ed6d764cc72a6ba7a31107", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "d80da527-5b31-4506-b6d9-ff37005545c8", + "x-ms-client-request-id": "8bedba7223ed6d764cc72a6ba7a31107", + "x-ms-correlation-request-id": "13d7fb59-a032-4c3c-b524-8c16066916c1", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "8ae3fe9a-46c4-42f8-bc6b-459c7d2b8483", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073131Z:13d7fb59-a032-4c3c-b524-8c16066916c1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0e9855aed6da14e5e3ad2dfa0f46d9c4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "60677a98-20b9-4b92-8447-cf7e4ee85d19", + "x-ms-client-request-id": "0e9855aed6da14e5e3ad2dfa0f46d9c4", + "x-ms-correlation-request-id": "0e18ea00-bc39-48b4-9bf3-24f0dcf9a08f", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "39b90579-0cff-4605-97b5-aae8c11682b1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073133Z:0e18ea00-bc39-48b4-9bf3-24f0dcf9a08f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a8b15775c4e76261616e2eaee74fd6ec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0cbd32a3-cb23-4bab-b2aa-138d27ec75b2", + "x-ms-client-request-id": "a8b15775c4e76261616e2eaee74fd6ec", + "x-ms-correlation-request-id": "f8d23b84-22a8-4fbb-a6a9-c335ce3881ec", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "0b2fcbe2-bdf0-46b2-9a0a-321f7f500a17", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073134Z:f8d23b84-22a8-4fbb-a6a9-c335ce3881ec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9118c9edaab99c95d4d9a740f57b5d06", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "4677e590-5404-4eeb-b713-13e249eededc", + "x-ms-client-request-id": "9118c9edaab99c95d4d9a740f57b5d06", + "x-ms-correlation-request-id": "c279ad79-e28a-4ff0-8725-93dd977407b9", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "24ea6a80-3da1-48c0-9ae3-a0c38fa88b17", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073135Z:c279ad79-e28a-4ff0-8725-93dd977407b9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "50f666ee69f2e91ff436ad6ba8362c93", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "542a04cb-6cb4-4c63-a9f2-33830d6dcf70", + "x-ms-client-request-id": "50f666ee69f2e91ff436ad6ba8362c93", + "x-ms-correlation-request-id": "f7fa123c-7c77-4568-8cbe-90b0666762b7", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "c05e7004-eb0e-40ef-9c7d-8e2b2357b8d6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073136Z:f7fa123c-7c77-4568-8cbe-90b0666762b7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "460c41d6482dcb0ac214d30e1c206ce5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b4025876-7b25-404a-b8c8-c100c2e525b4", + "x-ms-client-request-id": "460c41d6482dcb0ac214d30e1c206ce5", + "x-ms-correlation-request-id": "6dd727b4-cbb3-476e-bc30-666659644d71", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "f2e3418e-8812-4d91-bd04-07398806498a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073138Z:6dd727b4-cbb3-476e-bc30-666659644d71" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "80c02710865984f9a92e9d82fd29f49d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "9d0f5a8e-170d-4f8f-a120-51d69335455a", + "x-ms-client-request-id": "80c02710865984f9a92e9d82fd29f49d", + "x-ms-correlation-request-id": "8d7f8c98-8543-4e06-b839-a5fde15e41e9", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "e69d2f2a-2c8e-4c8e-859f-a60c5060189c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073139Z:8d7f8c98-8543-4e06-b839-a5fde15e41e9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b46a13ac176ea5d95b2b8ede9611ccd3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "de10161d-0a2f-49ca-87c5-ce0234973cc2", + "x-ms-client-request-id": "b46a13ac176ea5d95b2b8ede9611ccd3", + "x-ms-correlation-request-id": "ea4a7656-6b81-4dc4-9cef-2e8cf9ec3ed9", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "ed9151ac-5450-4728-a18f-4b4ebe994c12", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073140Z:ea4a7656-6b81-4dc4-9cef-2e8cf9ec3ed9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "805ac7caab76503a47889cfeab88ce98", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "f9386262-7be9-4dcf-97ea-587f08e8ef7a", + "x-ms-client-request-id": "805ac7caab76503a47889cfeab88ce98", + "x-ms-correlation-request-id": "a0264715-6ef4-4dd7-9001-f15ffd2bdd94", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "9da3800b-1d94-4da5-a432-f1107fa4d045", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073142Z:a0264715-6ef4-4dd7-9001-f15ffd2bdd94" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "09613520b7b6f9764e1a252ef71bee98", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "670afbdd-d38f-4e51-b11f-ebddc33ffbb8", + "x-ms-client-request-id": "09613520b7b6f9764e1a252ef71bee98", + "x-ms-correlation-request-id": "be1bbab5-71b0-4914-983d-bb92d2212b00", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "32d67915-37ed-440f-88e2-736c49f380c7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073143Z:be1bbab5-71b0-4914-983d-bb92d2212b00" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "35b8c96273cf0027d9196de67adafad3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "32ee3f57-3cf3-4bd6-951e-c9939bc7d63a", + "x-ms-client-request-id": "35b8c96273cf0027d9196de67adafad3", + "x-ms-correlation-request-id": "245ea5d8-80a6-4abd-b8c7-793ee8f5ad51", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "10a86ff9-4da7-48ad-b5e4-776dcbb37adb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073144Z:245ea5d8-80a6-4abd-b8c7-793ee8f5ad51" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "60bdf55cc3af121d5161325b860b582b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "88928d59-d2a4-4db1-8037-ba322f3b1fc3", + "x-ms-client-request-id": "60bdf55cc3af121d5161325b860b582b", + "x-ms-correlation-request-id": "5af3d0bf-1e75-4ba4-84b9-b05ebd6eb8ca", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "52e73641-f261-4179-9dfd-b5fae3a2412b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073146Z:5af3d0bf-1e75-4ba4-84b9-b05ebd6eb8ca" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e19c049a99cfadc90e602f9c4a907e74", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "a8030ef3-72f4-4b2f-b1c7-eba1211951a7", + "x-ms-client-request-id": "e19c049a99cfadc90e602f9c4a907e74", + "x-ms-correlation-request-id": "36b99f6c-1e81-43d4-a38b-c61471993852", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "81dc7aeb-d224-45a3-8ed1-26dbb713d51a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073147Z:36b99f6c-1e81-43d4-a38b-c61471993852" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "02d151208d5e9ee8aca5e36d40cc7acd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "690a35bd-1bbf-4440-a0f4-7c6ba21aeb3e", + "x-ms-client-request-id": "02d151208d5e9ee8aca5e36d40cc7acd", + "x-ms-correlation-request-id": "22d15eb2-8e34-4cc6-b1e2-ed0bcca3f1df", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "387b9457-fd14-4990-8db3-3b41a0ac9a32", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073148Z:22d15eb2-8e34-4cc6-b1e2-ed0bcca3f1df" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "764b41c1183dc3032c10524e9480c8c1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "95ae1e17-970c-4e74-bdf6-33ca6efc065a", + "x-ms-client-request-id": "764b41c1183dc3032c10524e9480c8c1", + "x-ms-correlation-request-id": "59337476-1bae-4707-9fc3-da644aa9f21a", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "0363b123-930a-4a5d-803e-cf38ddf8a8c6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073149Z:59337476-1bae-4707-9fc3-da644aa9f21a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "353abee2563a0ccd1bfe352ab55b6c41", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "f6e37c88-3824-4e04-a1c2-248a11e32364", + "x-ms-client-request-id": "353abee2563a0ccd1bfe352ab55b6c41", + "x-ms-correlation-request-id": "c62329a6-259a-4717-b83d-b691d07722d5", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "8f92f4e3-6702-4c97-b772-bf94c88c1ac5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073151Z:c62329a6-259a-4717-b83d-b691d07722d5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "08db61e6074407364e0dd54e3b9a0a2b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "88219204-59dd-4933-96ba-652e1e656ef6", + "x-ms-client-request-id": "08db61e6074407364e0dd54e3b9a0a2b", + "x-ms-correlation-request-id": "ab17e9e8-4385-4109-9069-d54be9ea3e8b", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "2f58ded6-f52d-48e0-941a-8eec89823368", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073152Z:ab17e9e8-4385-4109-9069-d54be9ea3e8b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "818a22dd45916a93743f5b3fe3d90ed1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "f4f4e436-8fca-40f8-915a-585ca78042df", + "x-ms-client-request-id": "818a22dd45916a93743f5b3fe3d90ed1", + "x-ms-correlation-request-id": "1b336eca-155e-46f9-9e9f-4fcb935471e9", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "5d243cf7-3b5b-4179-976e-ffb924e3d349", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073153Z:1b336eca-155e-46f9-9e9f-4fcb935471e9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "326710a3bfa5da7c8733e62c807fd181", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "76941e92-861d-4ca5-9415-ab78096bb26c", + "x-ms-client-request-id": "326710a3bfa5da7c8733e62c807fd181", + "x-ms-correlation-request-id": "0967bf65-bcfa-4d52-a646-d5c52050445a", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "be0d9907-cc25-4fba-98b2-1aabbb91d4a0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073155Z:0967bf65-bcfa-4d52-a646-d5c52050445a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "924c0af3ebd0a1b0ce709405acf72474", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0886f090-7a4f-43ba-954d-d56f57ac84c5", + "x-ms-client-request-id": "924c0af3ebd0a1b0ce709405acf72474", + "x-ms-correlation-request-id": "93b5878e-453c-4a3c-a6b3-9d98bd6bab45", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "3b600f10-20de-470d-8033-9842b0881632", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073156Z:93b5878e-453c-4a3c-a6b3-9d98bd6bab45" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2baa04ffd8321e86a5b0fa5e5e66e9f4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "d9af95f9-fe7b-4cc6-aa8d-2b2a63bb6e02", + "x-ms-client-request-id": "2baa04ffd8321e86a5b0fa5e5e66e9f4", + "x-ms-correlation-request-id": "5e3c7a21-ab6c-4efa-a3eb-76ec20758eb1", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "f385fcbf-2863-4a4d-b995-43b6b6bd19b4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073157Z:5e3c7a21-ab6c-4efa-a3eb-76ec20758eb1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d94bd96e7b8db8005fc563342a772e90", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "8de41247-5624-403f-82b9-012c331f0ad8", + "x-ms-client-request-id": "d94bd96e7b8db8005fc563342a772e90", + "x-ms-correlation-request-id": "2e149ec9-a9d9-411a-bd30-5de7551133dc", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "11c4ca95-c8e5-494f-9d7a-4c949b330057", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073158Z:2e149ec9-a9d9-411a-bd30-5de7551133dc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7c2c720fa5d41b4e832eed20f0524368", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "155b85e2-4728-4f2a-bba9-20ddf363e00a", + "x-ms-client-request-id": "7c2c720fa5d41b4e832eed20f0524368", + "x-ms-correlation-request-id": "002d237a-d12c-49ce-8008-67806da6260e", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "1bc8f9d8-5481-4c64-a97e-dd29fcc70001", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073200Z:002d237a-d12c-49ce-8008-67806da6260e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d296a0864aac84e703f2cb6d7451f32e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "42a0c998-0fbd-4390-ac6f-e83f6c009dbf", + "x-ms-client-request-id": "d296a0864aac84e703f2cb6d7451f32e", + "x-ms-correlation-request-id": "c01a358c-b4a4-4e73-a30b-b440306ad668", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "5041b3cd-4fa6-4eb2-aa93-3a6d6e94f8aa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073201Z:c01a358c-b4a4-4e73-a30b-b440306ad668" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ec4e69816d39c81f8b2f555f8ee0c70d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "3ac54cbb-ad19-4d53-9be2-7f15895c0f5d", + "x-ms-client-request-id": "ec4e69816d39c81f8b2f555f8ee0c70d", + "x-ms-correlation-request-id": "e390774f-b3e9-4005-bd02-36a1f3030879", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "6f95ebc9-5a18-4da5-8614-cfc264236cbc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073202Z:e390774f-b3e9-4005-bd02-36a1f3030879" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8aaefb815be0c4e38aa879e2dae1a632", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "d8cec294-c70c-4056-9e93-35d34bec3384", + "x-ms-client-request-id": "8aaefb815be0c4e38aa879e2dae1a632", + "x-ms-correlation-request-id": "7a1d1553-6449-4c9c-8c83-e51cdad870dc", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "a0b9fb44-e758-489c-a0a6-688657582bfa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073204Z:7a1d1553-6449-4c9c-8c83-e51cdad870dc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "869ebe3a5703192e80ce477df588f522", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b7e4bd9d-4f4e-4b61-8867-92106d154fea", + "x-ms-client-request-id": "869ebe3a5703192e80ce477df588f522", + "x-ms-correlation-request-id": "596aa50e-f649-4a16-a4f2-3009ac957573", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "538ad7ef-d737-45b5-8aaf-42cfff4da606", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073205Z:596aa50e-f649-4a16-a4f2-3009ac957573" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "79ebbd2b69a3264d868a6191f33deda9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "52f5902a-6271-4808-b368-05906de45fea", + "x-ms-client-request-id": "79ebbd2b69a3264d868a6191f33deda9", + "x-ms-correlation-request-id": "962992a3-decd-42c2-b4eb-1bf6d859953a", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "07308834-1e41-4874-a73c-b47ae2945adf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073206Z:962992a3-decd-42c2-b4eb-1bf6d859953a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cf24238840412a0acd9409121366ce01", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "81ac1ed9-53e4-4b52-bbea-4329f9b2f338", + "x-ms-client-request-id": "cf24238840412a0acd9409121366ce01", + "x-ms-correlation-request-id": "7ccb136c-1a53-44af-898a-ecedaa9be8f7", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "9bd7eb65-ded0-45e9-825b-b69264324b9a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073208Z:7ccb136c-1a53-44af-898a-ecedaa9be8f7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1db656b22df6d08e71770078f59c2642", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "3ebbd385-b58e-42fe-a78b-bbd453fea97d", + "x-ms-client-request-id": "1db656b22df6d08e71770078f59c2642", + "x-ms-correlation-request-id": "397c3a32-6e39-48a4-a608-a0b32e5b4f35", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "aa76956b-58c4-4164-a053-7caa1861bb98", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073209Z:397c3a32-6e39-48a4-a608-a0b32e5b4f35" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d2f49de02663eae1b2c0ab0f5f3a1320", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "a02caf18-7e4e-4038-be76-313dcdada99f", + "x-ms-client-request-id": "d2f49de02663eae1b2c0ab0f5f3a1320", + "x-ms-correlation-request-id": "d48c5df8-96c2-4508-afe7-e632a979b211", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "5ecb1e9a-c34d-4d96-a19e-ab8ecb3e1506", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073210Z:d48c5df8-96c2-4508-afe7-e632a979b211" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9cde60bbd0865ab394545dc93f913430", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "f7058fe4-c406-4a9e-84de-33901dd3a580", + "x-ms-client-request-id": "9cde60bbd0865ab394545dc93f913430", + "x-ms-correlation-request-id": "d61cf0c5-ad4c-4c0b-b811-f53fb81e076e", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "9b5e3fad-0286-4a83-ae70-84041cf45981", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073212Z:d61cf0c5-ad4c-4c0b-b811-f53fb81e076e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7531c76efc718c9e75cc6a35817f7036", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "272a2924-6a8e-44cc-a847-f60271b29cf7", + "x-ms-client-request-id": "7531c76efc718c9e75cc6a35817f7036", + "x-ms-correlation-request-id": "e7cd8712-2314-4332-b2b0-765ce42c4707", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "533ef72c-5f56-493c-a7df-8b12b4353736", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073213Z:e7cd8712-2314-4332-b2b0-765ce42c4707" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "95bce06489bd10bbea993e0ec817aa21", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "a952839d-ff63-4edb-9870-2b0248f2a9b4", + "x-ms-client-request-id": "95bce06489bd10bbea993e0ec817aa21", + "x-ms-correlation-request-id": "58ce6fea-3575-4a10-9aea-7c9539019b84", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "c210e607-dec3-4642-bbd7-be3c5a5f8fcb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073214Z:58ce6fea-3575-4a10-9aea-7c9539019b84" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "98a07b8c9d09bfaec25227ba657dd914", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "1f8032b9-386f-495b-b684-e2a086cc0988", + "x-ms-client-request-id": "98a07b8c9d09bfaec25227ba657dd914", + "x-ms-correlation-request-id": "ad250e07-91a0-4856-a9bf-c8bf99a692ac", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "9aa645ce-1809-46a1-bb74-6ba5aec7820e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073215Z:ad250e07-91a0-4856-a9bf-c8bf99a692ac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5f6526e49fd5e4730b208bd7be8fc35e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "60e4a244-2cb7-44d3-8911-1a1233efabef", + "x-ms-client-request-id": "5f6526e49fd5e4730b208bd7be8fc35e", + "x-ms-correlation-request-id": "bcd2cd5e-e890-4ddc-812d-8d215ea35a68", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "242db09b-6692-4fb1-8bf5-5731d5a3a895", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073217Z:bcd2cd5e-e890-4ddc-812d-8d215ea35a68" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "06a94921d7dfc72d31fdd36b6200ab6c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "fb5bd488-d131-452f-aa87-58c27168f857", + "x-ms-client-request-id": "06a94921d7dfc72d31fdd36b6200ab6c", + "x-ms-correlation-request-id": "d7660d93-14e5-408b-83ce-74be8b3a7f4f", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "397fe053-c358-41e9-a2ef-a39a2f854c2e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073218Z:d7660d93-14e5-408b-83ce-74be8b3a7f4f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a12a29c04bb2ec4b07bc8ce812d60133", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e35a2531-11ae-46fc-ad35-836196a9c4ce", + "x-ms-client-request-id": "a12a29c04bb2ec4b07bc8ce812d60133", + "x-ms-correlation-request-id": "2bccdac6-c50a-4709-807b-a989cb103eda", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "ef5a5bbf-c3e0-44e9-b18e-152dc537b06d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073219Z:2bccdac6-c50a-4709-807b-a989cb103eda" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1c99c88fd2d40c35f99d2dd7cc08820b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "f80d083a-3b64-4bd0-882b-62ac08e8c8f4", + "x-ms-client-request-id": "1c99c88fd2d40c35f99d2dd7cc08820b", + "x-ms-correlation-request-id": "751cf400-137c-4b01-bd4a-52ee7423ac68", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "ca331f5a-308e-413d-935c-d8243ab6ce8b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073221Z:751cf400-137c-4b01-bd4a-52ee7423ac68" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "94171e752264d6abfdbcfe234b45b45b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "8487898e-3ff3-4e4a-976c-65d6fbf284a6", + "x-ms-client-request-id": "94171e752264d6abfdbcfe234b45b45b", + "x-ms-correlation-request-id": "0df78322-7fa7-4288-97a5-e40ea6408cd5", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "94ab9597-0946-40f7-8808-2e1335fe5962", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073222Z:0df78322-7fa7-4288-97a5-e40ea6408cd5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "99dba0fb8e66ed98f41ea8141d7420ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "da5ee353-fce8-4406-ba63-4626aa8ff913", + "x-ms-client-request-id": "99dba0fb8e66ed98f41ea8141d7420ff", + "x-ms-correlation-request-id": "0e35d087-8175-4901-953b-853b81381475", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "4852fe02-9ac5-4b0a-83ae-cfb74187ce3c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073223Z:0e35d087-8175-4901-953b-853b81381475" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f47281396cbf6cce1dc31f17d412c1b4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "20017102-ea06-4891-904e-3a593781394d", + "x-ms-client-request-id": "f47281396cbf6cce1dc31f17d412c1b4", + "x-ms-correlation-request-id": "403f56c6-8d9a-430d-8239-c408d9e971b2", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "200d03e3-de07-4a85-8e6b-2f953abeb649", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073224Z:403f56c6-8d9a-430d-8239-c408d9e971b2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2bdbd2e9e92ce7a485299f467997b889", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "7c9e726f-573e-4b39-b6fc-47562baa5b18", + "x-ms-client-request-id": "2bdbd2e9e92ce7a485299f467997b889", + "x-ms-correlation-request-id": "9280861a-50b9-434d-a49f-8ab17e3081f2", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "79e65e28-e610-4b1b-a3a0-85479bf73ebf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073226Z:9280861a-50b9-434d-a49f-8ab17e3081f2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c9e9fe9cc0d28f9cd16f7ca36f8119e2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "f28d0cc5-e2f1-415d-b51b-31755ac76400", + "x-ms-client-request-id": "c9e9fe9cc0d28f9cd16f7ca36f8119e2", + "x-ms-correlation-request-id": "81098e85-457e-48ee-b649-8f5e9051cccc", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "0fd1140a-566b-4608-b995-96b7d98ebcb6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073227Z:81098e85-457e-48ee-b649-8f5e9051cccc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4b2bf45cf49850d3dd8b6e95cd88f385", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "3b9faeef-099c-4c22-be5f-2f3f4913ede1", + "x-ms-client-request-id": "4b2bf45cf49850d3dd8b6e95cd88f385", + "x-ms-correlation-request-id": "8a488a5f-83cc-421a-95a1-781f2f0b1819", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "6f2c1665-390f-49f4-a7c0-786a1893853f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073228Z:8a488a5f-83cc-421a-95a1-781f2f0b1819" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d57b950bf82828e1354c5abd6c017704", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "464b42c6-89a7-4a75-a6b6-d296b911a590", + "x-ms-client-request-id": "d57b950bf82828e1354c5abd6c017704", + "x-ms-correlation-request-id": "7f5d0d98-518d-4152-934c-f01445e47e9b", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "855d840a-9b5a-4f05-b440-37b06612fae6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073230Z:7f5d0d98-518d-4152-934c-f01445e47e9b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "85e9bc106c6ba7f12b98ec475106c148", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "92d91736-3877-422d-b741-0b25e664f224", + "x-ms-client-request-id": "85e9bc106c6ba7f12b98ec475106c148", + "x-ms-correlation-request-id": "74cff132-044c-4512-9136-d8156e01d557", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "a124553d-7f45-4091-ace1-8e2109c13536", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073231Z:74cff132-044c-4512-9136-d8156e01d557" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d998f67b440664b91202154b9a16e3dc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e85f7236-6bc6-470e-add2-5c09a8546541", + "x-ms-client-request-id": "d998f67b440664b91202154b9a16e3dc", + "x-ms-correlation-request-id": "99232494-908e-46b9-b19b-950d551af9b9", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "272ba8b6-01e7-4c17-8877-42f73dbeccf6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073232Z:99232494-908e-46b9-b19b-950d551af9b9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "10856a136d9f9e19a4d3aa8f0b9ad72f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "d8db7fa1-59eb-45b1-9ca5-4ff53fdded1e", + "x-ms-client-request-id": "10856a136d9f9e19a4d3aa8f0b9ad72f", + "x-ms-correlation-request-id": "01b234d2-e006-4cc0-a392-7f59ba1dd531", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "c21b9bde-94a1-4f2f-a0e3-72d50a845c27", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073234Z:01b234d2-e006-4cc0-a392-7f59ba1dd531" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7641118b9e68ccfd0284726957a60d14", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "a92bae05-892a-4855-be2d-8ec499159522", + "x-ms-client-request-id": "7641118b9e68ccfd0284726957a60d14", + "x-ms-correlation-request-id": "622c7713-7169-4304-bc15-2c964a3025f4", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "832fd7d9-fe42-4479-9df3-43b834044091", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073236Z:622c7713-7169-4304-bc15-2c964a3025f4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e6330fb5b1810ea9dcf93432992a5878", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "27587d96-ccfa-4587-ad1d-7fd6c94c61c1", + "x-ms-client-request-id": "e6330fb5b1810ea9dcf93432992a5878", + "x-ms-correlation-request-id": "93a92818-98ca-451e-8b04-7369f9ad2d53", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "ff26b200-8973-4820-a867-2d92e39492ec", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073237Z:93a92818-98ca-451e-8b04-7369f9ad2d53" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "88bfe62b6cd575736cb90d1bfab046fe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "127eafc4-6e3a-4121-ac32-af257fa2762b", + "x-ms-client-request-id": "88bfe62b6cd575736cb90d1bfab046fe", + "x-ms-correlation-request-id": "3c9ff076-1a3a-47ff-ae5c-d0113d1f1c35", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "2ed69538-98f6-47d6-87c6-6c35bcc6d6c3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073238Z:3c9ff076-1a3a-47ff-ae5c-d0113d1f1c35" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fbda95c6f066d9ad68329a6f69cb32d8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "dc484fbf-b288-44a9-af6e-27f24d465ff6", + "x-ms-client-request-id": "fbda95c6f066d9ad68329a6f69cb32d8", + "x-ms-correlation-request-id": "59a7fac9-426a-49da-9e0a-630db3242d52", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "20caa646-edcd-4b78-beea-5021f3eef02d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073240Z:59a7fac9-426a-49da-9e0a-630db3242d52" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "713efa2b84e6483f9cbe7ac7a38e132b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "63e4886a-7d52-4517-a3a6-d8a156253b12", + "x-ms-client-request-id": "713efa2b84e6483f9cbe7ac7a38e132b", + "x-ms-correlation-request-id": "7bde309d-8f77-4602-b48f-21fb4eb3ba86", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-request-id": "2a2e3579-6107-4063-8682-aab45d4ef633", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073241Z:7bde309d-8f77-4602-b48f-21fb4eb3ba86" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "046c35b25d503a1138e61fa2d2040ba1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0217b210-9654-4496-be2e-b0ad46c3d7c3", + "x-ms-client-request-id": "046c35b25d503a1138e61fa2d2040ba1", + "x-ms-correlation-request-id": "7e71493e-3a1c-490a-a91b-8032cd6265d5", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "7c9f85a4-a31d-48e4-9c89-416b7cc4efe7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073242Z:7e71493e-3a1c-490a-a91b-8032cd6265d5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ffef3487d572421855915fa876e635da", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "1419a70a-9284-4db7-8748-f6e72d5a6dab", + "x-ms-client-request-id": "ffef3487d572421855915fa876e635da", + "x-ms-correlation-request-id": "861fff85-a217-4160-a9f2-f6837390fd98", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "6aad011b-fea9-4cd4-81b4-4989dcd4011b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073244Z:861fff85-a217-4160-a9f2-f6837390fd98" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "33bc6e1e2d5fce88e80338ff649d7698", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "8bce9fce-f1c9-4ee2-81b6-ec9a82014872", + "x-ms-client-request-id": "33bc6e1e2d5fce88e80338ff649d7698", + "x-ms-correlation-request-id": "ce5707c8-8c52-49fe-bbba-6d18aba8ab0a", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "9930e4cf-186a-4ce4-8cba-0a86e6a7522a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073245Z:ce5707c8-8c52-49fe-bbba-6d18aba8ab0a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6f40d8b3149edcb91d29afbefd69c452", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "c27529fa-9854-4fb9-a99f-05946a3e5fff", + "x-ms-client-request-id": "6f40d8b3149edcb91d29afbefd69c452", + "x-ms-correlation-request-id": "a529880d-6b26-454d-9a32-5c84a2b4e27d", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "72b7972a-5467-4bda-ad4a-432699c2f3e4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073246Z:a529880d-6b26-454d-9a32-5c84a2b4e27d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "638345b0d7475942ac21166f9d18ddb7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:32: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": "9e8e5ae7-b551-4a88-9f49-ae477bd9b004", + "x-ms-client-request-id": "638345b0d7475942ac21166f9d18ddb7", + "x-ms-correlation-request-id": "fa6ed455-f8e1-4da6-b540-e83d3f210900", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "228f0eec-bcea-4568-811a-3663b2d11a67", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073247Z:fa6ed455-f8e1-4da6-b540-e83d3f210900" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9ef5c61bc6a50a3bb5df16357ecad07f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "f21ee575-c383-41c7-8aa4-6f344c2bec70", + "x-ms-client-request-id": "9ef5c61bc6a50a3bb5df16357ecad07f", + "x-ms-correlation-request-id": "2fefe53c-f9c9-4cf7-83bf-be43a1565d79", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "d6f74801-d5e7-4cad-8e12-a224c82eeaa5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073249Z:2fefe53c-f9c9-4cf7-83bf-be43a1565d79" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1f4fe63f1219db5095e7c37dfd493f04", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "47da1b35-9b44-4ed6-b41b-1873fac454a3", + "x-ms-client-request-id": "1f4fe63f1219db5095e7c37dfd493f04", + "x-ms-correlation-request-id": "794413f0-67d3-455d-b122-a5e5c7969d90", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "60316c49-f447-4f44-a1e1-ccd2bc20069a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073250Z:794413f0-67d3-455d-b122-a5e5c7969d90" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "37a3f74c2674e9ad0978ae68c10ddbe1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e2d2a1d1-5c76-444c-8d92-eb531c417333", + "x-ms-client-request-id": "37a3f74c2674e9ad0978ae68c10ddbe1", + "x-ms-correlation-request-id": "1e333e4f-6dc3-4e36-acef-17c8cb482a77", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "eef7a453-e2ac-441e-9967-abfb8d9c8574", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073251Z:1e333e4f-6dc3-4e36-acef-17c8cb482a77" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b6309750bec9099e751908bd03be0d6b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "5deb6465-b76a-443c-a032-a1964422b4a7", + "x-ms-client-request-id": "b6309750bec9099e751908bd03be0d6b", + "x-ms-correlation-request-id": "9c72c479-f4ef-4674-8256-5c84e720ccfa", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "8c906a52-8628-4ec1-b6e8-1ab1d65e914d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073253Z:9c72c479-f4ef-4674-8256-5c84e720ccfa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "86e9119f9926190b396515a163e81a88", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "3323d7fe-1494-4eb4-9844-5fc8384a0e5b", + "x-ms-client-request-id": "86e9119f9926190b396515a163e81a88", + "x-ms-correlation-request-id": "8152ade3-5644-43bf-8869-ea94b78e7fb2", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "5c23fe6b-0a3f-4a92-aa46-67f83548d214", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073254Z:8152ade3-5644-43bf-8869-ea94b78e7fb2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "652ce10b88198d3b599ac15a1defe64b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "134cb8e2-4a80-4556-b250-53cc221c7813", + "x-ms-client-request-id": "652ce10b88198d3b599ac15a1defe64b", + "x-ms-correlation-request-id": "a2fb61be-6498-4f67-904b-5fb770488a91", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "6c8addba-f907-48ad-bd94-ad71f396d3a2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073255Z:a2fb61be-6498-4f67-904b-5fb770488a91" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "afc8436a5424b7bb8b167d63a9fca58d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "d3bf0d57-373d-430d-aa4b-eda32c7ed84e", + "x-ms-client-request-id": "afc8436a5424b7bb8b167d63a9fca58d", + "x-ms-correlation-request-id": "43852efe-0f71-4ce9-ab56-d0380356fa2d", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "bcfce30b-bff0-40d2-9470-79445880624a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073256Z:43852efe-0f71-4ce9-ab56-d0380356fa2d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "21b280ffa7911751d65b2d8cd8b1fb49", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "17e28e06-b891-4753-a543-0851b3a15c3c", + "x-ms-client-request-id": "21b280ffa7911751d65b2d8cd8b1fb49", + "x-ms-correlation-request-id": "f60f166b-9c63-4bec-b238-c36c7c966016", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "1293d558-e41d-4bfe-a350-2ba5e760f964", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073258Z:f60f166b-9c63-4bec-b238-c36c7c966016" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2036ca7f6a20b7642675da020ad7e45c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "2d54473e-fc13-4382-b439-5bf072935182", + "x-ms-client-request-id": "2036ca7f6a20b7642675da020ad7e45c", + "x-ms-correlation-request-id": "09ccea80-1016-449a-9b56-c56acf54eb63", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "5495ef23-696d-49d4-b634-c1c47582a914", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073259Z:09ccea80-1016-449a-9b56-c56acf54eb63" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9d5a33f4c43dc2b9f1b1d8c8272ededa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "00fb11bd-9c34-47bf-b633-37bbdc695d14", + "x-ms-client-request-id": "9d5a33f4c43dc2b9f1b1d8c8272ededa", + "x-ms-correlation-request-id": "5eb4f160-ce44-40f5-b82f-e89131cf5ff7", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "163cde95-9683-485d-ab1b-3a5f4d56528b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073300Z:5eb4f160-ce44-40f5-b82f-e89131cf5ff7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dee4341b85c6946d1bfbfb1ccd4e0cfe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "7b788791-8d72-4b68-8e94-41f2b5b5a38c", + "x-ms-client-request-id": "dee4341b85c6946d1bfbfb1ccd4e0cfe", + "x-ms-correlation-request-id": "47d79393-dd55-4662-bd6b-e88218b4af9b", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "b21a818d-6226-4149-b300-d77deceaba5f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073302Z:47d79393-dd55-4662-bd6b-e88218b4af9b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a498d0765d56ba0c10732e6e929b8ff8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "1df2cfbb-a184-4d43-b3c3-a4a26fcaf904", + "x-ms-client-request-id": "a498d0765d56ba0c10732e6e929b8ff8", + "x-ms-correlation-request-id": "96a07a1d-6699-4bd3-a329-ac1cbdb79ba1", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "db398a31-38e9-4b54-90b7-2c9abe4df76d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073303Z:96a07a1d-6699-4bd3-a329-ac1cbdb79ba1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d6e7009605f36f96c6c58142c89df5a3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "d14f4d36-e9e1-4531-bcc9-6834e1db2a25", + "x-ms-client-request-id": "d6e7009605f36f96c6c58142c89df5a3", + "x-ms-correlation-request-id": "4a3636d1-16c5-47dd-a18b-cd0c75b0a1c0", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "1aa57da0-e853-4d46-bc97-04766ba39c78", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073304Z:4a3636d1-16c5-47dd-a18b-cd0c75b0a1c0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5652daa43a96bd83272ace5256fe0280", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "c756796f-d34e-4f25-887e-a28ca6d135f7", + "x-ms-client-request-id": "5652daa43a96bd83272ace5256fe0280", + "x-ms-correlation-request-id": "efb6e151-be0b-49fd-b9a7-292924efbdd4", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "5a6acd6e-3ae6-4f0d-b2a4-e2e54a79460a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073306Z:efb6e151-be0b-49fd-b9a7-292924efbdd4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cd85036b3567710b3a28de91dccaf173", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "29fafd35-3721-4635-8caf-a9df935221fa", + "x-ms-client-request-id": "cd85036b3567710b3a28de91dccaf173", + "x-ms-correlation-request-id": "110fe592-3504-4dbd-ab8e-864a615b805f", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "c7a1d900-bc26-4484-ad20-9d40180b94dc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073307Z:110fe592-3504-4dbd-ab8e-864a615b805f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b7ca8b7e39485c617d29aec9374418c7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "25fb1366-040e-4752-9f6d-5efb6b67b7fc", + "x-ms-client-request-id": "b7ca8b7e39485c617d29aec9374418c7", + "x-ms-correlation-request-id": "72f14d07-5d78-472d-bc04-61292118f4f2", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "999b52e9-dc1b-4d23-bec1-1a83ec31757b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073308Z:72f14d07-5d78-472d-bc04-61292118f4f2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c5d600c328186e3ccee01c6d5bf1e15d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "00acabbd-4707-4624-8324-7880888b69e0", + "x-ms-client-request-id": "c5d600c328186e3ccee01c6d5bf1e15d", + "x-ms-correlation-request-id": "bcce094b-aef0-4114-b2e6-606080f65276", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "8cb259cd-7b8c-4422-90a8-22cbf99174c9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073309Z:bcce094b-aef0-4114-b2e6-606080f65276" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cbd45b384a343238a1284f3d874239f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "fb271003-851d-43e3-be05-7c3bb1fa3666", + "x-ms-client-request-id": "cbd45b384a343238a1284f3d874239f5", + "x-ms-correlation-request-id": "d66796e1-c4b4-4b86-9dc4-57894b78ebe8", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "504f82e8-c3da-4462-a0cf-d07123fbaeb1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073311Z:d66796e1-c4b4-4b86-9dc4-57894b78ebe8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dbcd160f2cf3555a4f5be9671cf4008b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "3076f770-34f0-4324-850b-04fa0b668100", + "x-ms-client-request-id": "dbcd160f2cf3555a4f5be9671cf4008b", + "x-ms-correlation-request-id": "a95cbb32-2899-4b7c-af94-5786a7eedf6a", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "39dfeb43-08c4-4966-86a2-d66ecc5de089", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073312Z:a95cbb32-2899-4b7c-af94-5786a7eedf6a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dc9051474d6f7893c8a423efd8fee78c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "5c94bb76-cae7-4984-adda-55b506438a96", + "x-ms-client-request-id": "dc9051474d6f7893c8a423efd8fee78c", + "x-ms-correlation-request-id": "be0434b9-fb2a-412b-88e8-4aa40c9a2cca", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "2c3d4988-cdc1-49f8-b20b-b22b598080eb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073313Z:be0434b9-fb2a-412b-88e8-4aa40c9a2cca" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "455d26a606240c69007e7cd961d015ad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "85603238-e5fa-4ed1-910e-3e56a528f82b", + "x-ms-client-request-id": "455d26a606240c69007e7cd961d015ad", + "x-ms-correlation-request-id": "d063674c-7055-4740-9ff2-f82625b0bb47", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "c911c765-dca9-4eb7-a5bc-f6c514013943", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073315Z:d063674c-7055-4740-9ff2-f82625b0bb47" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "35f6c4275db1c2868355124f086b7d50", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "a40a1b78-4f56-4519-a606-f9eb3c4154a9", + "x-ms-client-request-id": "35f6c4275db1c2868355124f086b7d50", + "x-ms-correlation-request-id": "438891c9-c574-4f0d-8818-807216462668", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "462f9ffb-7c11-4f03-949d-447d078cbb01", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073316Z:438891c9-c574-4f0d-8818-807216462668" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f5c15d73bb974067e784dbf1d1ba17f8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "5ecd11d6-6c87-40e0-9a81-3d3a94e6f378", + "x-ms-client-request-id": "f5c15d73bb974067e784dbf1d1ba17f8", + "x-ms-correlation-request-id": "92228df7-38f8-42a0-a0e2-f82df3f1768c", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "deec14fd-d9b4-4fed-a514-919e4c009eb5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073317Z:92228df7-38f8-42a0-a0e2-f82df3f1768c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "14c7768eb10849daa09bc2cef41a0394", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "64488dcc-03d5-457e-b493-1cb4986ae7de", + "x-ms-client-request-id": "14c7768eb10849daa09bc2cef41a0394", + "x-ms-correlation-request-id": "9984f92a-a0f9-4984-9bb3-f09164f234e0", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "54cc3c00-1f47-4017-91a7-7b2e4396b3fc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073319Z:9984f92a-a0f9-4984-9bb3-f09164f234e0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "03652b01200f6c165cb54e2d8194f1c8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "980c5994-260a-49f8-b0a1-27b3be869c60", + "x-ms-client-request-id": "03652b01200f6c165cb54e2d8194f1c8", + "x-ms-correlation-request-id": "6605db51-a6a8-45b1-bcd8-bd54410e94cc", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "f2132ef8-1ed7-4008-9ed2-42d430595859", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073320Z:6605db51-a6a8-45b1-bcd8-bd54410e94cc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "92c0193d68a3c148827855fcf9984ccc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "bf72af06-e120-4d0a-b5be-e3701127a9f5", + "x-ms-client-request-id": "92c0193d68a3c148827855fcf9984ccc", + "x-ms-correlation-request-id": "9f5c9bbb-1da2-4e75-9333-379135824696", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "5e7b5d4e-82ef-4d58-8f65-5a46883651b9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073321Z:9f5c9bbb-1da2-4e75-9333-379135824696" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a5ef478113556ee9605bb75363adc70b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "337186c0-e1d5-4a3b-8638-63696fbcddfc", + "x-ms-client-request-id": "a5ef478113556ee9605bb75363adc70b", + "x-ms-correlation-request-id": "fe01740f-4c49-4b64-b83d-39b3fb318e7b", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "13a64084-5cdc-4330-936b-1bdd5158f38a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073322Z:fe01740f-4c49-4b64-b83d-39b3fb318e7b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "da90f9a9715a98f0e3a38197ca1a72c4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "04001655-2ad2-4523-9bf2-a3fbe3203791", + "x-ms-client-request-id": "da90f9a9715a98f0e3a38197ca1a72c4", + "x-ms-correlation-request-id": "d55d744c-f80a-40d1-8003-8888207b68a2", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "c23f171f-51b6-4ea0-af98-30d6a10df6c3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073324Z:d55d744c-f80a-40d1-8003-8888207b68a2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3aac82684ba52a7330523248b1f45ed5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "c5523df1-bff6-4735-b2cb-7d1e0bd76d9a", + "x-ms-client-request-id": "3aac82684ba52a7330523248b1f45ed5", + "x-ms-correlation-request-id": "073a41a3-6131-434e-af39-22fdfa5ed68e", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "6100a7a1-c2ba-4a11-80c5-18b26b092818", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073325Z:073a41a3-6131-434e-af39-22fdfa5ed68e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ff5249b0720710725656c1b19252a346", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "d2864951-02a4-4e43-9492-6610634f9b05", + "x-ms-client-request-id": "ff5249b0720710725656c1b19252a346", + "x-ms-correlation-request-id": "e90480f9-a6fd-4980-ad62-76a5041b9e46", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "8820874b-2f9a-41c6-a5e7-c72ae3add97b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073326Z:e90480f9-a6fd-4980-ad62-76a5041b9e46" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e1eaf3e88c015d668666a9073ea8e7ee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0841b042-0e3a-40f7-a215-26251e89ef4b", + "x-ms-client-request-id": "e1eaf3e88c015d668666a9073ea8e7ee", + "x-ms-correlation-request-id": "d4084253-40a5-41c2-ad7c-12ccb4b1705f", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "0ddb1a14-4354-44f8-88e3-35ab6c5aea6a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073328Z:d4084253-40a5-41c2-ad7c-12ccb4b1705f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "81e6ab4472c7f5bc0f9ce44e8ac197dd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0f2c8dff-bdd8-487d-8df1-9149fa0048e9", + "x-ms-client-request-id": "81e6ab4472c7f5bc0f9ce44e8ac197dd", + "x-ms-correlation-request-id": "0f3c31cc-67ca-4d90-a475-2fa33f581600", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "d9a31cd0-74f8-4d67-b20c-3aeb8ab084bd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073329Z:0f3c31cc-67ca-4d90-a475-2fa33f581600" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bd5febae7d0924d4e3f479a1c86ad1ae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:33: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": "c48f2ee3-1888-4de5-93b9-ce76c8598926", + "x-ms-client-request-id": "bd5febae7d0924d4e3f479a1c86ad1ae", + "x-ms-correlation-request-id": "84b351b4-8ce2-47aa-9ef5-cbb97d0343b1", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "a244acc7-e595-498b-8910-77addeb32800", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073330Z:84b351b4-8ce2-47aa-9ef5-cbb97d0343b1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e76cd26e226c767e37f5d164a817d3c4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "6c165293-611a-4c95-99c9-a458ca97778f", + "x-ms-client-request-id": "e76cd26e226c767e37f5d164a817d3c4", + "x-ms-correlation-request-id": "5c6291d4-56ed-4b62-ad45-c6c17c146a30", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "c773ec6a-c511-42bf-9206-6b232b3e1b5f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073332Z:5c6291d4-56ed-4b62-ad45-c6c17c146a30" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5259ccce2a48c7e4d6c19dd2f81b2ca5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "fe3db037-7b2f-4023-8223-46e109a63ef3", + "x-ms-client-request-id": "5259ccce2a48c7e4d6c19dd2f81b2ca5", + "x-ms-correlation-request-id": "7940fc8d-6201-4383-a7c5-cdd5e2db1e7c", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "f4d9fa05-153f-4044-adbe-b0de508e3d1e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073333Z:7940fc8d-6201-4383-a7c5-cdd5e2db1e7c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b7df36cab0558c716de98614ac6f7ccc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "47df056c-a406-48f6-a7be-0bafe2220cfb", + "x-ms-client-request-id": "b7df36cab0558c716de98614ac6f7ccc", + "x-ms-correlation-request-id": "10aca66c-926e-4c0e-8b43-2c3a0b8ba2c8", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "20b7a413-04f3-4f8e-9cfa-c7c2a259be6a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073334Z:10aca66c-926e-4c0e-8b43-2c3a0b8ba2c8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fcd2b5217e114465eea510ab85ab7d1c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "f88dd8f6-a9db-43d1-9f01-4434f4117aaf", + "x-ms-client-request-id": "fcd2b5217e114465eea510ab85ab7d1c", + "x-ms-correlation-request-id": "46aca87b-09d0-4b17-9bfe-8e2440d1c712", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "6ae4df2d-bdc9-487d-8bb2-914150b16947", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073335Z:46aca87b-09d0-4b17-9bfe-8e2440d1c712" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "72992bc81c371e6e5acce55fa4d01b66", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "eb655def-7437-4f00-8deb-cd517d6e20b4", + "x-ms-client-request-id": "72992bc81c371e6e5acce55fa4d01b66", + "x-ms-correlation-request-id": "374410cd-9087-4308-9ff4-398abd5fb5e3", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "072a8feb-c5a1-4b27-bdd7-a3aa2b123bec", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073337Z:374410cd-9087-4308-9ff4-398abd5fb5e3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "42b1d04430494c93d09bc9afa0c607c1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "90c1d808-d347-4a98-936d-da841501bebd", + "x-ms-client-request-id": "42b1d04430494c93d09bc9afa0c607c1", + "x-ms-correlation-request-id": "b9261bac-ddbe-41fd-a5d2-1f633b72f178", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "fee27002-ec66-47b9-b3b6-90698fa48834", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073338Z:b9261bac-ddbe-41fd-a5d2-1f633b72f178" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "804c696b0ad5049447b3a14498059f1e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "be7e709d-cd93-49d4-8a32-a715bfd8c8af", + "x-ms-client-request-id": "804c696b0ad5049447b3a14498059f1e", + "x-ms-correlation-request-id": "ae3d9500-99c7-4a69-b9ac-c4370d87d502", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "78a45146-6341-41e4-a139-862e5f74cd0d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073339Z:ae3d9500-99c7-4a69-b9ac-c4370d87d502" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b466a98a3af998d3984da19b53be7e94", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "40de86cc-83ca-44f4-a0af-877f1974d241", + "x-ms-client-request-id": "b466a98a3af998d3984da19b53be7e94", + "x-ms-correlation-request-id": "1f1fbd97-c4d2-496f-9492-bea207bac9ac", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "1f0e2a25-7e14-4521-b2c7-7d4ee4b8c34b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073341Z:1f1fbd97-c4d2-496f-9492-bea207bac9ac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3af423c59a843a913bacfb958e4fb3cb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "c4cb1af1-3165-427c-9be5-9181a6e5c252", + "x-ms-client-request-id": "3af423c59a843a913bacfb958e4fb3cb", + "x-ms-correlation-request-id": "75143ecd-d763-4934-818f-33e52b26c589", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "719eed2d-2fa6-4485-9c07-a0c60a8f3ef7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073343Z:75143ecd-d763-4934-818f-33e52b26c589" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f625abfb526030c896b3e88869f9b188", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "95cfe1f1-e156-4a5c-be7a-697e27524c51", + "x-ms-client-request-id": "f625abfb526030c896b3e88869f9b188", + "x-ms-correlation-request-id": "5cb94026-dad5-43c6-bc45-5846f28d7346", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "ce2e3453-3a84-40ac-a725-f5cb335a43a8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073344Z:5cb94026-dad5-43c6-bc45-5846f28d7346" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "757e0d356510ef99182b784c3f3d0a48", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "8d7f756a-8105-4f7b-9226-d1f2676f4577", + "x-ms-client-request-id": "757e0d356510ef99182b784c3f3d0a48", + "x-ms-correlation-request-id": "5b841bdc-c61a-4e69-a23f-49fd84b53132", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "222b15be-5334-4ab8-a2d5-f8158ea82c2c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073345Z:5b841bdc-c61a-4e69-a23f-49fd84b53132" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a8a0d599889972345bc3a3d0b208d142", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "f47c691f-512b-4a1a-bc38-ea41340f8f4d", + "x-ms-client-request-id": "a8a0d599889972345bc3a3d0b208d142", + "x-ms-correlation-request-id": "0d205e2c-3811-458d-befe-44a7d1c33e8a", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "6731416c-9a42-4f14-988a-3256f44a7b3f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073347Z:0d205e2c-3811-458d-befe-44a7d1c33e8a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "806073fb3ed096ba1136dd34da7bf159", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "7bfe5ac0-36dd-40a1-beb8-633ac86838ac", + "x-ms-client-request-id": "806073fb3ed096ba1136dd34da7bf159", + "x-ms-correlation-request-id": "d2081fbb-7aa6-4476-b8b6-c61caa06100b", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "2569968d-0873-4f08-a6bc-fcb584a957c0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073348Z:d2081fbb-7aa6-4476-b8b6-c61caa06100b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "93ef9fa90959adefd90c194cc2c93c10", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:33: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": "f058c83e-a09a-499f-9e34-b092779d5dad", + "x-ms-client-request-id": "93ef9fa90959adefd90c194cc2c93c10", + "x-ms-correlation-request-id": "90964847-1802-43e2-bc64-837b273e419d", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "ae18f2c3-1be8-41f1-825c-9bd5e4dd466a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073349Z:90964847-1802-43e2-bc64-837b273e419d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cb51355a89dd5b781a099662aaff98e0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "5118dedb-3f08-4d77-9d52-a3b507a4a53e", + "x-ms-client-request-id": "cb51355a89dd5b781a099662aaff98e0", + "x-ms-correlation-request-id": "debc2d86-aecf-4fe9-8f01-b6106e23fa39", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "0f3c92eb-f304-4dee-a523-77588269e7e5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073351Z:debc2d86-aecf-4fe9-8f01-b6106e23fa39" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "13264ad23d19f1e984b3a7c4246dd447", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "2eed014e-63ea-4a9f-b624-1f270014bc74", + "x-ms-client-request-id": "13264ad23d19f1e984b3a7c4246dd447", + "x-ms-correlation-request-id": "6379f23e-c205-4e4b-9429-5541d34ba8a0", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "3e92025c-5733-4a3b-8544-7bd8379fe8fc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073352Z:6379f23e-c205-4e4b-9429-5541d34ba8a0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a5dacdf92529207c2694784f728c02d9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "a4cab035-8a7a-4b01-bf20-d8651595d15e", + "x-ms-client-request-id": "a5dacdf92529207c2694784f728c02d9", + "x-ms-correlation-request-id": "ea01c1fc-3750-4b42-b923-8e61550fa6d5", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "c94c8b7e-9c1c-4826-9250-330838877c15", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073353Z:ea01c1fc-3750-4b42-b923-8e61550fa6d5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "777a397329a31cf74c604729e1b436ac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b424cd5d-fd90-49eb-8e06-d56c49453a1d", + "x-ms-client-request-id": "777a397329a31cf74c604729e1b436ac", + "x-ms-correlation-request-id": "5a5d04b8-7cad-4654-b7a1-45b8c63afc1d", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "bf932b42-25a0-4cb3-b651-9ba4ab46c919", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073354Z:5a5d04b8-7cad-4654-b7a1-45b8c63afc1d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dc684f35f325acb6cd06ec84c49a7ef7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "1a365c09-c9ff-4210-a0bd-a6c6d5c004e4", + "x-ms-client-request-id": "dc684f35f325acb6cd06ec84c49a7ef7", + "x-ms-correlation-request-id": "d887ab0c-3c04-45fd-8c41-82ffcd72a2ba", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "70ee54f2-634b-4f3a-97a7-0d0b020f1c52", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073356Z:d887ab0c-3c04-45fd-8c41-82ffcd72a2ba" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ea50ceb05cf3d0a4d6bd58c9dd523e72", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b40e61e3-45b9-4cdc-a9a7-481ff1e3a101", + "x-ms-client-request-id": "ea50ceb05cf3d0a4d6bd58c9dd523e72", + "x-ms-correlation-request-id": "e5315842-458b-41b8-bfd4-896ea38fa311", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "409a246d-f5c0-4954-9995-18eff7b69ead", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073357Z:e5315842-458b-41b8-bfd4-896ea38fa311" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2319cc5d262380b383cda99d3c7257b2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "1869c73a-57ee-4d5f-88a0-cc6826368e8b", + "x-ms-client-request-id": "2319cc5d262380b383cda99d3c7257b2", + "x-ms-correlation-request-id": "a849698e-dd1b-4658-ac0a-38198aa44135", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-request-id": "5ffb22d4-33ad-40cd-a2a5-7a60b32730ea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073358Z:a849698e-dd1b-4658-ac0a-38198aa44135" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "137950e14c63d9b9ab9806679aedce7b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "69e713fc-241f-49f5-bce6-07134259eaed", + "x-ms-client-request-id": "137950e14c63d9b9ab9806679aedce7b", + "x-ms-correlation-request-id": "e2fc80c0-b180-4bf6-9233-25e2fb2c8912", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "d01e22fb-7b91-4a0f-9db1-8bb1efe3b32b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073359Z:e2fc80c0-b180-4bf6-9233-25e2fb2c8912" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f82779c75b808ad31acf6726b2079364", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "6861de87-4a1a-430c-9f40-311c3a179f9b", + "x-ms-client-request-id": "f82779c75b808ad31acf6726b2079364", + "x-ms-correlation-request-id": "a4efa969-748a-4c6f-852d-a03ed113388e", + "x-ms-ratelimit-remaining-subscription-reads": "11788", + "x-ms-request-id": "607b5779-23c4-498e-961d-7cacc3067b68", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073402Z:a4efa969-748a-4c6f-852d-a03ed113388e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8de7a6662bd9110e123f778b1f4be695", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "ce3e46aa-9ff0-45a7-8ccc-26fac813d85b", + "x-ms-client-request-id": "8de7a6662bd9110e123f778b1f4be695", + "x-ms-correlation-request-id": "13302bcf-fdc4-41ee-ab47-825bff2a0484", + "x-ms-ratelimit-remaining-subscription-reads": "11787", + "x-ms-request-id": "3629e656-7b70-4c22-a077-d1c4290c5948", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073403Z:13302bcf-fdc4-41ee-ab47-825bff2a0484" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c3d52efe5e4a86317ceef893e49227a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "9332b90e-b602-4f83-8451-9530fe61fa40", + "x-ms-client-request-id": "c3d52efe5e4a86317ceef893e49227a4", + "x-ms-correlation-request-id": "124b5b40-b957-4832-af1b-305d75ffeb15", + "x-ms-ratelimit-remaining-subscription-reads": "11786", + "x-ms-request-id": "d35fa942-3808-466f-82bf-0abdd52adf74", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073405Z:124b5b40-b957-4832-af1b-305d75ffeb15" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f301a20441069ba26a16e641e3486ace", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "07d66ba5-f139-46a0-9d3c-a7ec31f08eda", + "x-ms-client-request-id": "f301a20441069ba26a16e641e3486ace", + "x-ms-correlation-request-id": "994f138c-a718-47f0-aa05-be535b245b66", + "x-ms-ratelimit-remaining-subscription-reads": "11785", + "x-ms-request-id": "43cd14fd-3534-46d8-b30b-042d1cbf8878", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073406Z:994f138c-a718-47f0-aa05-be535b245b66" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8327d1e9d0310719756111ea327b2c7f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "28c0dc2d-c4d3-4ab1-b1df-911811a1e5e8", + "x-ms-client-request-id": "8327d1e9d0310719756111ea327b2c7f", + "x-ms-correlation-request-id": "17d4fa0a-8b66-4793-a5e4-3f5e27776f7f", + "x-ms-ratelimit-remaining-subscription-reads": "11784", + "x-ms-request-id": "245da2ad-0c9e-4213-b9b0-89a59ce21842", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073407Z:17d4fa0a-8b66-4793-a5e4-3f5e27776f7f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7d86d317f249bd8f8b39583478efa233", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "2e2dc35f-02c5-460e-91c2-e2368001a5fc", + "x-ms-client-request-id": "7d86d317f249bd8f8b39583478efa233", + "x-ms-correlation-request-id": "2fde7f36-eb56-4ef3-be92-8288ef5b8750", + "x-ms-ratelimit-remaining-subscription-reads": "11783", + "x-ms-request-id": "0d1456ef-7320-414e-bbcc-a68b7211ef6e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073408Z:2fde7f36-eb56-4ef3-be92-8288ef5b8750" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "13aa2984a36b347288fa7da52fb869ef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "ab1de5c8-20cb-4ebc-99a1-25810c12085f", + "x-ms-client-request-id": "13aa2984a36b347288fa7da52fb869ef", + "x-ms-correlation-request-id": "0bf7753b-5992-4d99-b88c-6b25cbade22f", + "x-ms-ratelimit-remaining-subscription-reads": "11782", + "x-ms-request-id": "76e9d070-49fa-4697-98f0-9e313e73be40", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073410Z:0bf7753b-5992-4d99-b88c-6b25cbade22f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "102966eaecc1f684426af8f778e58f85", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "8f4a92f9-4711-4591-a0f8-e839ceea8421", + "x-ms-client-request-id": "102966eaecc1f684426af8f778e58f85", + "x-ms-correlation-request-id": "ac367772-3f21-4756-bb92-07b9bdb9eb05", + "x-ms-ratelimit-remaining-subscription-reads": "11781", + "x-ms-request-id": "713dc942-25f3-453f-a457-5b4682254d83", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073411Z:ac367772-3f21-4756-bb92-07b9bdb9eb05" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0865ddbe19d073146052f54f75ea8dd3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "4d34c6d9-5509-42a8-bc63-e17e75a2a224", + "x-ms-client-request-id": "0865ddbe19d073146052f54f75ea8dd3", + "x-ms-correlation-request-id": "1443db10-8ca0-44e6-8547-c130563e0054", + "x-ms-ratelimit-remaining-subscription-reads": "11780", + "x-ms-request-id": "f085dd76-c05c-44be-b44a-a90cdab4a22c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073412Z:1443db10-8ca0-44e6-8547-c130563e0054" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "124a68d092c69771a5b3d000ab7abba3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "63a0f020-9a52-4340-8eb0-99c8cfc19651", + "x-ms-client-request-id": "124a68d092c69771a5b3d000ab7abba3", + "x-ms-correlation-request-id": "45b87482-c3d4-49ab-8af8-c2d61d115f01", + "x-ms-ratelimit-remaining-subscription-reads": "11779", + "x-ms-request-id": "3d21ef98-fe19-4e5b-b62b-da20de5f440f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073414Z:45b87482-c3d4-49ab-8af8-c2d61d115f01" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "51e6f76b6052d01e51b5af6ff7358157", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "65065a32-db46-45e2-a9fc-9d1f565aebb5", + "x-ms-client-request-id": "51e6f76b6052d01e51b5af6ff7358157", + "x-ms-correlation-request-id": "b1057f77-1f15-441d-9148-030a406b0463", + "x-ms-ratelimit-remaining-subscription-reads": "11778", + "x-ms-request-id": "aaa0269c-201b-4c46-81fd-c5cd74c53a74", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073415Z:b1057f77-1f15-441d-9148-030a406b0463" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0f2725dc7c9b2bbf6cce631d4813c8e6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:34: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": "ffbdb7e9-32c9-4684-8cd6-832fbf368295", + "x-ms-client-request-id": "0f2725dc7c9b2bbf6cce631d4813c8e6", + "x-ms-correlation-request-id": "965035a5-4eff-45b5-9708-47c82bf1a10f", + "x-ms-ratelimit-remaining-subscription-reads": "11777", + "x-ms-request-id": "ef430013-6ca7-40bf-af02-8db3588430fc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073416Z:965035a5-4eff-45b5-9708-47c82bf1a10f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7de452963c036f804979c110e302a070", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "8b30bc53-d1b2-42f5-90fd-a259aaf2e0cd", + "x-ms-client-request-id": "7de452963c036f804979c110e302a070", + "x-ms-correlation-request-id": "e212c7a1-3f19-4026-ace6-2ea157cf0600", + "x-ms-ratelimit-remaining-subscription-reads": "11776", + "x-ms-request-id": "6eae2386-8273-4c25-926d-1153cfcb0a2b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073417Z:e212c7a1-3f19-4026-ace6-2ea157cf0600" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "86247931ab53ee0738bae584fd01883d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "9c4a575d-4c94-4a73-aaac-4cf363f2b89b", + "x-ms-client-request-id": "86247931ab53ee0738bae584fd01883d", + "x-ms-correlation-request-id": "5883dbdc-8060-4639-a98d-4b24a39d2ce5", + "x-ms-ratelimit-remaining-subscription-reads": "11775", + "x-ms-request-id": "06559dc1-78e5-4198-9c6f-d6e328989d7a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073419Z:5883dbdc-8060-4639-a98d-4b24a39d2ce5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a5d8c8ed0450a054a4b7c622bbae4869", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "2a9f3cef-5d72-4dc1-a91f-7659f3c839ba", + "x-ms-client-request-id": "a5d8c8ed0450a054a4b7c622bbae4869", + "x-ms-correlation-request-id": "78750471-7a96-45fa-a675-bf6bc38aaaf2", + "x-ms-ratelimit-remaining-subscription-reads": "11774", + "x-ms-request-id": "fc245d6b-6ec1-41e9-a93e-26ff7e7f64d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073420Z:78750471-7a96-45fa-a675-bf6bc38aaaf2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cfebf32e41efeb934af5444856fb7247", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "5b79db2c-3672-447e-924b-12cce0aa0642", + "x-ms-client-request-id": "cfebf32e41efeb934af5444856fb7247", + "x-ms-correlation-request-id": "56881be6-e098-4bdb-b112-c6b835301669", + "x-ms-ratelimit-remaining-subscription-reads": "11773", + "x-ms-request-id": "98ace21f-bb3f-4a87-9442-2168a4bc5519", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073421Z:56881be6-e098-4bdb-b112-c6b835301669" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1a2383f0fa292d1f2583e19be5e5338a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0d882e73-9a33-43e5-81e7-9ba4c7eac590", + "x-ms-client-request-id": "1a2383f0fa292d1f2583e19be5e5338a", + "x-ms-correlation-request-id": "0d3259ba-b9f4-4050-9022-bda298aa4ed2", + "x-ms-ratelimit-remaining-subscription-reads": "11772", + "x-ms-request-id": "c1648d24-3d94-4e9e-b4e4-6b1b29048ab7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073423Z:0d3259ba-b9f4-4050-9022-bda298aa4ed2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "09567b72b916ab4d35ed5b5bbf0b49a9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "1ab4495d-b183-4321-bc57-075598ccbe15", + "x-ms-client-request-id": "09567b72b916ab4d35ed5b5bbf0b49a9", + "x-ms-correlation-request-id": "9d38a164-af21-4685-8c29-cbb001d8e8ca", + "x-ms-ratelimit-remaining-subscription-reads": "11771", + "x-ms-request-id": "bfd9ebae-8feb-460a-b7f0-badebf226be9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073424Z:9d38a164-af21-4685-8c29-cbb001d8e8ca" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "37317e442d8b3340d3bdaa6b5ff70564", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "264ab6c2-77d6-4da3-8a6f-f7aec88febd1", + "x-ms-client-request-id": "37317e442d8b3340d3bdaa6b5ff70564", + "x-ms-correlation-request-id": "2a346725-b624-48d0-a216-df64b293ce89", + "x-ms-ratelimit-remaining-subscription-reads": "11770", + "x-ms-request-id": "26de4b29-01e5-469a-86ec-cfa640c03d47", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073425Z:2a346725-b624-48d0-a216-df64b293ce89" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dbd6bac269a437313677e53c9fc46d19", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "48701daf-2d06-4fa1-97e1-bed6560a723e", + "x-ms-client-request-id": "dbd6bac269a437313677e53c9fc46d19", + "x-ms-correlation-request-id": "570ece92-3b4d-447e-8bff-2767a675e94d", + "x-ms-ratelimit-remaining-subscription-reads": "11763", + "x-ms-request-id": "b8275f54-15a1-4788-9f56-e8e7510bd672", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073427Z:570ece92-3b4d-447e-8bff-2767a675e94d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6756383afbb445fe3b2335580fe14c3e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "9c500839-a221-4eda-9207-c0f838d9f009", + "x-ms-client-request-id": "6756383afbb445fe3b2335580fe14c3e", + "x-ms-correlation-request-id": "e003a805-d5ae-4422-a85b-707b39bab3ae", + "x-ms-ratelimit-remaining-subscription-reads": "11762", + "x-ms-request-id": "9626e367-8f52-4dc7-be15-56c8ec6de3ba", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073428Z:e003a805-d5ae-4422-a85b-707b39bab3ae" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0598f7e76e35db044cfa01134803940f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "d42e0e80-3c4c-4b54-942f-f13647aa16c7", + "x-ms-client-request-id": "0598f7e76e35db044cfa01134803940f", + "x-ms-correlation-request-id": "09c6d2f0-7f0a-48ea-a8e5-561c3ecdf779", + "x-ms-ratelimit-remaining-subscription-reads": "11761", + "x-ms-request-id": "ab7afcc0-91c4-460c-9e47-99c9fa652497", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073429Z:09c6d2f0-7f0a-48ea-a8e5-561c3ecdf779" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "273190509ea1c6b0bb909f8133d92754", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "195b30cc-5ac3-4b60-8f16-f2f35e95b2c2", + "x-ms-client-request-id": "273190509ea1c6b0bb909f8133d92754", + "x-ms-correlation-request-id": "f601d061-67d9-43e0-a56c-db0915c3528e", + "x-ms-ratelimit-remaining-subscription-reads": "11760", + "x-ms-request-id": "cc6c3b24-c160-42cc-aeca-85c0a5b6e8a2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073430Z:f601d061-67d9-43e0-a56c-db0915c3528e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a855a72b672bcbe4347a1ab9faebfc37", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "83dbf199-2911-4bff-9aee-ee5b887629d0", + "x-ms-client-request-id": "a855a72b672bcbe4347a1ab9faebfc37", + "x-ms-correlation-request-id": "fd82369d-9104-4b2a-aa84-e3bc31eb8225", + "x-ms-ratelimit-remaining-subscription-reads": "11759", + "x-ms-request-id": "b48b48fb-e28b-4b9d-a4ad-b9f2c6e5386a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073432Z:fd82369d-9104-4b2a-aa84-e3bc31eb8225" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7f08268e24b0489c46d14aa4ce82a873", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "6ca208b6-b8a8-4e1a-a5d5-aff9591bd746", + "x-ms-client-request-id": "7f08268e24b0489c46d14aa4ce82a873", + "x-ms-correlation-request-id": "1df078b9-a5de-4a6d-aaa5-ce4718263491", + "x-ms-ratelimit-remaining-subscription-reads": "11758", + "x-ms-request-id": "f89c67f1-7b5b-4d8f-b275-935f65e5cb88", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073433Z:1df078b9-a5de-4a6d-aaa5-ce4718263491" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a1e8add2ecaee8e3ab65f22684f6ccd0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "9e4ce695-6809-4b26-bccc-c5d2b1d9cdc4", + "x-ms-client-request-id": "a1e8add2ecaee8e3ab65f22684f6ccd0", + "x-ms-correlation-request-id": "be6ea150-8b31-46da-b5ae-a46bb6fb453a", + "x-ms-ratelimit-remaining-subscription-reads": "11757", + "x-ms-request-id": "0f36262d-63b6-4da0-96ab-cfda5ac21f52", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073435Z:be6ea150-8b31-46da-b5ae-a46bb6fb453a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0df26893a8d006a30a0c615a1d40fdb1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "ec08e13a-8281-43be-9b4f-f3da8d58038c", + "x-ms-client-request-id": "0df26893a8d006a30a0c615a1d40fdb1", + "x-ms-correlation-request-id": "521e2a86-4344-45b0-bb0e-535df5bb2ca4", + "x-ms-ratelimit-remaining-subscription-reads": "11756", + "x-ms-request-id": "1d3da11f-5879-4bb9-aac0-ddfd612a841c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073436Z:521e2a86-4344-45b0-bb0e-535df5bb2ca4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4de6a6d25b02a289421fd34b3176c450", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "5831184a-2a66-4f56-95e1-e9df55b8c515", + "x-ms-client-request-id": "4de6a6d25b02a289421fd34b3176c450", + "x-ms-correlation-request-id": "a3e49f74-b6fb-40d4-ac09-03b2b6725904", + "x-ms-ratelimit-remaining-subscription-reads": "11755", + "x-ms-request-id": "369ab2d6-8a62-433c-84ba-6a6dcebde3a1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073437Z:a3e49f74-b6fb-40d4-ac09-03b2b6725904" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "661079059a902aa209e196a18a89ca6a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "12f84df1-09ba-4f68-abfe-1d4119d4d6ec", + "x-ms-client-request-id": "661079059a902aa209e196a18a89ca6a", + "x-ms-correlation-request-id": "347a6f48-55a5-4fe2-8a2e-803322979a6c", + "x-ms-ratelimit-remaining-subscription-reads": "11754", + "x-ms-request-id": "c684216b-f8ed-4002-9866-f0f6bf06d08c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073439Z:347a6f48-55a5-4fe2-8a2e-803322979a6c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dd5341677f0f38cddf50cbb1d458d493", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "84b6b2cb-145f-401b-8a1a-4b14578fc38f", + "x-ms-client-request-id": "dd5341677f0f38cddf50cbb1d458d493", + "x-ms-correlation-request-id": "0c0a8086-1c9f-4d2c-b7b4-77dafcefbfe8", + "x-ms-ratelimit-remaining-subscription-reads": "11753", + "x-ms-request-id": "20839a90-f347-44ff-9f1f-bf9a5edc44da", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073440Z:0c0a8086-1c9f-4d2c-b7b4-77dafcefbfe8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a45511489730372104bc4320c4e717b8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "54fbc7ae-ca1e-46e2-8986-d96c49cc1301", + "x-ms-client-request-id": "a45511489730372104bc4320c4e717b8", + "x-ms-correlation-request-id": "567927b6-3d1a-42fd-a0e9-1fa6c826781e", + "x-ms-ratelimit-remaining-subscription-reads": "11752", + "x-ms-request-id": "ba034d57-5402-4377-bc0c-d71c494139f1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073441Z:567927b6-3d1a-42fd-a0e9-1fa6c826781e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f0e36855e6228540abd88640cff155b0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "6ec70e0c-5300-43e7-9567-3ddd7a9f9c74", + "x-ms-client-request-id": "f0e36855e6228540abd88640cff155b0", + "x-ms-correlation-request-id": "8f766c4d-92dc-4546-bce8-57baf26a0f5d", + "x-ms-ratelimit-remaining-subscription-reads": "11751", + "x-ms-request-id": "310fe570-e515-44a2-b80d-2785b78b7f5c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073442Z:8f766c4d-92dc-4546-bce8-57baf26a0f5d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7958030d2634d03a201bd9533bac73f7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "bcbdd3fd-d23e-43d7-bc9b-ded02d3d1eeb", + "x-ms-client-request-id": "7958030d2634d03a201bd9533bac73f7", + "x-ms-correlation-request-id": "0e822132-3b1b-401f-9b8b-7a50e00dde26", + "x-ms-ratelimit-remaining-subscription-reads": "11750", + "x-ms-request-id": "9d4cd704-4307-44e9-9ceb-dda9f5b9f820", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073444Z:0e822132-3b1b-401f-9b8b-7a50e00dde26" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6b5b1238e4756270d1cff85710e16813", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "cec28f95-c077-489c-8c4f-954525e1eb5d", + "x-ms-client-request-id": "6b5b1238e4756270d1cff85710e16813", + "x-ms-correlation-request-id": "0636daf5-1fa9-4ef8-9b86-374a8a417c01", + "x-ms-ratelimit-remaining-subscription-reads": "11749", + "x-ms-request-id": "f765620e-7e0b-459c-a48a-64fbc5b70a78", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073445Z:0636daf5-1fa9-4ef8-9b86-374a8a417c01" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c11393679d8e2f842e12cf070ded49ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "c19d3baf-ac9c-4682-a61d-867aa696d9e2", + "x-ms-client-request-id": "c11393679d8e2f842e12cf070ded49ff", + "x-ms-correlation-request-id": "b1ad44d1-fc5f-488c-86a6-b2158e400be3", + "x-ms-ratelimit-remaining-subscription-reads": "11748", + "x-ms-request-id": "bb46c60c-1822-4ab6-b9bf-8b9bb7a15f3f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073446Z:b1ad44d1-fc5f-488c-86a6-b2158e400be3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bc078f65e995283a92f6a8642de2bf3f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "67794aff-a253-4d1c-af0a-539d77f588b2", + "x-ms-client-request-id": "bc078f65e995283a92f6a8642de2bf3f", + "x-ms-correlation-request-id": "e9b91456-4473-49b7-b337-300add71577a", + "x-ms-ratelimit-remaining-subscription-reads": "11747", + "x-ms-request-id": "250d1a61-773f-4d80-a495-7622748f0315", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073448Z:e9b91456-4473-49b7-b337-300add71577a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a8ebc5b3b1989a688e2c3d63146954e3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0fbcd561-75c4-474d-8393-5c9373f2d07d", + "x-ms-client-request-id": "a8ebc5b3b1989a688e2c3d63146954e3", + "x-ms-correlation-request-id": "21f12565-5cee-40b3-80c1-17da1a74010c", + "x-ms-ratelimit-remaining-subscription-reads": "11746", + "x-ms-request-id": "b276b434-2272-4cff-9dd8-3697b2d31c76", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073449Z:21f12565-5cee-40b3-80c1-17da1a74010c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "81f2f985abd97e7d58eb2f98f51f014b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b6a57540-0ca3-411f-aaec-f5aa08f70b00", + "x-ms-client-request-id": "81f2f985abd97e7d58eb2f98f51f014b", + "x-ms-correlation-request-id": "4a1cc9c3-37cf-49f4-8447-fff841aee3fe", + "x-ms-ratelimit-remaining-subscription-reads": "11745", + "x-ms-request-id": "145cf000-d2db-4791-b59d-9c9797f68e47", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073450Z:4a1cc9c3-37cf-49f4-8447-fff841aee3fe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "47539052a101b366266d2d68abd71428", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "6aa2d3f1-e9d1-4b4c-b5c8-d1a6da68007a", + "x-ms-client-request-id": "47539052a101b366266d2d68abd71428", + "x-ms-correlation-request-id": "31bd8bda-ed30-40cc-a9c1-a14144aa6691", + "x-ms-ratelimit-remaining-subscription-reads": "11744", + "x-ms-request-id": "6d9f8003-d092-4d99-938e-ca9ac375637b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073451Z:31bd8bda-ed30-40cc-a9c1-a14144aa6691" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "34dfc4a13ef00766486d50ad82d0a56f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "ec29a8bd-e479-41e4-99ae-03e310dd49e2", + "x-ms-client-request-id": "34dfc4a13ef00766486d50ad82d0a56f", + "x-ms-correlation-request-id": "a0e84702-d538-4e18-8bcb-2ca116aba9f2", + "x-ms-ratelimit-remaining-subscription-reads": "11743", + "x-ms-request-id": "b77e913e-3345-4821-8e14-bbb145271e09", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073453Z:a0e84702-d538-4e18-8bcb-2ca116aba9f2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8410f22b0d15e4e1923f5a6c7d14d280", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "011f4bc1-cbcf-4159-b127-298266e3fa03", + "x-ms-client-request-id": "8410f22b0d15e4e1923f5a6c7d14d280", + "x-ms-correlation-request-id": "085771a6-a541-4e22-bf20-2a886c55e1a7", + "x-ms-ratelimit-remaining-subscription-reads": "11742", + "x-ms-request-id": "069dd9d5-dead-4627-8db3-ec87f33b3c1a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073454Z:085771a6-a541-4e22-bf20-2a886c55e1a7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "30f606d6cc40135b2a4cff9451b83056", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0ffb4eb5-9ee6-4340-b0b6-34abc8e94d71", + "x-ms-client-request-id": "30f606d6cc40135b2a4cff9451b83056", + "x-ms-correlation-request-id": "65be7a87-38a1-4f17-8389-4319c7a0fcc3", + "x-ms-ratelimit-remaining-subscription-reads": "11741", + "x-ms-request-id": "a2a8a204-ea1c-4190-8e64-90f68b5adff3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073455Z:65be7a87-38a1-4f17-8389-4319c7a0fcc3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b93dbec790c79412e2faa1b1e4f98933", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "004053a3-bc43-4e61-89b3-339a825db77a", + "x-ms-client-request-id": "b93dbec790c79412e2faa1b1e4f98933", + "x-ms-correlation-request-id": "a5c6c964-524a-428b-9de3-703961112a0d", + "x-ms-ratelimit-remaining-subscription-reads": "11740", + "x-ms-request-id": "4b246477-a752-40e8-9228-e4e7ea482fd3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073456Z:a5c6c964-524a-428b-9de3-703961112a0d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7cd7cf9a74d95e2f97fc59c90e4d93da", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:34: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": "23ec5d7a-66fb-446c-a80e-4a6f5c3269dd", + "x-ms-client-request-id": "7cd7cf9a74d95e2f97fc59c90e4d93da", + "x-ms-correlation-request-id": "51cd151d-5460-4e0d-99fc-49a47435f74d", + "x-ms-ratelimit-remaining-subscription-reads": "11739", + "x-ms-request-id": "27114fc0-1334-4c20-8e4b-3c0d9c8499f1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073458Z:51cd151d-5460-4e0d-99fc-49a47435f74d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bfa4030e19d646b9f3624d452aa92e30", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "82bde0f1-25ef-418f-8b2f-808347ba2c6a", + "x-ms-client-request-id": "bfa4030e19d646b9f3624d452aa92e30", + "x-ms-correlation-request-id": "02055149-7455-431e-9fe7-6a7d3de55d3e", + "x-ms-ratelimit-remaining-subscription-reads": "11738", + "x-ms-request-id": "a200c184-147a-436b-8785-e14fb528863a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073459Z:02055149-7455-431e-9fe7-6a7d3de55d3e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "81facbc3b4e1537d8edf21ca36498695", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "dc9c171c-230e-4650-a116-b2f6b4065f1c", + "x-ms-client-request-id": "81facbc3b4e1537d8edf21ca36498695", + "x-ms-correlation-request-id": "ecab81c4-2e27-47ce-b2cf-6b8f5a0a3ae0", + "x-ms-ratelimit-remaining-subscription-reads": "11737", + "x-ms-request-id": "4978071b-0635-4e20-97bf-d38acea04d06", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073500Z:ecab81c4-2e27-47ce-b2cf-6b8f5a0a3ae0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e1a2c766c955805c1590887727e933ed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:35: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": "652cd5dc-64b9-4724-aadf-448c492fe16c", + "x-ms-client-request-id": "e1a2c766c955805c1590887727e933ed", + "x-ms-correlation-request-id": "e3ac2630-3583-4b75-b2de-8cbf3cf8c5c4", + "x-ms-ratelimit-remaining-subscription-reads": "11736", + "x-ms-request-id": "55ac0c07-3305-4191-9f8a-845f38660d21", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073502Z:e3ac2630-3583-4b75-b2de-8cbf3cf8c5c4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "420629cd115259f8855130f7f7ef10aa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "f68c1c6d-bede-46a2-aef0-d41af9c5c317", + "x-ms-client-request-id": "420629cd115259f8855130f7f7ef10aa", + "x-ms-correlation-request-id": "a1c2d22d-63f5-4c18-aae2-a4241d105213", + "x-ms-ratelimit-remaining-subscription-reads": "11735", + "x-ms-request-id": "e1e5d6bc-1714-4a10-9976-a09da340a80d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073503Z:a1c2d22d-63f5-4c18-aae2-a4241d105213" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "63deb7dc4d07f9da6e796c502c062ba5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "887fa220-8319-449f-b101-704d244733b9", + "x-ms-client-request-id": "63deb7dc4d07f9da6e796c502c062ba5", + "x-ms-correlation-request-id": "b011caf9-138a-40dd-bab0-421f9b13b79a", + "x-ms-ratelimit-remaining-subscription-reads": "11734", + "x-ms-request-id": "99f16ecc-842d-49d4-bf1e-a3c83fdf9256", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073504Z:b011caf9-138a-40dd-bab0-421f9b13b79a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0dfc34ab43435542ce495c0499658925", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "8960321a-e032-443f-ab82-087a3fe569cc", + "x-ms-client-request-id": "0dfc34ab43435542ce495c0499658925", + "x-ms-correlation-request-id": "e682e3b1-20f3-4268-b35c-168f20ac39e1", + "x-ms-ratelimit-remaining-subscription-reads": "11733", + "x-ms-request-id": "edaf263a-ab08-40ed-bf99-aeea0f641cb0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073505Z:e682e3b1-20f3-4268-b35c-168f20ac39e1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6f9bde80d00a80e64e0cd4d9a5a72d7f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "621cf65d-ed81-47ec-9909-60b7f3c4288f", + "x-ms-client-request-id": "6f9bde80d00a80e64e0cd4d9a5a72d7f", + "x-ms-correlation-request-id": "33c83a46-ec5e-4b9c-86a0-ecab0d26a3ef", + "x-ms-ratelimit-remaining-subscription-reads": "11732", + "x-ms-request-id": "5016492f-c244-4fc6-a299-9732b3539082", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073507Z:33c83a46-ec5e-4b9c-86a0-ecab0d26a3ef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c34c8b2502f39867758994bdf1d65f09", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "aadb12e3-12cb-4b7b-9920-b229be960832", + "x-ms-client-request-id": "c34c8b2502f39867758994bdf1d65f09", + "x-ms-correlation-request-id": "363bceb4-989f-4e50-a10d-b2e65417c517", + "x-ms-ratelimit-remaining-subscription-reads": "11731", + "x-ms-request-id": "a9394763-9e70-4eb8-897f-725472930f08", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073508Z:363bceb4-989f-4e50-a10d-b2e65417c517" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/5794d010-9e89-48fb-ad2c-a79064f0f894?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4dd046f0bc6bda9a4e7bbe366e69b027", + "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, 08 Sep 2021 07:35: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": "e95a3feb-cd61-426c-91db-a43b4ad5ffbb", + "x-ms-client-request-id": "4dd046f0bc6bda9a4e7bbe366e69b027", + "x-ms-correlation-request-id": "a5f27a7d-43c6-4285-9764-7f171d378bf0", + "x-ms-ratelimit-remaining-subscription-reads": "11730", + "x-ms-request-id": "8fd566a2-bd70-4287-9e76-98ea7a0a4622", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073509Z:a5f27a7d-43c6-4285-9764-7f171d378bf0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + } + ], + "Variables": { + "LOCATION": "westus2", + "RandomSeed": "1716299499", + "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/BastionHostContainerTests/Delete.json b/sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/BastionHostContainerTests/Delete.json new file mode 100644 index 0000000000000..9995beb590017 --- /dev/null +++ b/sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/BastionHostContainerTests/Delete.json @@ -0,0 +1,16804 @@ +{ + "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-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0b7c525b4e6ba9cbe70294a532af8c19", + "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, 08 Sep 2021 06:48:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3c540133-a871-4835-978f-a036bdbb7209", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "3c540133-a871-4835-978f-a036bdbb7209", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064845Z:3c540133-a871-4835-978f-a036bdbb7209" + }, + "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/bastionrg-5755?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-e9ba2ea2875c494d90330133e6acaddb-a3266c13a6d98c42-00", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3843ab835b9129847fba71cc730d6cd5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "226", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:48:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "aeb677ef-aeff-4e72-bf40-a83f8af2b90c", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "aeb677ef-aeff-4e72-bf40-a83f8af2b90c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064845Z:aeb677ef-aeff-4e72-bf40-a83f8af2b90c" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755", + "name": "bastionrg-5755", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b1242bbdc5b039714d76510e599ea4f1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1246", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:48:45 GMT", + "ETag": "W/\u00221c1fe8af-eac8-455a-86eb-c015db98ac75\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": "55ecb753-a07a-460b-83fb-fd1df01b8326", + "x-ms-client-request-id": "b1242bbdc5b039714d76510e599ea4f1", + "x-ms-correlation-request-id": "0ebd6ee7-0f58-46fb-9560-a1ec88427aa9", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "a46f027c-fd62-4b0e-8770-55aee28160ad", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064845Z:0ebd6ee7-0f58-46fb-9560-a1ec88427aa9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022vnet-166\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00221c1fe8af-eac8-455a-86eb-c015db98ac75\\\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: \u00229692cf54-c17f-418b-8261-5e5404984cd4\u0022,\r\n", + " \u0022addressSpace\u0022: {\r\n", + " \u0022addressPrefixes\u0022: [\r\n", + " \u002210.0.0.0/16\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022subnets\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022AzureBastionSubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166/subnets/AzureBastionSubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00221c1fe8af-eac8-455a-86eb-c015db98ac75\\\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/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166/subnets/AzureBastionSubnet?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "722b32dcd267005fce528bb0dcfe36da", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "550", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:48:45 GMT", + "ETag": "W/\u00221c1fe8af-eac8-455a-86eb-c015db98ac75\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": "e2e29383-3a55-48a5-a5a0-787c9e7aa6bd", + "x-ms-client-request-id": "722b32dcd267005fce528bb0dcfe36da", + "x-ms-correlation-request-id": "d5810608-e766-4110-9576-a74292a23b21", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "a7b063c6-fb10-44ab-b992-c684db09dc21", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064846Z:d5810608-e766-4110-9576-a74292a23b21" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022AzureBastionSubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166/subnets/AzureBastionSubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00221c1fe8af-eac8-455a-86eb-c015db98ac75\\\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/bastionrg-5755/providers/Microsoft.Network/publicIPAddresses/ip-7939?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "07e7be95da8bbe693a0aeb1a0a75d0e1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "665", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:48:45 GMT", + "ETag": "W/\u0022637d70b5-d425-4750-bdf3-3cc0adf339e9\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": "0a0480a0-3f1a-4aba-9d64-4022af3c4a60", + "x-ms-client-request-id": "07e7be95da8bbe693a0aeb1a0a75d0e1", + "x-ms-correlation-request-id": "9a5ca160-e1aa-4246-a30c-4a53a8ef5bbe", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "7ee94b08-4e77-487a-b12e-47bf1f4954d6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064846Z:9a5ca160-e1aa-4246-a30c-4a53a8ef5bbe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022ip-7939\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/publicIPAddresses/ip-7939\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022637d70b5-d425-4750-bdf3-3cc0adf339e9\\\u0022\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022452cc13c-6c20-4dcf-9d83-4519820eb94f\u0022,\r\n", + " \u0022ipAddress\u0022: \u002252.151.15.185\u0022,\r\n", + " \u0022publicIPAddressVersion\u0022: \u0022IPv4\u0022,\r\n", + " \u0022publicIPAllocationMethod\u0022: \u0022Static\u0022,\r\n", + " \u0022idleTimeoutInMinutes\u0022: 4,\r\n", + " \u0022ipTags\u0022: []\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/publicIPAddresses\u0022,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Standard\u0022,\r\n", + " \u0022tier\u0022: \u0022Regional\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-4635?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "468", + "Content-Type": "application/json", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e140ef7f6df9cbea24e35d39c05d4e40", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "id": null, + "properties": { + "ipConfigurations": [ + { + "name": "bastionIPConfig-8926", + "id": null, + "properties": { + "subnet": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166/subnets/AzureBastionSubnet" + }, + "publicIPAddress": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/publicIPAddresses/ip-7939" + } + } + } + ] + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "1455", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:48:53 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": "402fad81-921a-45a1-bd98-7204d36a6eae", + "x-ms-client-request-id": "e140ef7f6df9cbea24e35d39c05d4e40", + "x-ms-correlation-request-id": "cd25133b-b913-4f0e-a728-371f7b2b3967", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "a38bf6a9-c610-4c6c-9c56-e23f404cdf0e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064853Z:cd25133b-b913-4f0e-a728-371f7b2b3967" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022bastion-4635\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-4635\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002233a4505d-ef04-4a53-a533-a5a33a39bde4\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022scaleUnits\u0022: 2,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022bastionIPConfig-8926\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-4635/bastionHostIpConfigurations/bastionIPConfig-8926\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002233a4505d-ef04-4a53-a533-a5a33a39bde4\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts/bastionHostIpConfigurations\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/bastionrg-5755/providers/Microsoft.Network/publicIPAddresses/ip-7939\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166/subnets/AzureBastionSubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022bastionShareableLinks\u0022: {}\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0e5c9aa9f9f5509bfc3b66f70c8479ac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:48:53 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": "41ee9ee4-8db8-4d7b-8f39-a8239489c64b", + "x-ms-client-request-id": "0e5c9aa9f9f5509bfc3b66f70c8479ac", + "x-ms-correlation-request-id": "7a101a8f-f3ac-48f1-95e4-a91622dda2e9", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "6393eeb7-28e4-4b0c-8ea8-4a1679f5afc5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064853Z:7a101a8f-f3ac-48f1-95e4-a91622dda2e9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fc93da9c2a351978ed7773c11003862e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:48: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": "e4a0d927-2e11-4d74-965e-f6bd314eb6d9", + "x-ms-client-request-id": "fc93da9c2a351978ed7773c11003862e", + "x-ms-correlation-request-id": "6de66e13-273c-420b-ad3d-88555950b558", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-request-id": "fc0049e6-e5f1-44f5-9346-4208031f1ee3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064855Z:6de66e13-273c-420b-ad3d-88555950b558" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2690da8a3f007d4bdc49ba61000bbce8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:48:55 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": "dbf2711a-c65d-47d4-ad17-5ed7835ed8ea", + "x-ms-client-request-id": "2690da8a3f007d4bdc49ba61000bbce8", + "x-ms-correlation-request-id": "a0be3579-b06c-4278-92cd-dd47dc0aeac8", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "d0ffad98-ebeb-454f-b055-f0c33f7bdfc1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064856Z:a0be3579-b06c-4278-92cd-dd47dc0aeac8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6a4bb0be5c627e4c2143217d85da40f9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:48:57 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": "292aa142-1688-45d4-bd7e-6352a9d0b5a6", + "x-ms-client-request-id": "6a4bb0be5c627e4c2143217d85da40f9", + "x-ms-correlation-request-id": "c56ffe03-d9a5-4b6c-9d2b-edf1960bf268", + "x-ms-ratelimit-remaining-subscription-reads": "11788", + "x-ms-request-id": "67653f06-e895-4e41-ae07-0b47609dcb33", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064857Z:c56ffe03-d9a5-4b6c-9d2b-edf1960bf268" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "316d38b453f45dac8e161fec701718e1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:48:58 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": "c37b3e6b-83fa-4aab-8acd-7a8c68b9d18e", + "x-ms-client-request-id": "316d38b453f45dac8e161fec701718e1", + "x-ms-correlation-request-id": "d690d519-f50d-443c-a04d-d5cfb4cafd32", + "x-ms-ratelimit-remaining-subscription-reads": "11787", + "x-ms-request-id": "39935feb-738c-4f7c-976c-32e9ffb445be", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064859Z:d690d519-f50d-443c-a04d-d5cfb4cafd32" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5f038abb1cb82dcb8e1104bc1ecdf702", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:48: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": "954bcab3-7310-402b-981a-bcdf923c45f0", + "x-ms-client-request-id": "5f038abb1cb82dcb8e1104bc1ecdf702", + "x-ms-correlation-request-id": "aaad928b-bbe1-4410-9ed3-816adfcf4ec7", + "x-ms-ratelimit-remaining-subscription-reads": "11786", + "x-ms-request-id": "c1b81e05-78b3-49e9-bc37-b94144739b7b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064900Z:aaad928b-bbe1-4410-9ed3-816adfcf4ec7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c7acc0098a9e6bf404eddb4c3c600e0a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:49:01 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": "34b3ca4f-25b2-47e2-8110-810b28c4c7f3", + "x-ms-client-request-id": "c7acc0098a9e6bf404eddb4c3c600e0a", + "x-ms-correlation-request-id": "14b752db-12fb-4cd1-8971-8583c6799a3b", + "x-ms-ratelimit-remaining-subscription-reads": "11785", + "x-ms-request-id": "3ccab1d1-3977-4f88-9fe3-3bd11b50821c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064902Z:14b752db-12fb-4cd1-8971-8583c6799a3b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fac23f2ae0d698416c3fa3e24fef3ec1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:49:03 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": "c4a31dab-b091-4b4c-b508-567c6afc047c", + "x-ms-client-request-id": "fac23f2ae0d698416c3fa3e24fef3ec1", + "x-ms-correlation-request-id": "c031bedd-02b0-47c1-8022-5b6782fa262c", + "x-ms-ratelimit-remaining-subscription-reads": "11784", + "x-ms-request-id": "8e8d49f1-64cd-4336-bbff-cbb290b3c24e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064903Z:c031bedd-02b0-47c1-8022-5b6782fa262c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "afe21d1e516a314396985bca407ff12d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:49: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": "a3f0f1f4-0017-481f-a325-b9d6c5420267", + "x-ms-client-request-id": "afe21d1e516a314396985bca407ff12d", + "x-ms-correlation-request-id": "42385a9b-9efd-4cb8-97ce-e16ea48a782c", + "x-ms-ratelimit-remaining-subscription-reads": "11783", + "x-ms-request-id": "f0ef3c94-c133-4207-92b0-eb7079fe4bba", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064904Z:42385a9b-9efd-4cb8-97ce-e16ea48a782c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "de92f902fc0b282c7f145a5ee6111c15", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "89452f7d-37e2-4074-98d9-25e85a2bd040", + "x-ms-client-request-id": "de92f902fc0b282c7f145a5ee6111c15", + "x-ms-correlation-request-id": "86e14256-987e-4b2f-9e1e-9bdc873f49a6", + "x-ms-ratelimit-remaining-subscription-reads": "11782", + "x-ms-request-id": "8920cf34-9fcd-4666-a28f-221ddd07a0d2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064906Z:86e14256-987e-4b2f-9e1e-9bdc873f49a6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1f2d1aaf5e7dd99ffb91643e857757ed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "277fcc62-307e-453e-8914-a6cfc09d5d36", + "x-ms-client-request-id": "1f2d1aaf5e7dd99ffb91643e857757ed", + "x-ms-correlation-request-id": "0e6c8341-f03e-461e-889d-5193621f6526", + "x-ms-ratelimit-remaining-subscription-reads": "11781", + "x-ms-request-id": "aa54d31a-5243-484d-9089-c3178453779e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064907Z:0e6c8341-f03e-461e-889d-5193621f6526" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "55df754e5f5c21b5f0ba2f56f7e44a84", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "f30b54d7-3f2a-4670-8fa7-55406d193403", + "x-ms-client-request-id": "55df754e5f5c21b5f0ba2f56f7e44a84", + "x-ms-correlation-request-id": "53598d32-df46-42d7-b2c2-0da446214fdc", + "x-ms-ratelimit-remaining-subscription-reads": "11780", + "x-ms-request-id": "3dc2aa94-bbe0-4569-9c84-7ca5c8501282", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064908Z:53598d32-df46-42d7-b2c2-0da446214fdc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "261b467cd152a4b059b9e37a98eea308", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e5d99912-f2c8-4291-a0d0-5ea193a0b34d", + "x-ms-client-request-id": "261b467cd152a4b059b9e37a98eea308", + "x-ms-correlation-request-id": "dc96a4e0-6f22-456f-9de3-b670ff4a67c5", + "x-ms-ratelimit-remaining-subscription-reads": "11779", + "x-ms-request-id": "accd5ac9-76dd-49ad-9f80-fe5e3f2317b6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064910Z:dc96a4e0-6f22-456f-9de3-b670ff4a67c5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "71106dbcc6314fb8640b2ec32f49e217", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ed7a3e7e-a5b3-4ac1-9ca0-a11952f03a2b", + "x-ms-client-request-id": "71106dbcc6314fb8640b2ec32f49e217", + "x-ms-correlation-request-id": "4a400725-b350-43ae-98e2-acfd171408a6", + "x-ms-ratelimit-remaining-subscription-reads": "11778", + "x-ms-request-id": "e41b9116-cfe8-42bb-8865-b348a9cbf42b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064911Z:4a400725-b350-43ae-98e2-acfd171408a6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3ec1e047315b7c9ac53bfba37c3b8902", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "93525640-c324-43fe-8a90-36407053ace0", + "x-ms-client-request-id": "3ec1e047315b7c9ac53bfba37c3b8902", + "x-ms-correlation-request-id": "5f9b20a3-8a02-42ca-90e5-7df4f6ba0ad4", + "x-ms-ratelimit-remaining-subscription-reads": "11777", + "x-ms-request-id": "6b02b373-0b25-49b3-832f-c00050f64c2e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064913Z:5f9b20a3-8a02-42ca-90e5-7df4f6ba0ad4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "899a2716d9d4b5528ecbc147a3ed7510", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1e7c36aa-ed65-45d4-b02e-cf419fffb9cb", + "x-ms-client-request-id": "899a2716d9d4b5528ecbc147a3ed7510", + "x-ms-correlation-request-id": "92cc1a35-343b-4475-a39d-201612092d59", + "x-ms-ratelimit-remaining-subscription-reads": "11776", + "x-ms-request-id": "e1003df2-6852-4c98-9a23-b4bdd6958550", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064915Z:92cc1a35-343b-4475-a39d-201612092d59" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b833ccd7642c8aacd294abf6cb14d229", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "bd1c465d-c1ee-4bb0-8a10-ffce74f4cfd9", + "x-ms-client-request-id": "b833ccd7642c8aacd294abf6cb14d229", + "x-ms-correlation-request-id": "42c69e3a-abc0-41df-a8a5-27be2b635aef", + "x-ms-ratelimit-remaining-subscription-reads": "11775", + "x-ms-request-id": "e82cfeef-b715-4749-aeb0-18335ba050f9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064916Z:42c69e3a-abc0-41df-a8a5-27be2b635aef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "07ac2b8158ae6d428d0bb0907053d8d7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d3aa606a-5eb2-46d6-807b-8f97055dd9eb", + "x-ms-client-request-id": "07ac2b8158ae6d428d0bb0907053d8d7", + "x-ms-correlation-request-id": "397473f9-f846-4132-8ae2-12424b446da8", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "3e8985e5-94f4-4967-9da2-1c3f50d32c86", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064918Z:397473f9-f846-4132-8ae2-12424b446da8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b0cceac6d108b1d67a10b7402d5cea79", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "704f6659-2596-4cb5-a7c5-6f6e93dcfdbc", + "x-ms-client-request-id": "b0cceac6d108b1d67a10b7402d5cea79", + "x-ms-correlation-request-id": "559868d0-78e3-4de1-b21f-8fc2fe90bce4", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "2f1322b1-e190-46c7-9d2c-4398a96fa093", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064919Z:559868d0-78e3-4de1-b21f-8fc2fe90bce4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "78c597f96d407e6189c52a20b41c197e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "31428431-fb3e-48d9-8862-1e54f4a3195e", + "x-ms-client-request-id": "78c597f96d407e6189c52a20b41c197e", + "x-ms-correlation-request-id": "f1be8823-0a6b-4f68-9b4b-bf1fed297d55", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "c35b9e5d-8bf9-4cd8-a084-d094c7d02930", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064920Z:f1be8823-0a6b-4f68-9b4b-bf1fed297d55" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e02fd4bb2248b02055fb8d9ea0024031", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "38e9a286-346f-42f0-81da-51f4624ee043", + "x-ms-client-request-id": "e02fd4bb2248b02055fb8d9ea0024031", + "x-ms-correlation-request-id": "c2e2fe44-c870-44d8-9f23-43d8ba556884", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "ea2bec17-4d65-4cb1-9db9-64ff30508cfc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064921Z:c2e2fe44-c870-44d8-9f23-43d8ba556884" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d8973721608d5997894d2743a6b5fd5e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "08c2764f-fd62-4927-9166-efc5ab918d55", + "x-ms-client-request-id": "d8973721608d5997894d2743a6b5fd5e", + "x-ms-correlation-request-id": "5e5c0835-0a7f-4fcf-9d65-0b836439017c", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "8b894e8e-9b62-4b90-83a3-e45725ca8c14", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064923Z:5e5c0835-0a7f-4fcf-9d65-0b836439017c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "598438f60a2cd63177152245e0c3de86", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "b8f5c6cf-2901-4c86-8b5f-02687e6facdc", + "x-ms-client-request-id": "598438f60a2cd63177152245e0c3de86", + "x-ms-correlation-request-id": "464daf72-038b-4956-b1b1-ea1570850b71", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "706ce0ab-f155-4c59-9078-18865c41a7cc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064924Z:464daf72-038b-4956-b1b1-ea1570850b71" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7dfff98441855af13dd657fafbdd099f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d10752df-f7d0-4416-9bdb-400d47e106fc", + "x-ms-client-request-id": "7dfff98441855af13dd657fafbdd099f", + "x-ms-correlation-request-id": "ca8bb6fb-ec61-4c50-9836-2a083ecdee7a", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "3ed97ad9-57fe-4d97-bf11-4562c2b9790c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064925Z:ca8bb6fb-ec61-4c50-9836-2a083ecdee7a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "68a82efde77d160405c061783d5179c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "50a40795-c6c8-4f27-b358-c00cd0c5ab4d", + "x-ms-client-request-id": "68a82efde77d160405c061783d5179c5", + "x-ms-correlation-request-id": "a34fac88-c76f-4113-803a-c18aae0f7602", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "3b170eb1-b104-4df6-b6c1-4411b9bb321c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064926Z:a34fac88-c76f-4113-803a-c18aae0f7602" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "adbea06f80b6b5d8472a1c56b336db99", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5866fde5-63e5-49e5-9d44-b10f4308dc16", + "x-ms-client-request-id": "adbea06f80b6b5d8472a1c56b336db99", + "x-ms-correlation-request-id": "b0fe7bd9-7d87-4c4d-852f-3de42b3275e3", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "70754873-8350-4749-9cf5-ebc0ba9c931e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064928Z:b0fe7bd9-7d87-4c4d-852f-3de42b3275e3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b147830c751b9d08f4e877c4df781ceb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "b3c48c7e-5baf-4172-a44b-27c8154f0cad", + "x-ms-client-request-id": "b147830c751b9d08f4e877c4df781ceb", + "x-ms-correlation-request-id": "7280c49f-2cc9-4079-8c84-330c7dccc6a5", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "1ffbd5bc-d26a-44b6-b825-1ef4c80fb5d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064929Z:7280c49f-2cc9-4079-8c84-330c7dccc6a5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5a8b915d5b1f7de956f22152cbae63cf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b8250a8a-05e2-44eb-80b3-5ae97e7061d7", + "x-ms-client-request-id": "5a8b915d5b1f7de956f22152cbae63cf", + "x-ms-correlation-request-id": "945598c1-1721-404f-956a-566cf19e884a", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "d2741da1-f477-44c1-b256-38bcb2f6797a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064931Z:945598c1-1721-404f-956a-566cf19e884a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ba6cc7e4c709f9aa9720b9cd0814d5ce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0d4d1fbe-5837-4778-9771-eef0d577b2e9", + "x-ms-client-request-id": "ba6cc7e4c709f9aa9720b9cd0814d5ce", + "x-ms-correlation-request-id": "d7b9fd7d-df64-48f0-b284-7bd2f108c149", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "853836bd-2b16-4b43-b5d1-909feaf9de74", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064932Z:d7b9fd7d-df64-48f0-b284-7bd2f108c149" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "21f9300e80abb07a9aca5b2854b5d245", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "d959c6a7-fc2c-4b67-91ac-b952a8c939df", + "x-ms-client-request-id": "21f9300e80abb07a9aca5b2854b5d245", + "x-ms-correlation-request-id": "7ed11d3b-f0ef-4c8a-87b6-d955d1e0f8ce", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "0d9d7ac4-18d5-46b6-9500-d26d03dea969", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064933Z:7ed11d3b-f0ef-4c8a-87b6-d955d1e0f8ce" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "17dfa885610c95e2e791c3fea11b7441", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5535d91f-4034-4ac0-b591-7fe595ce26f6", + "x-ms-client-request-id": "17dfa885610c95e2e791c3fea11b7441", + "x-ms-correlation-request-id": "e4c8bcde-5d0a-46a4-b3c9-ca8a8368002b", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "fd338aee-8793-45f8-9b2a-9cb98f8e45b1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064935Z:e4c8bcde-5d0a-46a4-b3c9-ca8a8368002b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9b44521c41b564234dbb1f3e6c81a5e1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "01ef45f3-f763-46a5-a716-f38686435701", + "x-ms-client-request-id": "9b44521c41b564234dbb1f3e6c81a5e1", + "x-ms-correlation-request-id": "082cc1c2-eb44-4714-9a9a-34a3f5057251", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "78dc5582-02cf-46df-9ca7-eefbb9950c85", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064936Z:082cc1c2-eb44-4714-9a9a-34a3f5057251" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6048734ebe34acc14d633a19bd7c0e7f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "5260e365-fe29-42b9-bdc8-d4212c76a60b", + "x-ms-client-request-id": "6048734ebe34acc14d633a19bd7c0e7f", + "x-ms-correlation-request-id": "d258699a-4acb-49e5-89f4-d7cd67eb007f", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "fd8d0c4b-15f1-4003-b237-7ad14fd3b29e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064937Z:d258699a-4acb-49e5-89f4-d7cd67eb007f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "020b195637714390847bca5142a32865", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a0b055f4-6819-4ca5-aa70-33d72699678e", + "x-ms-client-request-id": "020b195637714390847bca5142a32865", + "x-ms-correlation-request-id": "9619c6bc-e2d8-4961-8f72-24f48edc2114", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "2ad1692a-7e22-4bb0-a7bc-95df476e72d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064938Z:9619c6bc-e2d8-4961-8f72-24f48edc2114" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2eafe1eb13d25e0d90974d510709a6d0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "64c986c3-f60d-4eb7-a322-88da0ef2ed33", + "x-ms-client-request-id": "2eafe1eb13d25e0d90974d510709a6d0", + "x-ms-correlation-request-id": "438a2082-7a39-4ac9-be66-849f6f6d5917", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "30aea0a4-04c1-4802-9f77-72b61b981775", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064940Z:438a2082-7a39-4ac9-be66-849f6f6d5917" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "53e8a0aca375176fe305dcb8f3706aaa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6298d6d3-6896-4d1c-ab07-5866bc833e18", + "x-ms-client-request-id": "53e8a0aca375176fe305dcb8f3706aaa", + "x-ms-correlation-request-id": "55f63ff0-d482-439b-b7d7-d1a65cb2ad4a", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "42e39d6a-8f33-4d25-9baf-9e6cb37479e9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064942Z:55f63ff0-d482-439b-b7d7-d1a65cb2ad4a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "db2dd53ae0cd42ac0bad71d9e93f3c7a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "74687b90-24aa-4e88-b107-7c142751ae6f", + "x-ms-client-request-id": "db2dd53ae0cd42ac0bad71d9e93f3c7a", + "x-ms-correlation-request-id": "0439870c-970c-43f0-acac-29e1c021ab04", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "11cea462-30db-4025-9030-b9397dfa5078", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064943Z:0439870c-970c-43f0-acac-29e1c021ab04" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a1a4f9d5d5bb48ef71974acd37556a1f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1e3ab1bf-578d-484a-93a5-48f54c078670", + "x-ms-client-request-id": "a1a4f9d5d5bb48ef71974acd37556a1f", + "x-ms-correlation-request-id": "811d5a51-de17-4ac1-9e74-503a2f5953cb", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "0f0fa1bb-9ce2-4452-aff1-bd93209a0ce3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064944Z:811d5a51-de17-4ac1-9e74-503a2f5953cb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3116a32dcadccb03f4a647c831962da4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "45f439d0-df61-4f42-a9bd-70437147b07e", + "x-ms-client-request-id": "3116a32dcadccb03f4a647c831962da4", + "x-ms-correlation-request-id": "153da558-2b00-411b-9fe5-4f69e91b21af", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "aa70ed37-7401-4842-8f39-88f395341611", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064945Z:153da558-2b00-411b-9fe5-4f69e91b21af" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fae362c9c9cb65efe5e5693596de0bb5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "ba79f4a6-d682-4436-9c14-4209bd879efd", + "x-ms-client-request-id": "fae362c9c9cb65efe5e5693596de0bb5", + "x-ms-correlation-request-id": "9968d4fd-25a7-4c88-b7b8-02e4a00087fd", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "590bdde5-8890-4783-850f-c81782eee3eb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064947Z:9968d4fd-25a7-4c88-b7b8-02e4a00087fd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "46ac51420a280a9ef6d9ac158d2617db", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "65867db5-e83a-49be-98e2-c2491c4fe6a3", + "x-ms-client-request-id": "46ac51420a280a9ef6d9ac158d2617db", + "x-ms-correlation-request-id": "a4bd74c8-5918-4437-8460-ce1f28ae8203", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "4492f103-5b3e-44bf-939f-7ea3003a5f14", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064948Z:a4bd74c8-5918-4437-8460-ce1f28ae8203" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d504a66970726353b3b14bf660cd3515", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1866143b-71f7-4fd3-9bcc-43c9da5633ea", + "x-ms-client-request-id": "d504a66970726353b3b14bf660cd3515", + "x-ms-correlation-request-id": "6247d289-6356-4ccd-b937-11de94044bff", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "c11eec3c-84f2-4baa-9ed7-9069f4799ca1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064949Z:6247d289-6356-4ccd-b937-11de94044bff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "df86929ae6e9be7cc3d803f21cdad7bf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4b5bf0f9-ee27-43d4-91ad-6acc15c9273e", + "x-ms-client-request-id": "df86929ae6e9be7cc3d803f21cdad7bf", + "x-ms-correlation-request-id": "efb87afb-b2ce-4931-b29e-bc34f3715b71", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "418864e1-65f5-4714-9a08-2fe8be5fa6b3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064950Z:efb87afb-b2ce-4931-b29e-bc34f3715b71" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "efcc8ece35dad143fd489276bea7a928", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "59ccc0a3-b14d-4846-a9fc-891f7ec16e4f", + "x-ms-client-request-id": "efcc8ece35dad143fd489276bea7a928", + "x-ms-correlation-request-id": "4c16a557-0576-4d5d-8730-7baddeb3f270", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "37e235f8-465e-4d37-a355-9bb687866431", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064952Z:4c16a557-0576-4d5d-8730-7baddeb3f270" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fb7a96a337a082f12a4511996c6147d9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "aff16210-25b1-4952-bb6d-af27d5c509bd", + "x-ms-client-request-id": "fb7a96a337a082f12a4511996c6147d9", + "x-ms-correlation-request-id": "7c470f9d-490f-4fd1-8e3c-ff29af463270", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "5c4e0d52-0fa2-45e4-87f7-060b9cf68462", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064953Z:7c470f9d-490f-4fd1-8e3c-ff29af463270" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d2288cda4601653a4fb4e1a15405ff1c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e5cde3aa-bcd8-45a1-a2b3-0f7319a361f6", + "x-ms-client-request-id": "d2288cda4601653a4fb4e1a15405ff1c", + "x-ms-correlation-request-id": "0b4573a1-2385-4737-8d8a-986bb35af21b", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "49daab83-838d-41d5-9273-94a69ac93ff1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064954Z:0b4573a1-2385-4737-8d8a-986bb35af21b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "854fdb2fdb5f961e9c49c59524a9649c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "2c0a8397-0130-474f-9395-87457441b94a", + "x-ms-client-request-id": "854fdb2fdb5f961e9c49c59524a9649c", + "x-ms-correlation-request-id": "d2135cb6-1199-46e1-9a37-7015dd428348", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "c47b9ab3-2e2b-45f7-84d3-6cc67142d5da", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064956Z:d2135cb6-1199-46e1-9a37-7015dd428348" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "329cb801d67f5d265c15aceb55502e25", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8d336cca-764a-47e7-bc83-20ac5f6d0916", + "x-ms-client-request-id": "329cb801d67f5d265c15aceb55502e25", + "x-ms-correlation-request-id": "f3485fbd-f1b2-4f8a-a497-b0c71726dfb3", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "b8ff4f51-d88c-4334-9fe2-ab41704284fb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064957Z:f3485fbd-f1b2-4f8a-a497-b0c71726dfb3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "916af545c111ff796d9135b880a540a6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7174f895-9a02-4880-87e9-f8cd54def405", + "x-ms-client-request-id": "916af545c111ff796d9135b880a540a6", + "x-ms-correlation-request-id": "a294eec1-e8e1-4b43-9e4b-f6d7c85527c8", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "ac159430-27c4-44ac-ad52-8aae465346a7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T064958Z:a294eec1-e8e1-4b43-9e4b-f6d7c85527c8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9ba0444fcd68589cb4f2294a2e32414c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "062c7bbe-823a-4cbf-8c12-8b6f1173f8d8", + "x-ms-client-request-id": "9ba0444fcd68589cb4f2294a2e32414c", + "x-ms-correlation-request-id": "4495f2ad-0590-4d61-a043-1bc2d5595aed", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "a4664f56-7dee-4e83-850d-fdfdf6888aa3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065000Z:4495f2ad-0590-4d61-a043-1bc2d5595aed" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2e4fa01ad33e3f8b3f9cc4eda16edcb6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4f8d22c7-fc41-4279-847b-60d4cb832be9", + "x-ms-client-request-id": "2e4fa01ad33e3f8b3f9cc4eda16edcb6", + "x-ms-correlation-request-id": "e55509d7-35dd-43b9-8448-7e2f08e027cf", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "85f99868-a815-42cd-b064-f70471762344", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065001Z:e55509d7-35dd-43b9-8448-7e2f08e027cf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "109c06d493b077bc5812dc1f972fd03b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5dc187c6-c85f-4fdf-87b3-9579079ea0eb", + "x-ms-client-request-id": "109c06d493b077bc5812dc1f972fd03b", + "x-ms-correlation-request-id": "88af716a-62a1-423c-b2bc-bc30e4fe70b9", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "b69abb43-6b31-4fb1-9ce6-e0fe9391e2a7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065002Z:88af716a-62a1-423c-b2bc-bc30e4fe70b9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e09de95011567b67b9605ccb09afb746", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9483c0a6-d4b9-4914-81a9-c9535d78c8bc", + "x-ms-client-request-id": "e09de95011567b67b9605ccb09afb746", + "x-ms-correlation-request-id": "b09359b3-9f1a-4d42-aea5-18984568a21b", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "56300102-cf03-46e6-ab8b-dcc3af5e349a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065003Z:b09359b3-9f1a-4d42-aea5-18984568a21b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "277673163096879ce4d7d62cf76ba70f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "849b560e-6624-4f70-bc02-10fbf9da908a", + "x-ms-client-request-id": "277673163096879ce4d7d62cf76ba70f", + "x-ms-correlation-request-id": "3863e397-f661-406f-b8da-f021b2734748", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "97749dc5-c1f8-43e4-8af2-847011d89a43", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065005Z:3863e397-f661-406f-b8da-f021b2734748" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b79c89cbfbd1c25f9e20564f37f06ea8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d3f738d5-43be-4714-b87e-5b194f5c5167", + "x-ms-client-request-id": "b79c89cbfbd1c25f9e20564f37f06ea8", + "x-ms-correlation-request-id": "fd9c7119-b917-42f5-a0e4-cebce491be25", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "ccee3d79-09be-43bf-af68-98df65724df2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065006Z:fd9c7119-b917-42f5-a0e4-cebce491be25" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2409955ba9b820a44d15fc7e3b3b844d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f584f19f-3812-4946-92ce-d79dbfac8388", + "x-ms-client-request-id": "2409955ba9b820a44d15fc7e3b3b844d", + "x-ms-correlation-request-id": "f0f851b5-5461-4137-a0b3-b18f7da607da", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "43d7a947-64d7-4b04-bc9c-3aaeaa58c2f2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065007Z:f0f851b5-5461-4137-a0b3-b18f7da607da" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "80ff4cb9ff121a7413b38875d94c4ff3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "565df6a1-cf58-481c-a961-e1bd10c1d394", + "x-ms-client-request-id": "80ff4cb9ff121a7413b38875d94c4ff3", + "x-ms-correlation-request-id": "b31677f3-954f-4fae-85a4-29283ca37897", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "14b1817e-c233-4188-a4ff-7d6dff569b0f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065008Z:b31677f3-954f-4fae-85a4-29283ca37897" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "61d12d6983622257e47c6abbffe18763", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5332c0f7-d0b6-4d98-bb99-5e82739a6634", + "x-ms-client-request-id": "61d12d6983622257e47c6abbffe18763", + "x-ms-correlation-request-id": "1fec655c-d6d3-482c-8496-1c724b89eddb", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "845ee2ee-8524-42aa-8a1e-e6fca90e074b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065011Z:1fec655c-d6d3-482c-8496-1c724b89eddb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eb96089cedf05b9620ee1004202f4600", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "54dc8dfd-8136-4e7b-969b-be1b9fc0a8ad", + "x-ms-client-request-id": "eb96089cedf05b9620ee1004202f4600", + "x-ms-correlation-request-id": "d486f2bf-bafa-4ee9-a563-20b61d3838ec", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "b3ee4e16-6eda-42da-a59f-5ba593d5b90e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065012Z:d486f2bf-bafa-4ee9-a563-20b61d3838ec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0e1508c5226a36ebf4dd9c9694b91a32", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "863bee3f-3048-4419-9cc8-85f20c81da88", + "x-ms-client-request-id": "0e1508c5226a36ebf4dd9c9694b91a32", + "x-ms-correlation-request-id": "f72225af-19c9-4264-8b06-72d097c597e9", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "185e3d05-fe30-4ef0-aac6-84e8cd4a1939", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065013Z:f72225af-19c9-4264-8b06-72d097c597e9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d0d8252c64b67b0397754174725201b4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "92cafb60-4c48-48c4-8ef6-f7235ecd356b", + "x-ms-client-request-id": "d0d8252c64b67b0397754174725201b4", + "x-ms-correlation-request-id": "7c4c66cd-8d7a-40e2-b6e2-3d31e4f0e61d", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "509fc2d4-96b0-470e-930c-cc23e4d35b23", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065015Z:7c4c66cd-8d7a-40e2-b6e2-3d31e4f0e61d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f6f66a3579cb7af81d60f61251ffc667", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "7c3b108f-8644-4cd4-b808-78dbbea1856d", + "x-ms-client-request-id": "f6f66a3579cb7af81d60f61251ffc667", + "x-ms-correlation-request-id": "1f173dda-d1dd-4c15-bf58-de0c21143aa7", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "21b6e0a2-4642-445a-83c4-62f92c1695dc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065016Z:1f173dda-d1dd-4c15-bf58-de0c21143aa7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fbd8ded37656614a059976f5e076c3a2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "fd585fa1-15fa-46e7-bc64-7ed9349d988a", + "x-ms-client-request-id": "fbd8ded37656614a059976f5e076c3a2", + "x-ms-correlation-request-id": "f9dd09c3-c2c2-4087-865b-be56e421eabe", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "da87a360-f85d-4cbb-8fc1-01bc25121ce3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065017Z:f9dd09c3-c2c2-4087-865b-be56e421eabe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2a61e7db24c2b3662c5eb2556df02a97", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f80fb5ef-0561-4041-b703-563abc79eec0", + "x-ms-client-request-id": "2a61e7db24c2b3662c5eb2556df02a97", + "x-ms-correlation-request-id": "706e0c91-e5bc-429c-81f7-3697d3397813", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "ff56ae66-19f3-40f7-851d-ce70dbe29a23", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065018Z:706e0c91-e5bc-429c-81f7-3697d3397813" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "93a0d9af067abe5e2094f132020399a6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "99cb9de1-d9bd-4624-b5f3-08baa3965143", + "x-ms-client-request-id": "93a0d9af067abe5e2094f132020399a6", + "x-ms-correlation-request-id": "5f29a4e7-269b-446a-87f2-d1f24e0455f9", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "1ba80b23-3668-4c62-9dff-bbd56915fa53", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065020Z:5f29a4e7-269b-446a-87f2-d1f24e0455f9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6937549c9b9eafa47724cef8c3f4f314", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "adf800b2-db57-4c0b-ad56-e7c6bd6b7df3", + "x-ms-client-request-id": "6937549c9b9eafa47724cef8c3f4f314", + "x-ms-correlation-request-id": "fe0e3657-6b2c-4764-938c-49fffa8e5052", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "ba5abffa-eb39-42a2-b650-41961e208924", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065021Z:fe0e3657-6b2c-4764-938c-49fffa8e5052" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0746df6f30d6d42789a20a2e3234b129", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3300f559-6c41-4477-b6fd-9021a434b0b6", + "x-ms-client-request-id": "0746df6f30d6d42789a20a2e3234b129", + "x-ms-correlation-request-id": "7e4c6112-1ec1-44d1-8a1f-31ac37fd640c", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "d20623bf-45f7-488c-8bfd-4767d528e250", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065022Z:7e4c6112-1ec1-44d1-8a1f-31ac37fd640c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "19b90bc4c0b913f934f11b553865fb2c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "95e19b11-6f72-4d5b-80da-60d1fe9f23d1", + "x-ms-client-request-id": "19b90bc4c0b913f934f11b553865fb2c", + "x-ms-correlation-request-id": "e298c450-5926-491b-b027-554b0e0c1551", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "7ba3814d-fe9c-445b-9a84-25b090286fd0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065024Z:e298c450-5926-491b-b027-554b0e0c1551" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "23c3dca192bd6bd02c62e0fb91767c43", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "bab69f37-6f58-45f5-9464-f6d8d5781040", + "x-ms-client-request-id": "23c3dca192bd6bd02c62e0fb91767c43", + "x-ms-correlation-request-id": "4839b288-afc8-4eb3-b485-fe55e1555042", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "9f1f0cf0-7914-4afb-a9c4-723142edcfb8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065025Z:4839b288-afc8-4eb3-b485-fe55e1555042" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b734a473d93aae5be532d3e514d29c23", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7fb5e56b-491f-4bee-a93e-d73d454853ac", + "x-ms-client-request-id": "b734a473d93aae5be532d3e514d29c23", + "x-ms-correlation-request-id": "8e05421e-de95-4f99-b7a7-e1bf22e6fca7", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "2306fbe9-e58d-4e6e-9869-a385735d7d2d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065026Z:8e05421e-de95-4f99-b7a7-e1bf22e6fca7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "568cdea78d71326c3b4dec56e0fd81bd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1703ec6e-2076-41d6-8dbd-07ddfbbeabad", + "x-ms-client-request-id": "568cdea78d71326c3b4dec56e0fd81bd", + "x-ms-correlation-request-id": "5671a35b-fb7a-4daa-b9bc-9918a13f57b2", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "3b90d1e1-7eab-4bdd-8ee8-e5c97f26eda0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065027Z:5671a35b-fb7a-4daa-b9bc-9918a13f57b2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "93e1d8744331c7f181153d8abfeb565a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b05c6502-f72b-4175-a1dc-f240d74f19f1", + "x-ms-client-request-id": "93e1d8744331c7f181153d8abfeb565a", + "x-ms-correlation-request-id": "eeaf7aa8-d554-4d05-a57a-90b60bc303d1", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "917d2344-b2d8-4b5e-9d47-3d5bea0460fb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065029Z:eeaf7aa8-d554-4d05-a57a-90b60bc303d1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b254bdc626eae5d238017ceced05cde7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "6b700cbe-1f21-4c35-9880-463ec4f4ac96", + "x-ms-client-request-id": "b254bdc626eae5d238017ceced05cde7", + "x-ms-correlation-request-id": "7ed1fd36-9cd4-4f3b-83af-6ad93413cf94", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "f3ced8df-b963-4996-9c60-6b18ff082fb0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065030Z:7ed1fd36-9cd4-4f3b-83af-6ad93413cf94" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3c7015b009f063f1ecc5d45c4fe17350", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a73feeac-5f96-4915-9c77-f5846d3bcc3d", + "x-ms-client-request-id": "3c7015b009f063f1ecc5d45c4fe17350", + "x-ms-correlation-request-id": "c42a50a8-ade2-48c2-ae7e-a8e89311304a", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "b2bcf7e9-4d48-479b-8dc6-03aaa2277c95", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065031Z:c42a50a8-ade2-48c2-ae7e-a8e89311304a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "238f92f6cea94ed305fb5a30c705da7b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b38e19e6-ed67-4e8b-909c-df3565d43019", + "x-ms-client-request-id": "238f92f6cea94ed305fb5a30c705da7b", + "x-ms-correlation-request-id": "e38741ff-1d27-41df-9b7f-e166dc74ec3d", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "3d265e82-09f9-44ca-b76b-2b078fa76ee2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065032Z:e38741ff-1d27-41df-9b7f-e166dc74ec3d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a9d956471a7abd6acbf0c62451769657", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9eb212b8-ef53-42c8-ba04-8903c4e40da8", + "x-ms-client-request-id": "a9d956471a7abd6acbf0c62451769657", + "x-ms-correlation-request-id": "a75fc585-f281-4509-950e-ad1b83da7456", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "0194158e-77f2-4c9a-ac2d-39f410dbb622", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065034Z:a75fc585-f281-4509-950e-ad1b83da7456" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5af52c8eaa75e13d412237f4aec19ce7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "417909da-ca02-4026-b9d6-c3e21530e011", + "x-ms-client-request-id": "5af52c8eaa75e13d412237f4aec19ce7", + "x-ms-correlation-request-id": "923a1741-7471-439c-a7cc-6100c09026ec", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "048da8b2-465e-4cbe-ac4b-8f7debacc005", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065036Z:923a1741-7471-439c-a7cc-6100c09026ec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f91459eac908dcd528d257b808aefd8f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "afc5456c-be32-4f5b-92eb-3ebf1d155797", + "x-ms-client-request-id": "f91459eac908dcd528d257b808aefd8f", + "x-ms-correlation-request-id": "192d388f-fd66-440c-bc10-6f2a839c06a2", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "f9373729-5506-46bd-af9d-8df6d33fe273", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065037Z:192d388f-fd66-440c-bc10-6f2a839c06a2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9ba103657f0f9c0618f76858e2750e0a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0e51845a-5305-4501-91f4-8000011d48dd", + "x-ms-client-request-id": "9ba103657f0f9c0618f76858e2750e0a", + "x-ms-correlation-request-id": "ea426d30-b187-478e-aeda-9d1adf4b028f", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "be7b9357-3d48-414d-a6ca-2621d6ee6449", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065038Z:ea426d30-b187-478e-aeda-9d1adf4b028f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f839de549c61c54e561932a35384d992", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d1ce2a7b-537d-48e7-8817-2b4c1c707984", + "x-ms-client-request-id": "f839de549c61c54e561932a35384d992", + "x-ms-correlation-request-id": "0e12f117-7ea3-4a1f-b01b-e9397f04af18", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "4906516c-f31e-41af-8763-f8ec2cbd3c0c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065039Z:0e12f117-7ea3-4a1f-b01b-e9397f04af18" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ab8ea725011f6bd85278e010617cf9b2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1202d854-c13e-4434-aa7f-3b0f99bda15a", + "x-ms-client-request-id": "ab8ea725011f6bd85278e010617cf9b2", + "x-ms-correlation-request-id": "7a6ac90a-02c3-4973-9493-d4d05793030a", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "d3934ee1-f7d3-4f75-a289-7e867ecc0d40", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065041Z:7a6ac90a-02c3-4973-9493-d4d05793030a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "29644cc30475c82db4dc44f64c634993", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ae5e5ae6-3556-45f0-a364-0ec7f2aa1544", + "x-ms-client-request-id": "29644cc30475c82db4dc44f64c634993", + "x-ms-correlation-request-id": "8bc90df6-5742-4dab-8bf7-c6944c20d1a3", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "ef659c11-2610-4080-bea0-a0008e19db5e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065042Z:8bc90df6-5742-4dab-8bf7-c6944c20d1a3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3b33d51e63e752ea06cea5e9bc3e63d9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f6222296-ff11-4084-9b8e-3fdb61b1ad31", + "x-ms-client-request-id": "3b33d51e63e752ea06cea5e9bc3e63d9", + "x-ms-correlation-request-id": "d7ccf651-3536-404f-8a75-98087ac05285", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "03753943-a68c-44a7-ade1-f1dcdb1a9882", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065043Z:d7ccf651-3536-404f-8a75-98087ac05285" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "06df801faf1f201d79c5f643bde21eef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ad7b159a-e3a8-49b2-be16-6e2f2e78b8fc", + "x-ms-client-request-id": "06df801faf1f201d79c5f643bde21eef", + "x-ms-correlation-request-id": "91bba11c-a120-44f8-b1fc-046cc9980bc0", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "8c286cf7-a966-44bb-a36d-c07568b6ffde", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065045Z:91bba11c-a120-44f8-b1fc-046cc9980bc0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8bf24c2ebe495fca611223a65f440c76", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e0e94422-a055-48f7-9fa2-0c90840b5fdd", + "x-ms-client-request-id": "8bf24c2ebe495fca611223a65f440c76", + "x-ms-correlation-request-id": "3783a82b-f8ee-4e7e-bf48-c443c3dc1a51", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "60e1a5a8-bcfe-4bda-8503-66bf571358f7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065046Z:3783a82b-f8ee-4e7e-bf48-c443c3dc1a51" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ccd66a7843836e74b813c1216da79524", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "8d89a821-66c3-47ab-b9d4-395453eac18f", + "x-ms-client-request-id": "ccd66a7843836e74b813c1216da79524", + "x-ms-correlation-request-id": "db83204b-060c-4c97-9f59-55c1a323a6d8", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "16401e94-ced9-4ae4-a539-3b44ad89d163", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065047Z:db83204b-060c-4c97-9f59-55c1a323a6d8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "70bab5afd74b6090b57fa40d8c76c135", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a2b5c048-7e6d-4970-9f6d-8142133a7cb5", + "x-ms-client-request-id": "70bab5afd74b6090b57fa40d8c76c135", + "x-ms-correlation-request-id": "fbc07810-2a73-4d53-9ab2-cbea2ee004f8", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "e35aabbf-7339-4466-8d56-77ed54b23715", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065048Z:fbc07810-2a73-4d53-9ab2-cbea2ee004f8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "52ca80b9520beb6bd883d335fda9f2ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2a022453-d4c9-4f56-bc53-2ce90b53a5fb", + "x-ms-client-request-id": "52ca80b9520beb6bd883d335fda9f2ba", + "x-ms-correlation-request-id": "fad68a4e-5258-4e3a-90a5-d2e6e39f5b69", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "34325547-7cea-45ba-bef7-aef6451094e0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065050Z:fad68a4e-5258-4e3a-90a5-d2e6e39f5b69" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a9f7fe7d9c89a12ada7516049e66e241", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "97924270-ae1a-43e5-ac60-16344ef63529", + "x-ms-client-request-id": "a9f7fe7d9c89a12ada7516049e66e241", + "x-ms-correlation-request-id": "01eddeca-af9f-429b-bdde-b9e8131aed34", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "b89d525c-0a03-46b9-963c-9f46834641f9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065051Z:01eddeca-af9f-429b-bdde-b9e8131aed34" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ed688b5242dd5c184acf97c8045a630c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e6757279-9dc7-4513-a898-50db11e39e90", + "x-ms-client-request-id": "ed688b5242dd5c184acf97c8045a630c", + "x-ms-correlation-request-id": "b0716a01-f7bb-4e09-809d-f9c723c17c0f", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "e94c62cc-54d7-4e67-b952-c8f4c7726072", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065052Z:b0716a01-f7bb-4e09-809d-f9c723c17c0f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8d90ea8c177f1dab552978953c674c71", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "eab12591-c0c9-4da1-85b1-f2d01da4a299", + "x-ms-client-request-id": "8d90ea8c177f1dab552978953c674c71", + "x-ms-correlation-request-id": "66ca735c-322b-4eb7-aa38-a69a6c02829e", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "e1a00bd6-08f0-4d84-bc71-61b54d0c42cc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065054Z:66ca735c-322b-4eb7-aa38-a69a6c02829e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "71e392a105413adce59a5eb904629d7f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "76cb94ea-20be-4a60-92dc-ffce58887628", + "x-ms-client-request-id": "71e392a105413adce59a5eb904629d7f", + "x-ms-correlation-request-id": "e934319a-e249-4af6-aa52-98a13faedc02", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "e416ccad-1203-4f97-b717-4b6722e2ee35", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065055Z:e934319a-e249-4af6-aa52-98a13faedc02" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b477091254d63ac1df4a97b4ca8320e3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "245bb864-0a7e-4dbb-bbcc-8054e1ff0779", + "x-ms-client-request-id": "b477091254d63ac1df4a97b4ca8320e3", + "x-ms-correlation-request-id": "2a910761-8f81-4e34-bee4-7f5130fc3258", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "9ec1ae00-d6f4-41bf-89c0-bcc2f7a7a519", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065056Z:2a910761-8f81-4e34-bee4-7f5130fc3258" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "71272582f27687cb0d56a7e4b8f218f3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f4a8c763-ed6a-4ee9-9a4a-0d25c2818b7e", + "x-ms-client-request-id": "71272582f27687cb0d56a7e4b8f218f3", + "x-ms-correlation-request-id": "c0e07bef-a549-4bf4-b63c-426a3013b1d0", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "bbb5061d-98ca-4320-84fb-f71e28bab52c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065057Z:c0e07bef-a549-4bf4-b63c-426a3013b1d0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3283f88c98ef4c9bd0a991f66d286f62", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "55f98eb3-a207-4d1a-a49c-1aebfc915edd", + "x-ms-client-request-id": "3283f88c98ef4c9bd0a991f66d286f62", + "x-ms-correlation-request-id": "39d56f1b-ab8c-4267-bbfe-3d7c16596e8f", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "f4e91c13-2b85-4be8-9a66-806287de4615", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065059Z:39d56f1b-ab8c-4267-bbfe-3d7c16596e8f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "de377b7a2b3a1f083ef0a680acdc81ed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f93bd67c-9696-4a22-9807-eb26a6fd9a9c", + "x-ms-client-request-id": "de377b7a2b3a1f083ef0a680acdc81ed", + "x-ms-correlation-request-id": "7d189202-adbc-43b3-b1e3-caf0e9f3b1b9", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "d87f6157-6202-427f-9b58-9e49818ebf6a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065100Z:7d189202-adbc-43b3-b1e3-caf0e9f3b1b9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d127a331ed00eaf48adaa0cd61d519e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "3f8eb66b-e998-4d25-a347-4defcc19936a", + "x-ms-client-request-id": "d127a331ed00eaf48adaa0cd61d519e4", + "x-ms-correlation-request-id": "6fe8c6d6-7ad6-4508-9031-4ce6d3e8e931", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "e2c752a6-db14-461d-a946-fe636caf3b61", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065101Z:6fe8c6d6-7ad6-4508-9031-4ce6d3e8e931" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3d6a45e63aba60b8f063f3fef11b9ff4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9cd7713b-32c6-4e0f-ba60-fa51943bb265", + "x-ms-client-request-id": "3d6a45e63aba60b8f063f3fef11b9ff4", + "x-ms-correlation-request-id": "3983bccc-b3c8-42e2-a208-925672b2dffb", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "6e602113-5212-410c-977f-0674685d2051", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065103Z:3983bccc-b3c8-42e2-a208-925672b2dffb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c9c4a3279e008c62874c54608b3bbe69", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "fba5ce4f-c6ce-41e7-b865-490dcecc31cd", + "x-ms-client-request-id": "c9c4a3279e008c62874c54608b3bbe69", + "x-ms-correlation-request-id": "f3a9d708-7eb8-4870-b851-4e4d81434a2b", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "36ca8ab3-1f6a-474d-9f3a-ccbb3b0d552a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065104Z:f3a9d708-7eb8-4870-b851-4e4d81434a2b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "679ac1d64472f733ebc7e19cf9f5f86f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a7398ee6-2dc5-4af9-9317-be7786cb783b", + "x-ms-client-request-id": "679ac1d64472f733ebc7e19cf9f5f86f", + "x-ms-correlation-request-id": "d120f952-6b79-4ba2-9e6b-315d7bacebe7", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "83bf0747-f188-405f-add6-9b798e199689", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065106Z:d120f952-6b79-4ba2-9e6b-315d7bacebe7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bda6ac3a4f1048e3e2deb56de658d5b4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "f2628698-e4c9-4da7-984e-c2294233603a", + "x-ms-client-request-id": "bda6ac3a4f1048e3e2deb56de658d5b4", + "x-ms-correlation-request-id": "8461af62-0cb8-4531-aee6-8b3198c64682", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "e22633ad-f643-42d8-86c0-ff214aa9cd21", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065107Z:8461af62-0cb8-4531-aee6-8b3198c64682" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2f278aa43881e38170cdde39bcc59291", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4d1e2e83-fd2b-44c9-9745-c3b964184a76", + "x-ms-client-request-id": "2f278aa43881e38170cdde39bcc59291", + "x-ms-correlation-request-id": "c48d43e9-db2a-495e-9cd6-bd405b71b4c4", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "503a816d-bd6e-4176-8568-b645d8984fa6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065108Z:c48d43e9-db2a-495e-9cd6-bd405b71b4c4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "de25e55401948758de5284948ec51192", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d072e52f-2a9b-46a7-b009-cf9086d8e7e1", + "x-ms-client-request-id": "de25e55401948758de5284948ec51192", + "x-ms-correlation-request-id": "45fab418-be23-44e4-8de3-0d8d089f5722", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "64baac1b-d679-4734-9c44-6963fc906024", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065109Z:45fab418-be23-44e4-8de3-0d8d089f5722" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6ff82cf1c8cd02ed2ac34d4370a98b1d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "748e2383-6477-41ee-9080-4ce7b0d7543a", + "x-ms-client-request-id": "6ff82cf1c8cd02ed2ac34d4370a98b1d", + "x-ms-correlation-request-id": "4e767bca-4a2c-45bf-83ab-51be34b02102", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "f2785879-26eb-4a88-bcb4-f6baed98316f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065111Z:4e767bca-4a2c-45bf-83ab-51be34b02102" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0019234bf732a32032a0512fb3ed54ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "d3671da1-bc39-46d1-9950-0b7d0aacf827", + "x-ms-client-request-id": "0019234bf732a32032a0512fb3ed54ab", + "x-ms-correlation-request-id": "b9d5ac8d-1c62-48fd-8715-69a1f5aa3bba", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "76863708-4ad8-430a-a3d1-e55798d9aa17", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065112Z:b9d5ac8d-1c62-48fd-8715-69a1f5aa3bba" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8f484bbc23cd8bc4f723b3d1b4151634", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "ded040ce-b392-46b3-9c90-0be2489bb620", + "x-ms-client-request-id": "8f484bbc23cd8bc4f723b3d1b4151634", + "x-ms-correlation-request-id": "21639825-f201-4400-8183-022c5a84dc0a", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "8b18beaf-e706-4b2a-92a3-ad7d1a8c662c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065113Z:21639825-f201-4400-8183-022c5a84dc0a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6a4867c610abfa600c553d2d77be4f3d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8f14d913-da95-410a-90d6-acbb2b8cb54d", + "x-ms-client-request-id": "6a4867c610abfa600c553d2d77be4f3d", + "x-ms-correlation-request-id": "9670afb3-16bf-470c-be8f-5171751d46a8", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "f3991d8b-78e2-4e3e-97dd-4f19025b512f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065115Z:9670afb3-16bf-470c-be8f-5171751d46a8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2487a16efb61284f5f8d090f434eef1c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7c10d056-bc07-4476-9c35-a66093cd83bf", + "x-ms-client-request-id": "2487a16efb61284f5f8d090f434eef1c", + "x-ms-correlation-request-id": "c42c793a-3d7d-4580-bf8f-7167ff1a1753", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "9c432399-aefc-4ceb-b5d6-0f201d744f48", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065116Z:c42c793a-3d7d-4580-bf8f-7167ff1a1753" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4b681d89eaa4abffeb4e8378e5971438", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1950aebf-30c1-46d2-aac1-98d12c8066f8", + "x-ms-client-request-id": "4b681d89eaa4abffeb4e8378e5971438", + "x-ms-correlation-request-id": "bbc02545-9ba9-43b8-9d8e-d326723c5032", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "9c4a5329-806e-44c2-a65e-ec05a6bd6512", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065117Z:bbc02545-9ba9-43b8-9d8e-d326723c5032" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "126376d3f18dcbd3171f0a1d0650b7bd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "c6665ecf-9cca-4f55-9eda-99631c098c1d", + "x-ms-client-request-id": "126376d3f18dcbd3171f0a1d0650b7bd", + "x-ms-correlation-request-id": "df6f59a5-7c36-4845-9497-9864e19fa494", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "1aac9a1f-a55a-4042-8b47-0ceea1febcf6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065118Z:df6f59a5-7c36-4845-9497-9864e19fa494" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "59a3206603568498a2db391277d742c8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7a470547-70b6-4d54-8694-5e076ea9855b", + "x-ms-client-request-id": "59a3206603568498a2db391277d742c8", + "x-ms-correlation-request-id": "25240179-3fad-4bee-a65a-1b0696d69cad", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "768bff0a-a688-4b61-8600-d39719bf2c74", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065120Z:25240179-3fad-4bee-a65a-1b0696d69cad" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cc3bd079dceb978e4a9d3485dfe2a49a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7121213f-c37a-4d60-8d07-534214c0dea4", + "x-ms-client-request-id": "cc3bd079dceb978e4a9d3485dfe2a49a", + "x-ms-correlation-request-id": "625b87dc-434c-4dcc-bbca-8d74129153ea", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "7599a341-3dc2-458a-a14c-70b4ea44f1fc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065121Z:625b87dc-434c-4dcc-bbca-8d74129153ea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c512c597baf3d0e2dede70b2b8c05340", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "10674f83-b677-4833-838c-7672f6e764d3", + "x-ms-client-request-id": "c512c597baf3d0e2dede70b2b8c05340", + "x-ms-correlation-request-id": "c3b2ec50-1d0f-4705-8473-d22f6e2c03b5", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "452533a7-44de-46a4-99e2-1e364a7c24ac", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065122Z:c3b2ec50-1d0f-4705-8473-d22f6e2c03b5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "36a442ddea1489d2910c0fb8cf13a5c0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "9c59fbc5-f2a2-47b6-82fc-9d012763af51", + "x-ms-client-request-id": "36a442ddea1489d2910c0fb8cf13a5c0", + "x-ms-correlation-request-id": "c7712eef-f0ea-499c-a21a-8b4d2d2f2a96", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "a4aeff33-6cc8-49b6-a890-267da501f613", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065124Z:c7712eef-f0ea-499c-a21a-8b4d2d2f2a96" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b27b9e377dc5bed5ed6aee0d6cdcdf89", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "ab6a20a9-9b87-49e6-a39c-459855a17c08", + "x-ms-client-request-id": "b27b9e377dc5bed5ed6aee0d6cdcdf89", + "x-ms-correlation-request-id": "82f9c761-d62e-48d0-8ca4-043776353639", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "2c73f330-8ce8-4927-9a44-3aa62217642b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065125Z:82f9c761-d62e-48d0-8ca4-043776353639" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9ca7f34a6e3dac86f38933e6aa2a01ca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "339ba0d4-3f6d-4a8e-920a-80426e2ec1da", + "x-ms-client-request-id": "9ca7f34a6e3dac86f38933e6aa2a01ca", + "x-ms-correlation-request-id": "1c0dcbaa-ec57-4370-90f3-7e22459213fa", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "f982ab7e-d035-46af-8194-98def9adba0f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065126Z:1c0dcbaa-ec57-4370-90f3-7e22459213fa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1a7bb038a0445f7b6de548a9fbc51cb4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d87a6b7c-a608-4098-b2dd-888135b2f588", + "x-ms-client-request-id": "1a7bb038a0445f7b6de548a9fbc51cb4", + "x-ms-correlation-request-id": "5f196e08-2974-4e91-8a69-dc65c75b4a61", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "0b7c5e4b-77d3-41c9-ac9e-5084b72083b1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065127Z:5f196e08-2974-4e91-8a69-dc65c75b4a61" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "db6e862d086bc88218cebf3b49ee13c3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "151b430b-8685-441e-ba4d-cb32c064719f", + "x-ms-client-request-id": "db6e862d086bc88218cebf3b49ee13c3", + "x-ms-correlation-request-id": "318594ae-6a83-4a81-937a-9482a082a86f", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "9700569e-3490-4508-af14-b681a9c6d982", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065129Z:318594ae-6a83-4a81-937a-9482a082a86f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bcd42469c461a94478482f5825dcb12d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5571c935-bafe-4890-9303-56fdee70530c", + "x-ms-client-request-id": "bcd42469c461a94478482f5825dcb12d", + "x-ms-correlation-request-id": "f7abc10e-28d7-41c4-a60d-6598e93c38d1", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "8385f4cc-3341-42cf-9c54-8487a9470e71", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065130Z:f7abc10e-28d7-41c4-a60d-6598e93c38d1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "24b97f6c26bb305f2db20276e13f157e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "189e7b5a-a654-4190-83f6-e087b87e9bb0", + "x-ms-client-request-id": "24b97f6c26bb305f2db20276e13f157e", + "x-ms-correlation-request-id": "f88c4cfb-6d01-408a-b383-81b9db928ead", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "0b33dcbc-379d-4b0e-a48e-7484858c8826", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065131Z:f88c4cfb-6d01-408a-b383-81b9db928ead" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d74084d15ff1685241c56223d92aa23c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "35142af5-3be6-4a9c-b8d7-e0bbb70afffe", + "x-ms-client-request-id": "d74084d15ff1685241c56223d92aa23c", + "x-ms-correlation-request-id": "0310048e-0e42-4f7d-bdf4-18b13acefaa8", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "d97e9089-6967-4c23-b90f-dffa824923f7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065132Z:0310048e-0e42-4f7d-bdf4-18b13acefaa8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cacf911def344208c4a48fafc2cec739", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "68ece953-3f97-4060-a044-dc84d4c78a71", + "x-ms-client-request-id": "cacf911def344208c4a48fafc2cec739", + "x-ms-correlation-request-id": "df16bc96-b207-4b66-9a53-6c3d4e6e7ae8", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "4425388f-389d-4e9b-9963-c85d110dcead", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065134Z:df16bc96-b207-4b66-9a53-6c3d4e6e7ae8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a186b132d99b0d3c2c51e3f6c33c5603", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d3ddefba-9b62-4e28-99af-be5257e43690", + "x-ms-client-request-id": "a186b132d99b0d3c2c51e3f6c33c5603", + "x-ms-correlation-request-id": "61203532-df37-4f5a-900d-8873a46bb41f", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "429915aa-20ab-4746-825e-5312fd2bcd1b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065136Z:61203532-df37-4f5a-900d-8873a46bb41f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4f58c60f4b70e2497bfd124dd0a3a672", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ea346a5c-074f-49c9-8237-b49e3ee524fe", + "x-ms-client-request-id": "4f58c60f4b70e2497bfd124dd0a3a672", + "x-ms-correlation-request-id": "a51c8472-4083-4782-875e-ed8f87f1d8ca", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "824ef169-6994-45ae-a464-9195bed9a711", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065137Z:a51c8472-4083-4782-875e-ed8f87f1d8ca" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "28f029fd01a343a055c19ee30b127f88", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "35fea581-133a-409a-933e-b239571aa7e6", + "x-ms-client-request-id": "28f029fd01a343a055c19ee30b127f88", + "x-ms-correlation-request-id": "7992097c-90e6-4eb1-80c2-2947faf27e45", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "4751862b-9b43-4a11-b5c4-33448b05a517", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065139Z:7992097c-90e6-4eb1-80c2-2947faf27e45" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fc9f8b4d7875e6c967a4259dc7ef3d88", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "271bc85e-df05-4363-8eb8-fad6b4f7fd16", + "x-ms-client-request-id": "fc9f8b4d7875e6c967a4259dc7ef3d88", + "x-ms-correlation-request-id": "546e7045-b34d-4f4c-a868-de6b6940e744", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "60b41be1-9c16-4047-8eae-5e70825c7b3b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065140Z:546e7045-b34d-4f4c-a868-de6b6940e744" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9af871ab2e4b0e5f2515faaead66d669", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e5864a90-5422-4055-b51d-20a69cad7430", + "x-ms-client-request-id": "9af871ab2e4b0e5f2515faaead66d669", + "x-ms-correlation-request-id": "66eaef7b-fb96-4dbd-aa37-73fe4e8e1e05", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "487ed1da-0b6b-4246-a238-099544923e9e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065141Z:66eaef7b-fb96-4dbd-aa37-73fe4e8e1e05" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "44ff8a7ea90385fc5f09c0ffdb027c66", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "699bf3fa-ae31-4f39-b848-cf87083a581e", + "x-ms-client-request-id": "44ff8a7ea90385fc5f09c0ffdb027c66", + "x-ms-correlation-request-id": "9479c645-67de-4ad8-923c-beeaedd483bb", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "b66e3383-130d-4890-accb-888bdd4b48ba", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065143Z:9479c645-67de-4ad8-923c-beeaedd483bb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9a381584e4191e3d2b91d7607d1a3900", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "24ba9059-4536-45ef-8408-f27a13f8ebc7", + "x-ms-client-request-id": "9a381584e4191e3d2b91d7607d1a3900", + "x-ms-correlation-request-id": "9ce1f28c-0caa-43ab-89b9-18645f2d704a", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "19c16467-014e-4bf1-abcc-4650ca9fb39b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065144Z:9ce1f28c-0caa-43ab-89b9-18645f2d704a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3d1ebbcdf8ef018474733a416d603322", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:51: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": "6a862327-f24e-4c31-a4b1-2d905c7f87f8", + "x-ms-client-request-id": "3d1ebbcdf8ef018474733a416d603322", + "x-ms-correlation-request-id": "5afa4ebf-e5a4-4b41-a6aa-e1eaaae604dc", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "f3b5c263-4e02-45a1-bd99-16b2ab77acb1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065145Z:5afa4ebf-e5a4-4b41-a6aa-e1eaaae604dc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "972a94993b2e9a504ce01972d29c0745", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3d155c37-d87a-4030-ad1b-aefad9187734", + "x-ms-client-request-id": "972a94993b2e9a504ce01972d29c0745", + "x-ms-correlation-request-id": "06c10a92-4271-44a2-8662-bb7997b940ac", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "857a0f4d-c874-4e97-a24a-5146fd6ed676", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065146Z:06c10a92-4271-44a2-8662-bb7997b940ac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1f31c0d03fe48b76903626a5a9fbb0cb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "04f195e8-52e1-4388-bcd6-7ed7a93a611d", + "x-ms-client-request-id": "1f31c0d03fe48b76903626a5a9fbb0cb", + "x-ms-correlation-request-id": "ddf334cf-ea91-4117-bb70-dfb900b45ea9", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "1998d430-3c75-4deb-9567-5be92822b00a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065148Z:ddf334cf-ea91-4117-bb70-dfb900b45ea9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e9c6b45ea2ef92d26b84f00edf122fd8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b2870bea-42f5-4691-a39d-f6344dcbb5f0", + "x-ms-client-request-id": "e9c6b45ea2ef92d26b84f00edf122fd8", + "x-ms-correlation-request-id": "925625bf-2552-4531-b5cf-ff49ae3f072e", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "ad56e4ab-16b7-452b-8ebd-26491954e766", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065149Z:925625bf-2552-4531-b5cf-ff49ae3f072e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ad71f56b132e5a3e1d9f06f715aaf051", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:51: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": "93051024-7d51-4d52-a10a-3a89347377e1", + "x-ms-client-request-id": "ad71f56b132e5a3e1d9f06f715aaf051", + "x-ms-correlation-request-id": "89159e3b-ec89-4a61-8bf8-f9f7424eaa32", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "3a9b4e8f-b5c1-4610-aa50-eb16491abb29", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065150Z:89159e3b-ec89-4a61-8bf8-f9f7424eaa32" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1d144d301ed52e55ee9fb45f4e67ac7e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "50e81e32-cb08-40ae-8d43-dc0ac432e27b", + "x-ms-client-request-id": "1d144d301ed52e55ee9fb45f4e67ac7e", + "x-ms-correlation-request-id": "0488ec64-3e4e-4793-bac9-dd0b03f4bda7", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "e4cf32ee-e4c6-4be5-bbce-411c24685c32", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065151Z:0488ec64-3e4e-4793-bac9-dd0b03f4bda7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b43a4d07038a4a9c766ccb509bda7dc1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a5f600ce-7a59-4fc1-bbe3-520fd26b9f94", + "x-ms-client-request-id": "b43a4d07038a4a9c766ccb509bda7dc1", + "x-ms-correlation-request-id": "a3c0d30c-2590-4088-86ab-f338fe332410", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "cf8b4ed7-77c2-4afd-933c-91f4dc103691", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065153Z:a3c0d30c-2590-4088-86ab-f338fe332410" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "91de9e9411fd4d039f43bf8f5fdf0bb6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:51: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": "4ceadc01-0e7c-4948-a89e-e63670d476b7", + "x-ms-client-request-id": "91de9e9411fd4d039f43bf8f5fdf0bb6", + "x-ms-correlation-request-id": "acda746c-5616-4b38-a72e-00088cfd977f", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "b44b9f81-9b06-4e93-98d0-9a0f6bf80609", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065154Z:acda746c-5616-4b38-a72e-00088cfd977f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c7f088f33b702cc7b1caa76852059313", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "558832b0-61af-44ae-b4d9-4baf156d0021", + "x-ms-client-request-id": "c7f088f33b702cc7b1caa76852059313", + "x-ms-correlation-request-id": "0fd5cef6-c13c-475f-a1a1-3cf9df8ac712", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "b7465dda-d5d7-448e-ad46-dfd0f5d44b22", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065156Z:0fd5cef6-c13c-475f-a1a1-3cf9df8ac712" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "afcaf3211a88f6804aec1546440ceb96", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ceff1d25-8b10-4fa4-8919-62328682c8f0", + "x-ms-client-request-id": "afcaf3211a88f6804aec1546440ceb96", + "x-ms-correlation-request-id": "28aa7b07-09b2-4581-b91a-c09fc9942f8e", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "4123b939-d20d-4982-9721-ee29ad1f8226", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065157Z:28aa7b07-09b2-4581-b91a-c09fc9942f8e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "125d1561b6ea5850d7b2e033699afb9a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5488a54e-3887-41c5-aa41-f4778d9612cd", + "x-ms-client-request-id": "125d1561b6ea5850d7b2e033699afb9a", + "x-ms-correlation-request-id": "ed746e68-0c19-44ce-9055-91f724f169d9", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "df75f9ff-80f4-4cd8-b1e5-b82344eca170", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065158Z:ed746e68-0c19-44ce-9055-91f724f169d9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6c6eabb05b14d82d07fa7c832680e8a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "696c5012-304f-4c34-a978-9ae397106e69", + "x-ms-client-request-id": "6c6eabb05b14d82d07fa7c832680e8a4", + "x-ms-correlation-request-id": "6b1b892d-b85b-47a0-a152-61bc78ff1340", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "6146c6d7-0d62-44e9-a38a-e773f89e3cc1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065200Z:6b1b892d-b85b-47a0-a152-61bc78ff1340" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3c0710df80a76b28a271d8d63a4d8caf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "677e1ab7-c718-4a4d-aff9-f819cca6d9a4", + "x-ms-client-request-id": "3c0710df80a76b28a271d8d63a4d8caf", + "x-ms-correlation-request-id": "c1246ed9-8edf-4c8c-965e-4ed3fb6c1389", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "0117496b-95fc-4855-912a-c8a29f5ed494", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065201Z:c1246ed9-8edf-4c8c-965e-4ed3fb6c1389" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "98967af17e9e0582e8840bf039cd3257", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "32a1c570-a182-40bc-aa0f-0f38351335ce", + "x-ms-client-request-id": "98967af17e9e0582e8840bf039cd3257", + "x-ms-correlation-request-id": "d2488344-7528-4607-b0cb-7281ecd772c7", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "5fe4a4a4-d0eb-4795-bce9-fcfb8547232c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065202Z:d2488344-7528-4607-b0cb-7281ecd772c7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "58543bcabe932ff28302caa283569eb9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "4d0ee5b4-0c2e-4d8d-b4c0-3433a3391373", + "x-ms-client-request-id": "58543bcabe932ff28302caa283569eb9", + "x-ms-correlation-request-id": "5210c832-03df-4feb-b169-62e14f6ed112", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "7ebd8c10-ca14-4f29-8792-d8ffbe420c09", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065203Z:5210c832-03df-4feb-b169-62e14f6ed112" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ab92cd6d4fea60068e025422753832d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d4b1cdb1-bbc6-440c-a5a4-9a304802ab90", + "x-ms-client-request-id": "ab92cd6d4fea60068e025422753832d5", + "x-ms-correlation-request-id": "3816f24a-7cc8-4ff0-99d7-6903e380cbd9", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "5beddb4e-3c77-4848-b208-fc9f9291f31f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065205Z:3816f24a-7cc8-4ff0-99d7-6903e380cbd9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fe0c813f33f9321c8766159bb4e08191", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:52: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": "7f4efa28-ea7e-4167-a170-fec9f9120fc2", + "x-ms-client-request-id": "fe0c813f33f9321c8766159bb4e08191", + "x-ms-correlation-request-id": "5f5a9261-276a-4f4a-a74e-fc8fbc7debe6", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "cc8da5dc-92de-480d-8c5c-c8e5c213c9e0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065207Z:5f5a9261-276a-4f4a-a74e-fc8fbc7debe6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6b8251e6863a7a6c35f3ca9169cfba4a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d62f2852-4176-4072-a7b7-0e5918fe13cc", + "x-ms-client-request-id": "6b8251e6863a7a6c35f3ca9169cfba4a", + "x-ms-correlation-request-id": "4938d918-c7a9-4098-be1b-bb2c93305589", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "793143ab-0b9b-48ae-9f9d-e51bc74e1c3a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065209Z:4938d918-c7a9-4098-be1b-bb2c93305589" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0263f5d0a0493ac0b15f23843a6aacae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7730996e-29da-47f5-a530-2c00eb33e995", + "x-ms-client-request-id": "0263f5d0a0493ac0b15f23843a6aacae", + "x-ms-correlation-request-id": "1f512b14-253f-40e5-b479-8f4c02f634f5", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "1db2ac05-f064-4ab7-a9c3-2a7f1707dff7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065211Z:1f512b14-253f-40e5-b479-8f4c02f634f5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "243cc280c6b6b89a1492c905698ac8b7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "02b78f0e-f1cd-4e54-95cf-e2e344049900", + "x-ms-client-request-id": "243cc280c6b6b89a1492c905698ac8b7", + "x-ms-correlation-request-id": "575e36c6-5afa-44e1-9483-fa130c7579d0", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "3754cf63-2e05-44ae-9648-28bbea07538a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065213Z:575e36c6-5afa-44e1-9483-fa130c7579d0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bfcbcaab7e7d46479048badb63e83fca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9722ff38-ca4f-4ad8-af16-53e3a0e644a7", + "x-ms-client-request-id": "bfcbcaab7e7d46479048badb63e83fca", + "x-ms-correlation-request-id": "c9941613-2d10-4a18-8f51-76a24669a376", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "cbd09c0f-921c-4392-95a0-97c8536ff142", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065214Z:c9941613-2d10-4a18-8f51-76a24669a376" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a7101c47969309935aaaeeb7d6bad026", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "b1b65b11-037b-4f40-b17e-f5335a738b11", + "x-ms-client-request-id": "a7101c47969309935aaaeeb7d6bad026", + "x-ms-correlation-request-id": "70b922d5-decc-49f9-b1c4-cae38f05e318", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "2bcdb033-6d0a-4e60-b9b8-b59c8e630132", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065216Z:70b922d5-decc-49f9-b1c4-cae38f05e318" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6fd86b96ec9e02317af6936e0cbf552b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3e9e9484-39d2-4a82-9db9-feb9648e440a", + "x-ms-client-request-id": "6fd86b96ec9e02317af6936e0cbf552b", + "x-ms-correlation-request-id": "8ccf4370-3719-4e37-914c-91190bc5594e", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "c62a6e78-1f53-47cb-bd48-9f6b2865f69e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065217Z:8ccf4370-3719-4e37-914c-91190bc5594e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4cbdfe53217a152436c264d290906fd6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "32122ba3-e8e3-4ffb-963a-e03d888b8cd7", + "x-ms-client-request-id": "4cbdfe53217a152436c264d290906fd6", + "x-ms-correlation-request-id": "58bdd4df-45b8-46b2-af52-57bff7e38224", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "c2a2176d-9e4a-48bf-bbc8-902866348d08", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065218Z:58bdd4df-45b8-46b2-af52-57bff7e38224" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f7449377cf105b2ceb0e2c9c0325fc9b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f8cc8cc6-4ec1-4468-92e1-a4b4ebed46cc", + "x-ms-client-request-id": "f7449377cf105b2ceb0e2c9c0325fc9b", + "x-ms-correlation-request-id": "75d02eab-5443-4916-88a2-6d4be4f00838", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "6e58e708-efe9-4dbf-979c-75af72ee8d4f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065220Z:75d02eab-5443-4916-88a2-6d4be4f00838" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d764c25584fd74ac46c239db885e71ea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "c73cc806-d113-4177-b0f9-eafdc0fce53f", + "x-ms-client-request-id": "d764c25584fd74ac46c239db885e71ea", + "x-ms-correlation-request-id": "e161d2c4-f5e7-4f79-8587-a8886e7277e3", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "e095213d-d9e7-4870-b2ab-dbacab182d58", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065221Z:e161d2c4-f5e7-4f79-8587-a8886e7277e3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "78f6bd875d7a831bd262616cf5881210", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "895824ad-40d9-4d0a-a04c-033f151cb0db", + "x-ms-client-request-id": "78f6bd875d7a831bd262616cf5881210", + "x-ms-correlation-request-id": "b7c7e4dd-b22e-456a-8699-92d04ac1c5e8", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "97571884-0c21-4cc1-a5c9-44b935d2274a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065222Z:b7c7e4dd-b22e-456a-8699-92d04ac1c5e8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cd7dc9c5972cf3d9e7cfb04d9650d38c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ce9bb8ef-1399-4f8a-af77-3a1e114fd087", + "x-ms-client-request-id": "cd7dc9c5972cf3d9e7cfb04d9650d38c", + "x-ms-correlation-request-id": "acdb7cc6-3c8c-44b6-94ab-9bfebc69d319", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "4e19f699-39f3-46f1-8201-d6486a9b1378", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065224Z:acdb7cc6-3c8c-44b6-94ab-9bfebc69d319" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4614429c832ff720a7e0059a22407fbe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "a124c84b-ae5b-4514-b00e-3de441e5aefe", + "x-ms-client-request-id": "4614429c832ff720a7e0059a22407fbe", + "x-ms-correlation-request-id": "e0f2197e-8a11-4d02-840f-55d71b86a2d0", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "9144d7c1-f56c-48e8-9b45-05dddd395e77", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065225Z:e0f2197e-8a11-4d02-840f-55d71b86a2d0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "be1628b0a4e1efbde40391abadcded82", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c2ac7425-0fd8-442e-8864-ea54c805490f", + "x-ms-client-request-id": "be1628b0a4e1efbde40391abadcded82", + "x-ms-correlation-request-id": "497c8da0-ae43-4e21-b139-3a0e991d4611", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "f28c37a8-bc10-41f7-979c-0e9a6ed08ac2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065226Z:497c8da0-ae43-4e21-b139-3a0e991d4611" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b2cfd48fcc7341e1a886264b923ed0a7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "492b6aed-0e52-426b-8ef1-86accedefb9e", + "x-ms-client-request-id": "b2cfd48fcc7341e1a886264b923ed0a7", + "x-ms-correlation-request-id": "dc8c3961-e8f1-47a7-9f5f-153314423a94", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "91aac23a-35b5-435b-8413-88308a386689", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065227Z:dc8c3961-e8f1-47a7-9f5f-153314423a94" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6e9df24f143af8ab8425622bf2754ad9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "cc4d162e-2804-4a65-948b-43537a02b899", + "x-ms-client-request-id": "6e9df24f143af8ab8425622bf2754ad9", + "x-ms-correlation-request-id": "bf03ea64-2667-4a13-b172-9cab061f0335", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "74e890f8-2315-4fe8-8a50-9adc3a6c0867", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065229Z:bf03ea64-2667-4a13-b172-9cab061f0335" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4e0a82f3cd70e44a46d4155b7d715da5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "cc3b6e7f-2732-4fb7-a203-c68ffec32171", + "x-ms-client-request-id": "4e0a82f3cd70e44a46d4155b7d715da5", + "x-ms-correlation-request-id": "f198dd6e-2118-4dcb-b929-51e5be1e1821", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "6f6f24b3-19fb-49a2-9cf3-555244c59df4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065230Z:f198dd6e-2118-4dcb-b929-51e5be1e1821" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ba5be9337e307b4828d72d4e69b54f33", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1d0e494d-f92a-4de6-881e-f87f44549007", + "x-ms-client-request-id": "ba5be9337e307b4828d72d4e69b54f33", + "x-ms-correlation-request-id": "e76ff996-34e2-41ba-9ea9-6a4dff6493bf", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "b81361cf-1c1c-464e-947b-78191e587956", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065231Z:e76ff996-34e2-41ba-9ea9-6a4dff6493bf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0f584c3b82338236a8b82766fe507a13", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "cbb4a5fe-05e9-488b-b5ce-25e331c563a3", + "x-ms-client-request-id": "0f584c3b82338236a8b82766fe507a13", + "x-ms-correlation-request-id": "b4798f37-a579-4841-beb6-eff9d0a1820e", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "3c563d4c-dfe6-44ee-8026-7956f52ff2fe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065232Z:b4798f37-a579-4841-beb6-eff9d0a1820e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "08f8bcc78f1974a93a8f25999ffb7a90", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "fe7485e9-f0a8-4663-82c2-876b9599b695", + "x-ms-client-request-id": "08f8bcc78f1974a93a8f25999ffb7a90", + "x-ms-correlation-request-id": "ec2a05dc-5be3-4476-aa2a-d0fc6058f9b3", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "e4cddd91-d259-4168-ad83-83e0b29f623d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065234Z:ec2a05dc-5be3-4476-aa2a-d0fc6058f9b3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "311fe1844d19b171b2d9127757e17cd8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6fd61f5c-c73c-4490-8258-1f854da449bd", + "x-ms-client-request-id": "311fe1844d19b171b2d9127757e17cd8", + "x-ms-correlation-request-id": "976703f9-2742-49cd-9af2-95ecde88a8e5", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "4bcdd4c6-3738-469f-b5e7-af833a93433c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065236Z:976703f9-2742-49cd-9af2-95ecde88a8e5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ad861a5c46bdac1aa2e4d4a45c9de3ac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "41ee0369-d524-4f1e-b3b0-5125b791f254", + "x-ms-client-request-id": "ad861a5c46bdac1aa2e4d4a45c9de3ac", + "x-ms-correlation-request-id": "eff062c5-2129-4064-8d7f-dc3525301f27", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "3ff790f5-910f-4f06-908b-ab6578c88664", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065237Z:eff062c5-2129-4064-8d7f-dc3525301f27" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1de1973e49317afa4b4755407c321d58", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:52: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": "edbefd89-c694-4903-af84-c0f17df4deaf", + "x-ms-client-request-id": "1de1973e49317afa4b4755407c321d58", + "x-ms-correlation-request-id": "cfc56540-5c0a-49fc-8e50-9eaf856b27b3", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-request-id": "a03d8a4e-4015-4a44-a650-d4932af5f6bd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065238Z:cfc56540-5c0a-49fc-8e50-9eaf856b27b3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "843c4c13cd743dd3c7728e3478cd5415", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "603acf31-7fe6-4562-88df-f5bf82e3c9b3", + "x-ms-client-request-id": "843c4c13cd743dd3c7728e3478cd5415", + "x-ms-correlation-request-id": "a06a799d-bb6c-47e6-8c71-8eb6ff10d941", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "0d039711-4b14-492c-9773-569d2d27c66b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065239Z:a06a799d-bb6c-47e6-8c71-8eb6ff10d941" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c03866f65f0012a7200c6176f1da306f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "228a55b6-cfa9-403d-8c48-59826f0f2d42", + "x-ms-client-request-id": "c03866f65f0012a7200c6176f1da306f", + "x-ms-correlation-request-id": "f1cf3025-8889-4050-ae9a-2d4dcfb90a31", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "fa212bd0-a2a4-4904-b4a6-c74a4624ec86", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065241Z:f1cf3025-8889-4050-ae9a-2d4dcfb90a31" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0f917bc75e617038c3a355bfbac5017e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "682fea1e-5bab-44b2-9c13-6784638f46f6", + "x-ms-client-request-id": "0f917bc75e617038c3a355bfbac5017e", + "x-ms-correlation-request-id": "df85d73f-37e8-4825-af78-fc0f9b042862", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "d2d38982-8d65-43cc-8cc1-2f4a3e9563fe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065242Z:df85d73f-37e8-4825-af78-fc0f9b042862" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "164940f25dfab358a52964676b5d4cec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "7b635689-bfef-4393-ade5-d1e65ced6752", + "x-ms-client-request-id": "164940f25dfab358a52964676b5d4cec", + "x-ms-correlation-request-id": "82bbe54b-f5a5-4d89-bb98-14db99bf8c83", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "25bb5460-851a-4672-9020-cf42adee3ec0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065243Z:82bbe54b-f5a5-4d89-bb98-14db99bf8c83" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fc6d1e41443c97b42dc7fc5c09e7575b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "cb559d6c-0cf2-4b27-b689-b0f12964d2b7", + "x-ms-client-request-id": "fc6d1e41443c97b42dc7fc5c09e7575b", + "x-ms-correlation-request-id": "a7495e59-fd55-4b72-9d06-f67867b55031", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "ca57a9c7-b58f-498d-90f9-dd5838b1f112", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065245Z:a7495e59-fd55-4b72-9d06-f67867b55031" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b083e30a1a906a7523dd6a37fad00566", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6357d05a-5bee-4e1d-b64f-762d436ea68b", + "x-ms-client-request-id": "b083e30a1a906a7523dd6a37fad00566", + "x-ms-correlation-request-id": "4ef397d4-28ab-49ec-a304-4d7ab659c38b", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "06854305-f8fb-4869-a94c-81e9676995aa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065246Z:4ef397d4-28ab-49ec-a304-4d7ab659c38b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9c7d69560558ae418cb1e83260fcaabd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "25e8dd96-b564-4ae1-adc8-95acd568b979", + "x-ms-client-request-id": "9c7d69560558ae418cb1e83260fcaabd", + "x-ms-correlation-request-id": "657de90d-b5fb-4272-b07c-23a193aaaef6", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "49dda099-002e-431c-bbce-f91a97fc8eea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065248Z:657de90d-b5fb-4272-b07c-23a193aaaef6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "875d09d19cd9275ba903d95fda7d9d5c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d3d30b53-39f9-4f6c-9280-b74274a8c131", + "x-ms-client-request-id": "875d09d19cd9275ba903d95fda7d9d5c", + "x-ms-correlation-request-id": "02cf4b4c-418e-4237-a4e7-e421d7bcbd4c", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "9a6fb943-62a2-456d-9585-af5829f386e7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065249Z:02cf4b4c-418e-4237-a4e7-e421d7bcbd4c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9f0595c2bb6a0502a1d424de31430927", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d8d9e148-829a-4476-9f0e-30ecf5b5f93a", + "x-ms-client-request-id": "9f0595c2bb6a0502a1d424de31430927", + "x-ms-correlation-request-id": "8e339815-c5e7-4f83-b646-e54cbf65b61c", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "d91a1dae-67b5-4085-a106-c8d576f4fa0a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065250Z:8e339815-c5e7-4f83-b646-e54cbf65b61c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f165ac327d73ba8c0d56f3542be2d40f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6dfe9551-a417-4cd0-84b1-0f9703f1f074", + "x-ms-client-request-id": "f165ac327d73ba8c0d56f3542be2d40f", + "x-ms-correlation-request-id": "c8706781-0149-403e-b492-2b7c5a91687f", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "5388bd87-00c9-4b23-ac50-d9dcf1221ad6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065251Z:c8706781-0149-403e-b492-2b7c5a91687f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cb708b140af616530657e605777cf565", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "dd05f155-1fc7-4fc6-ab13-38b9cdadbaed", + "x-ms-client-request-id": "cb708b140af616530657e605777cf565", + "x-ms-correlation-request-id": "88567c5a-4b98-4d1b-9b5e-14ff3ac1cdab", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "369322ec-f69a-4416-b7f1-a490af3de8df", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065253Z:88567c5a-4b98-4d1b-9b5e-14ff3ac1cdab" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2e2cb1f9ac1744e9084a9214c8add9be", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d996b4f7-7db0-4fb5-a698-c5a3bbf2619c", + "x-ms-client-request-id": "2e2cb1f9ac1744e9084a9214c8add9be", + "x-ms-correlation-request-id": "60763450-41c5-4d74-826f-6396bacccbbe", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "43264ed0-3686-40fb-8ddc-7b3629ff59b7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065254Z:60763450-41c5-4d74-826f-6396bacccbbe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a6ca15003ed32830584feb1b97874391", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c1111ace-fa3b-4468-8c59-aae041acf08e", + "x-ms-client-request-id": "a6ca15003ed32830584feb1b97874391", + "x-ms-correlation-request-id": "5ca4f9f7-92ad-4912-9b90-b37b40dcfb1c", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "566d56f4-aa8a-4779-9ec3-f7cb67a666d1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065255Z:5ca4f9f7-92ad-4912-9b90-b37b40dcfb1c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7a5b8d60a6b667f7a22bc2ab783f4d58", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "d3389e4b-862e-43e3-90fb-17146c2070a5", + "x-ms-client-request-id": "7a5b8d60a6b667f7a22bc2ab783f4d58", + "x-ms-correlation-request-id": "3fb78537-7b09-49aa-88e6-950d23de73f3", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "f3dddb16-0f55-420c-a816-9d0c23dc26a5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065256Z:3fb78537-7b09-49aa-88e6-950d23de73f3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6104277e4fb2bb928104d5c8c1cdad81", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "26ce86b1-76bc-4c2a-9327-397a380e897d", + "x-ms-client-request-id": "6104277e4fb2bb928104d5c8c1cdad81", + "x-ms-correlation-request-id": "f82590b2-1aa0-4631-988b-b2d295d5630f", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "df0e5f0e-1120-4933-a139-684c8d12a939", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065258Z:f82590b2-1aa0-4631-988b-b2d295d5630f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3ab300075f525a081d6203a87c85af19", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "fe325021-8764-46fd-b4fb-8e22358d97e9", + "x-ms-client-request-id": "3ab300075f525a081d6203a87c85af19", + "x-ms-correlation-request-id": "0ecdd89f-0da9-432a-84b0-fb2fd24c6038", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "5099ba02-9a3c-416e-ac2c-c4212acdc3bf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065259Z:0ecdd89f-0da9-432a-84b0-fb2fd24c6038" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "709d9301e18311defb9ff9b2d02fa6d4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f69dc3be-72e0-4541-8c48-c9c1fa5dbd8a", + "x-ms-client-request-id": "709d9301e18311defb9ff9b2d02fa6d4", + "x-ms-correlation-request-id": "8fccf01c-d5fd-4e90-b89c-c59e6bb94e9b", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "6a1a5fd3-d6f7-4a8b-b4e4-3eb9b74327ac", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065301Z:8fccf01c-d5fd-4e90-b89c-c59e6bb94e9b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "77a4407d128c1e051eaa444f4bea3ffc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "431a9c80-f8dc-4322-9508-dfc975aa9f1b", + "x-ms-client-request-id": "77a4407d128c1e051eaa444f4bea3ffc", + "x-ms-correlation-request-id": "3892e89d-fb1b-4215-a48a-c36734c8cedd", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "4a8dadf2-232c-44d4-834b-cd5e5aecdae8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065302Z:3892e89d-fb1b-4215-a48a-c36734c8cedd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2ec6bb543c3025fe22a13fb2665689ee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:53: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": "94dcacec-1273-468f-88b0-5d9356fbc220", + "x-ms-client-request-id": "2ec6bb543c3025fe22a13fb2665689ee", + "x-ms-correlation-request-id": "b3474ba6-cbc4-4965-9d98-37c6ab4cb587", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "6135d7b7-7904-4c6d-8307-793bd6f02a77", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065303Z:b3474ba6-cbc4-4965-9d98-37c6ab4cb587" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3b2a2fbc38e0ef8d8d7e51d89d8fc511", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6eaf44ac-e801-41fc-b58d-31845391438a", + "x-ms-client-request-id": "3b2a2fbc38e0ef8d8d7e51d89d8fc511", + "x-ms-correlation-request-id": "6ba78753-2547-4e56-b4ff-352bfe83d08b", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "647e7c5a-97c5-4a2f-aec6-eb97d22bbac6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065305Z:6ba78753-2547-4e56-b4ff-352bfe83d08b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "155dfd60776841a4427f55ead252b8c7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "149dd055-b3f9-4ead-823c-8b9a22b01ce6", + "x-ms-client-request-id": "155dfd60776841a4427f55ead252b8c7", + "x-ms-correlation-request-id": "d7b6952c-7064-430f-9c1f-34e16e7a7759", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "e072ad4c-66b6-4cac-a248-8e8445daf461", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065306Z:d7b6952c-7064-430f-9c1f-34e16e7a7759" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1c92552003bf1c1b2ed7a0b1ea258792", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "f15b5686-0d8a-4977-92f2-2ea96ee2d0bc", + "x-ms-client-request-id": "1c92552003bf1c1b2ed7a0b1ea258792", + "x-ms-correlation-request-id": "82aa5803-53e5-4ee0-94ff-79cac2f2955e", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "6bee4a54-7157-4d68-9931-f834e9f42e0e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065307Z:82aa5803-53e5-4ee0-94ff-79cac2f2955e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "69522edc74f944868be9f860e2a31c3b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1e276279-297f-45ef-8d10-79bbe1ffeb1f", + "x-ms-client-request-id": "69522edc74f944868be9f860e2a31c3b", + "x-ms-correlation-request-id": "4edc3d85-1780-4164-8729-7b8ebc5e2b90", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "dea74341-5bb1-43ff-84bf-d644c3d95c75", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065308Z:4edc3d85-1780-4164-8729-7b8ebc5e2b90" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "48b889c6a9fc5c51e140e691d7f3561d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "69ca4a8a-83e0-4997-bbd6-cd73d09fb4d2", + "x-ms-client-request-id": "48b889c6a9fc5c51e140e691d7f3561d", + "x-ms-correlation-request-id": "7dc25c4d-e2de-41e0-8776-d5512a483b56", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "f0d429a6-71e6-4d1d-bce7-84a469b612d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065310Z:7dc25c4d-e2de-41e0-8776-d5512a483b56" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a40dc3f74f00accecf4e90d60bbb3a8b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ffb1b778-5150-4856-ac89-c0ffcd33c043", + "x-ms-client-request-id": "a40dc3f74f00accecf4e90d60bbb3a8b", + "x-ms-correlation-request-id": "1ae95603-d77b-4491-8444-520f72a68c0f", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "fd1a304a-f5cc-4240-890d-08e1d8789ef0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065311Z:1ae95603-d77b-4491-8444-520f72a68c0f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "61ea65bb3f6d3295ddf587b88df46d97", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ff80f3a3-f5f4-4859-b6c7-5eb46dc79a5f", + "x-ms-client-request-id": "61ea65bb3f6d3295ddf587b88df46d97", + "x-ms-correlation-request-id": "84d8bdb6-fab4-41c1-a06f-e3a2ee984f4c", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "40531ca0-ea93-4fc5-bf8b-9169e5f2f670", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065312Z:84d8bdb6-fab4-41c1-a06f-e3a2ee984f4c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1f69db937795773abb0b79ae187a5126", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "db4ea1c4-d25b-4c39-8c51-b2c1190139c9", + "x-ms-client-request-id": "1f69db937795773abb0b79ae187a5126", + "x-ms-correlation-request-id": "ba8e92c9-a5d7-466f-969c-7503560b4500", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "d9c4e746-0c0c-450d-a014-2e3b2b0e36d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065314Z:ba8e92c9-a5d7-466f-969c-7503560b4500" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a38bf6a9-c610-4c6c-9c56-e23f404cdf0e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "71d65b06f508b7b02ddbc70bc7161eda", + "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, 08 Sep 2021 06:53: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": "5fd984f0-9ea0-426a-b655-a02c43f91b5c", + "x-ms-client-request-id": "71d65b06f508b7b02ddbc70bc7161eda", + "x-ms-correlation-request-id": "fd934729-aa5f-4ce9-80a0-562f2e14617f", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "b40e57a4-1bae-41de-af5a-19c4bd1ce98e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065316Z:fd934729-aa5f-4ce9-80a0-562f2e14617f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-4635?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3043f9e11a5143f52a73a561c6e61963", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1535", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:53:16 GMT", + "ETag": "W/\u00229dd94259-3ce0-4b0c-9282-dd0e35220886\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": "35bca035-bcb4-4997-8015-c605a26420d5", + "x-ms-client-request-id": "3043f9e11a5143f52a73a561c6e61963", + "x-ms-correlation-request-id": "446a59bb-cf4d-4ff0-9632-ddc6bd615cd2", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "f76bac82-3cd0-4d1f-87d5-0b6c30bfbf78", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065316Z:446a59bb-cf4d-4ff0-9632-ddc6bd615cd2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022bastion-4635\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-4635\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00229dd94259-3ce0-4b0c-9282-dd0e35220886\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022dnsName\u0022: \u0022bst-3194a1af-6317-42f5-99e3-5fee059c82a1.bastion.azure.com\u0022,\r\n", + " \u0022scaleUnits\u0022: 2,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022bastionIPConfig-8926\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-4635/bastionHostIpConfigurations/bastionIPConfig-8926\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00229dd94259-3ce0-4b0c-9282-dd0e35220886\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts/bastionHostIpConfigurations\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/bastionrg-5755/providers/Microsoft.Network/publicIPAddresses/ip-7939\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166/subnets/AzureBastionSubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022bastionShareableLinks\u0022: {}\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-4635?api-version=2021-02-01", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "32b261a3fb1e9d8f2bb1f1b9b02fafa5", + "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/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 08 Sep 2021 06:53:17 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operationResults/54b2f354-6e28-4677-8454-70ee87b1d1ce?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": "d0e5dda4-a212-4d95-9104-48d0de894f6a", + "x-ms-client-request-id": "32b261a3fb1e9d8f2bb1f1b9b02fafa5", + "x-ms-correlation-request-id": "aeba49cd-dd86-42b8-b0c8-b918b920f07d", + "x-ms-ratelimit-remaining-subscription-deletes": "14999", + "x-ms-request-id": "54b2f354-6e28-4677-8454-70ee87b1d1ce", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065318Z:aeba49cd-dd86-42b8-b0c8-b918b920f07d" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "656764c2ec63e5bb69a5049f293c92fb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:53: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": "4cf93c35-d103-4288-aa21-53640dda130d", + "x-ms-client-request-id": "656764c2ec63e5bb69a5049f293c92fb", + "x-ms-correlation-request-id": "37065d36-b423-4d23-9a42-c74832f98258", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "4fa2d8ba-1838-4a8f-b6a9-0f96cb011a73", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065318Z:37065d36-b423-4d23-9a42-c74832f98258" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "287400c4f919812c8dc6cc8bb4fb4edc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:53: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": "14a09bf7-d476-44bd-8d6a-c661efdb4fbc", + "x-ms-client-request-id": "287400c4f919812c8dc6cc8bb4fb4edc", + "x-ms-correlation-request-id": "f6bc39ef-e25c-411e-a15a-da41e273f7ce", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "6f82169a-5a81-4323-8c45-94fcdb182eea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065319Z:f6bc39ef-e25c-411e-a15a-da41e273f7ce" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4cf6aac04ac70041e2e8b6901c34c229", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:53: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": "10f31bdf-7798-4e8a-b262-b16389e73622", + "x-ms-client-request-id": "4cf6aac04ac70041e2e8b6901c34c229", + "x-ms-correlation-request-id": "d1f6e1e0-96a4-4ff3-acca-589a02b782fb", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "d0c5d0f3-7703-4387-85c4-c322035bede0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065321Z:d1f6e1e0-96a4-4ff3-acca-589a02b782fb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4ed04b00c8d9c92d37e5d89c2030316e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:53:21 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": "2ebdfe57-f73d-45c0-86cd-440d4239f623", + "x-ms-client-request-id": "4ed04b00c8d9c92d37e5d89c2030316e", + "x-ms-correlation-request-id": "1841b025-8f7c-44c7-8fd9-9512d62754e5", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "da406b1e-db44-46c6-a97d-bba2cb7b32af", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065322Z:1841b025-8f7c-44c7-8fd9-9512d62754e5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7ede285746457933bf744531439c6558", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:53: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": "b7f8b619-d3eb-4ba7-bc1a-3394882c3489", + "x-ms-client-request-id": "7ede285746457933bf744531439c6558", + "x-ms-correlation-request-id": "fb1bcfa6-3650-4953-9d6b-9dd35f741668", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "5d5ad727-336e-4731-a44e-7134b714f9f7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065323Z:fb1bcfa6-3650-4953-9d6b-9dd35f741668" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "688ba204002af8037c2d15e271a4dfb2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:53: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": "9183e126-df90-4b05-9af1-f7fa1658500d", + "x-ms-client-request-id": "688ba204002af8037c2d15e271a4dfb2", + "x-ms-correlation-request-id": "6719b063-605c-45f1-9dd3-df21293baf0e", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "6b47b101-9de1-4b97-9cef-9751672988c7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065324Z:6719b063-605c-45f1-9dd3-df21293baf0e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f43947b64356b9e418568e6483fc859b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:53: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": "9c92919a-05a8-4332-ba22-dd6dc9de1c1c", + "x-ms-client-request-id": "f43947b64356b9e418568e6483fc859b", + "x-ms-correlation-request-id": "9ae5d236-d81d-4802-9a16-2c239cac433c", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "39a94fd7-6f68-4473-9425-91b7301c5ddd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065326Z:9ae5d236-d81d-4802-9a16-2c239cac433c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7d988080c8a4564324e601173151081a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:53: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": "bb925b0c-c416-4db8-a20a-7eed696a54ff", + "x-ms-client-request-id": "7d988080c8a4564324e601173151081a", + "x-ms-correlation-request-id": "0ca8876e-77b3-40cb-a591-6da9e630488a", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "a04472ad-8b7f-416b-b1d9-a6f8a6c98ff8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065327Z:0ca8876e-77b3-40cb-a591-6da9e630488a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fb7a92947062c002bed150d4719e7480", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:53: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": "74a9025d-6096-401a-a116-7fc337a2aabd", + "x-ms-client-request-id": "fb7a92947062c002bed150d4719e7480", + "x-ms-correlation-request-id": "b6e0a516-5e69-4378-8f41-b6f1246cac5a", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "5d23ad09-24ed-4fd2-a47d-cb7ee896b7e2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065328Z:b6e0a516-5e69-4378-8f41-b6f1246cac5a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f16179a7620cee0e03e2d06f42cc88c6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "19ab18ea-8818-4ccf-bccf-05a9744a895b", + "x-ms-client-request-id": "f16179a7620cee0e03e2d06f42cc88c6", + "x-ms-correlation-request-id": "1657d0f5-9f85-4585-8742-3fee431a6970", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "b4f348d5-871f-4b84-9240-268ec84032f5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065330Z:1657d0f5-9f85-4585-8742-3fee431a6970" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f0cf744e8a820f387dd7bed2786fe585", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "160031f3-ed0a-47c0-82b6-8990d92b9ffe", + "x-ms-client-request-id": "f0cf744e8a820f387dd7bed2786fe585", + "x-ms-correlation-request-id": "f12d81c8-7da9-446a-b73d-dec8f50eb90a", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "e3ba5990-3a3c-473f-8b89-bfb7a603e704", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065331Z:f12d81c8-7da9-446a-b73d-dec8f50eb90a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b76f817116ef320e848cf780a0927ef1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f839e80a-3285-4181-83f2-b60bf358ad40", + "x-ms-client-request-id": "b76f817116ef320e848cf780a0927ef1", + "x-ms-correlation-request-id": "656a1950-f2b5-4396-aae3-4aa2a039182e", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "c3cb5658-c900-4a5c-8e1d-fbb1b238e039", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065332Z:656a1950-f2b5-4396-aae3-4aa2a039182e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fd85894984cf1dfd40517334a33c7594", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "c8eab085-bf32-45cf-9f55-11d53d8c5f8c", + "x-ms-client-request-id": "fd85894984cf1dfd40517334a33c7594", + "x-ms-correlation-request-id": "1e894bee-6a3f-4bff-916f-9d7bac898eec", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "af843220-c09f-4e95-bc0c-03166288c75f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065333Z:1e894bee-6a3f-4bff-916f-9d7bac898eec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c1fd4afdd15d38d7659d6cf692b86feb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "39923ae5-3789-4e60-b156-cc450bbac83c", + "x-ms-client-request-id": "c1fd4afdd15d38d7659d6cf692b86feb", + "x-ms-correlation-request-id": "edeb935b-246e-4a47-a025-92b32ab3f651", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "3672d53d-8d1a-4a92-a7e3-6972faabca80", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065335Z:edeb935b-246e-4a47-a025-92b32ab3f651" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ee88cd59e7e9edb68352769da2da8e48", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ebe83b88-bab8-4a3f-b562-c92e129458c4", + "x-ms-client-request-id": "ee88cd59e7e9edb68352769da2da8e48", + "x-ms-correlation-request-id": "2ab80774-2413-4397-966f-f8b0ce1346d9", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "701a12d3-19ce-4202-b8f2-c2fdae6112e6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065336Z:2ab80774-2413-4397-966f-f8b0ce1346d9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "56826216bd947894b24d983118068a88", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "11bbe263-ae3d-4a78-bc12-3c2fb8a2cad2", + "x-ms-client-request-id": "56826216bd947894b24d983118068a88", + "x-ms-correlation-request-id": "f29de045-8803-4702-a825-d597428c6d2b", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "252361e4-bb08-4f52-b483-91413d1fa53e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065337Z:f29de045-8803-4702-a825-d597428c6d2b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d6db88e287b315ab93103d0a5a39958b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:53: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": "144b9487-a981-4de4-9d69-0a224d6b82d6", + "x-ms-client-request-id": "d6db88e287b315ab93103d0a5a39958b", + "x-ms-correlation-request-id": "d870f9bd-83c2-4010-9a35-896dabcd7545", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "632af441-1ae4-4b28-b3a5-e0f6793fde06", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065339Z:d870f9bd-83c2-4010-9a35-896dabcd7545" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2fe0240e18359b5638103c9b4f85d57c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0f07f575-d196-49db-a7dd-b4dabd1f5740", + "x-ms-client-request-id": "2fe0240e18359b5638103c9b4f85d57c", + "x-ms-correlation-request-id": "f2b128f9-1040-4549-a144-c8b9e2e17bdf", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "9a4a95f1-313f-4618-95fc-6f0621422c15", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065340Z:f2b128f9-1040-4549-a144-c8b9e2e17bdf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1abbeec7b8fe8f94b76dc38480891d79", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8621178e-7ab2-4401-a758-33c8b2e29365", + "x-ms-client-request-id": "1abbeec7b8fe8f94b76dc38480891d79", + "x-ms-correlation-request-id": "49c2a0a7-e860-458c-94d5-b69c07a46d2b", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "d1d958b2-a298-490e-bab1-0c1c7b8af649", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065341Z:49c2a0a7-e860-458c-94d5-b69c07a46d2b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f3230cb85a26c952313f9da24a0fc50e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "7ccd8bb2-479b-4049-bfc3-01c522d8bac5", + "x-ms-client-request-id": "f3230cb85a26c952313f9da24a0fc50e", + "x-ms-correlation-request-id": "99ebedd5-5659-4476-88e1-a8a92c90bf22", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "24b906f4-7d27-4814-b12f-d20d51c568a8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065343Z:99ebedd5-5659-4476-88e1-a8a92c90bf22" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6c42c03b7b7d558c8f5178c855d21baf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e7942edc-4aa7-42ff-8fb6-820977a97c52", + "x-ms-client-request-id": "6c42c03b7b7d558c8f5178c855d21baf", + "x-ms-correlation-request-id": "480d0d95-5b57-4fff-a847-acb7929c7e22", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "bd7dbf38-4056-480f-ab6a-a4664c2737ba", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065344Z:480d0d95-5b57-4fff-a847-acb7929c7e22" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "42e3c3f3e1616d569cf1e8be1bf244a8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "adf491e2-4cef-4f43-be15-41ccc60f92d1", + "x-ms-client-request-id": "42e3c3f3e1616d569cf1e8be1bf244a8", + "x-ms-correlation-request-id": "a4eba304-4e09-425d-a0a9-fcfbf41ec9dd", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "772491c3-8ff6-42f8-a7a4-7f0adf754de8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065345Z:a4eba304-4e09-425d-a0a9-fcfbf41ec9dd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bf49b5a7b1463cfb80cd64d5e289745f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c3001423-efe8-4118-a07a-d48a59cc0f0e", + "x-ms-client-request-id": "bf49b5a7b1463cfb80cd64d5e289745f", + "x-ms-correlation-request-id": "e5e93395-a96d-4528-8ea6-b17b9f54ee08", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "a46e46e8-38db-4154-9f09-15334874cd20", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065347Z:e5e93395-a96d-4528-8ea6-b17b9f54ee08" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "87afee23822b59ac6ad5cf8c93cd3a9c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "a8d216ec-905c-4525-8d1b-2dd0a584cd53", + "x-ms-client-request-id": "87afee23822b59ac6ad5cf8c93cd3a9c", + "x-ms-correlation-request-id": "388fbb6d-536e-448a-a249-fe4677ffbd1d", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "abfb9ba8-e6b1-4057-834e-8740d2520462", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065348Z:388fbb6d-536e-448a-a249-fe4677ffbd1d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a020cf0c5c894168c7a7c2947c808b12", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f59d19dc-bef7-4903-bf35-4fd435598138", + "x-ms-client-request-id": "a020cf0c5c894168c7a7c2947c808b12", + "x-ms-correlation-request-id": "571c7612-0aa5-4af5-9824-3bb8c2bebe82", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "bd41def7-b999-4c6f-98ef-7c3eeaeda9a0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065349Z:571c7612-0aa5-4af5-9824-3bb8c2bebe82" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2d9b897dbc43257c08ef5571e16fa8b2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "29031c69-0eed-4a3b-90f3-c98371ffa993", + "x-ms-client-request-id": "2d9b897dbc43257c08ef5571e16fa8b2", + "x-ms-correlation-request-id": "84fe6899-7e4e-4801-906e-91254423e0fe", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "92372451-a29a-4afe-84ba-7b69780c3630", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065351Z:84fe6899-7e4e-4801-906e-91254423e0fe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "12c8c892d368c7d5856ebf84bf17dde9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "05ddd53c-4c0d-4711-9873-87e16c2f85be", + "x-ms-client-request-id": "12c8c892d368c7d5856ebf84bf17dde9", + "x-ms-correlation-request-id": "24a676bd-6735-4da8-9fe9-1597589c814d", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "cc3eceb5-3d66-4e45-86c1-3a8b4ee4d200", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065352Z:24a676bd-6735-4da8-9fe9-1597589c814d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0a0ebd4a0d32505953fb979a06f75f58", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b542841a-9108-4992-88ea-356bd27e2ec4", + "x-ms-client-request-id": "0a0ebd4a0d32505953fb979a06f75f58", + "x-ms-correlation-request-id": "c57cd691-68b2-4811-9e0c-6814d73855d5", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "2079eb1d-33df-4de8-a8ac-13ec99b1a83f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065353Z:c57cd691-68b2-4811-9e0c-6814d73855d5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b40110fe78b8aaaab3d3a7d5fdf765f1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5b5eb55b-2804-4d48-94c4-390af3c58bed", + "x-ms-client-request-id": "b40110fe78b8aaaab3d3a7d5fdf765f1", + "x-ms-correlation-request-id": "ef6d4f5e-16dd-49e7-a62f-850a37a58351", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "ef3cb4f0-a5ea-4f69-9488-7f459b10d840", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065355Z:ef6d4f5e-16dd-49e7-a62f-850a37a58351" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "24276b129e60857f6e78bf6c3b3bc08e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c1f91625-82c5-4323-9e23-b0939214ead8", + "x-ms-client-request-id": "24276b129e60857f6e78bf6c3b3bc08e", + "x-ms-correlation-request-id": "9b13e546-ab81-464a-bb63-c4f1896aaa0b", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-request-id": "dc4c2809-0582-444c-a7cf-415d767238f3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065356Z:9b13e546-ab81-464a-bb63-c4f1896aaa0b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "af86660e2815d1311264565e6584535b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "78e02b3f-823f-4050-8dcf-956a0133a25b", + "x-ms-client-request-id": "af86660e2815d1311264565e6584535b", + "x-ms-correlation-request-id": "024b4dd6-3b26-4163-8fc9-0682705724f2", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "e8ed2227-48c8-4cab-a4c1-f6ee2809f4be", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065357Z:024b4dd6-3b26-4163-8fc9-0682705724f2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9a88a6963acf5ff8907c453fb93d6e78", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "bab55509-e0f5-4e68-852f-5aec0ccf0b15", + "x-ms-client-request-id": "9a88a6963acf5ff8907c453fb93d6e78", + "x-ms-correlation-request-id": "b60bfe48-6af5-431a-9b38-23ebc6467d90", + "x-ms-ratelimit-remaining-subscription-reads": "11788", + "x-ms-request-id": "bfdb5bed-4e44-481a-8cad-4c806d3f36aa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065358Z:b60bfe48-6af5-431a-9b38-23ebc6467d90" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "96c61812b671e9db3a5511fc48201fea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f1f440cb-299e-4670-a095-5ac044b5b817", + "x-ms-client-request-id": "96c61812b671e9db3a5511fc48201fea", + "x-ms-correlation-request-id": "65c991c2-e3a7-47ff-b0b0-3a31940f4ba0", + "x-ms-ratelimit-remaining-subscription-reads": "11787", + "x-ms-request-id": "cee70b92-f5ce-49b7-a741-d4116dcb9e10", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065400Z:65c991c2-e3a7-47ff-b0b0-3a31940f4ba0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "95d6632526b3d3be6e261e99e2f117d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "90ff2ca1-27a6-4e30-9c39-94e62bd555d4", + "x-ms-client-request-id": "95d6632526b3d3be6e261e99e2f117d5", + "x-ms-correlation-request-id": "6e5bac8a-7823-47c1-b034-dccaad5f4dc4", + "x-ms-ratelimit-remaining-subscription-reads": "11786", + "x-ms-request-id": "b62e59b0-bf68-4f7e-8cff-c94703c02dc5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065401Z:6e5bac8a-7823-47c1-b034-dccaad5f4dc4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4d4cddf5bcbde0e9cb9e5f7a28fc1670", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7984663f-38d1-44e4-b12c-9ea0f3e691a3", + "x-ms-client-request-id": "4d4cddf5bcbde0e9cb9e5f7a28fc1670", + "x-ms-correlation-request-id": "cfa4cb31-4f0a-400c-a55e-9461f6f2e7de", + "x-ms-ratelimit-remaining-subscription-reads": "11785", + "x-ms-request-id": "786c9502-ce95-4157-8164-b81f94404f32", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065402Z:cfa4cb31-4f0a-400c-a55e-9461f6f2e7de" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "551a5b5cd967ecc559f2274a97410749", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "83d1bb9e-25d1-4ff8-904b-06fbf2c178a3", + "x-ms-client-request-id": "551a5b5cd967ecc559f2274a97410749", + "x-ms-correlation-request-id": "8ec1b5d9-f5d3-4675-b13c-b9bce9aa6655", + "x-ms-ratelimit-remaining-subscription-reads": "11784", + "x-ms-request-id": "8b71e5f0-3fa3-4cdd-9560-68d0235ea59b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065404Z:8ec1b5d9-f5d3-4675-b13c-b9bce9aa6655" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6b063c3dd2d4682c79f5ca14c644aa72", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "254bbeea-2bf1-477c-8f28-c56740c772e9", + "x-ms-client-request-id": "6b063c3dd2d4682c79f5ca14c644aa72", + "x-ms-correlation-request-id": "4fcbe67c-1a10-445e-842b-0c55a2df6bd7", + "x-ms-ratelimit-remaining-subscription-reads": "11783", + "x-ms-request-id": "f0636167-25fd-46dd-ac83-fc2aa227f956", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065405Z:4fcbe67c-1a10-445e-842b-0c55a2df6bd7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "863cad0fc1d61c6e175ff3ca959e4889", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "ba269601-659d-4354-9c35-ebb6f8e3fe04", + "x-ms-client-request-id": "863cad0fc1d61c6e175ff3ca959e4889", + "x-ms-correlation-request-id": "c17b1c4f-7f13-4b36-81eb-1ba1f3e6054e", + "x-ms-ratelimit-remaining-subscription-reads": "11782", + "x-ms-request-id": "45ea8837-a8c1-4b64-8416-9343822c4513", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065406Z:c17b1c4f-7f13-4b36-81eb-1ba1f3e6054e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ec3c1697abf58a9b2fb2dc710fb02615", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ecec3672-a6e3-4373-b559-a1cfa04b358c", + "x-ms-client-request-id": "ec3c1697abf58a9b2fb2dc710fb02615", + "x-ms-correlation-request-id": "15a74f9a-cf91-4b6f-9008-06f0629ca9bf", + "x-ms-ratelimit-remaining-subscription-reads": "11781", + "x-ms-request-id": "dde9a254-a347-4106-8135-f41fa13e4cec", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065408Z:15a74f9a-cf91-4b6f-9008-06f0629ca9bf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e93bb54780047b72cdea5375de61d3da", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a25f4c77-9051-4448-b6da-7dc749575064", + "x-ms-client-request-id": "e93bb54780047b72cdea5375de61d3da", + "x-ms-correlation-request-id": "8ac383bb-eba3-4ed0-8394-5e9c020f6ffa", + "x-ms-ratelimit-remaining-subscription-reads": "11780", + "x-ms-request-id": "c35b51e8-ecfc-4885-9947-48e402660c84", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065409Z:8ac383bb-eba3-4ed0-8394-5e9c020f6ffa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "af7d40acbe08647c12b25724e5fc0c66", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "41eb7c3b-09ad-44d0-8c29-60722ba5c3f2", + "x-ms-client-request-id": "af7d40acbe08647c12b25724e5fc0c66", + "x-ms-correlation-request-id": "b793f1dd-25a4-488a-8dfc-33c888158f08", + "x-ms-ratelimit-remaining-subscription-reads": "11779", + "x-ms-request-id": "ad30579c-1bb1-4afd-acde-5984f280b8e6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065411Z:b793f1dd-25a4-488a-8dfc-33c888158f08" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "df82de385f631684a3c01e0b5726abce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f7aac504-2d95-4f77-b6ac-875e50d2674c", + "x-ms-client-request-id": "df82de385f631684a3c01e0b5726abce", + "x-ms-correlation-request-id": "34759b79-a7e5-4b4b-95a5-f420cddad84f", + "x-ms-ratelimit-remaining-subscription-reads": "11778", + "x-ms-request-id": "5c67dbcc-bd3a-4332-a135-07526bd2f5fc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065412Z:34759b79-a7e5-4b4b-95a5-f420cddad84f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cec501df7633890c38d6d752284e96d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0bb678c7-0662-4878-8655-7b0857a105f6", + "x-ms-client-request-id": "cec501df7633890c38d6d752284e96d1", + "x-ms-correlation-request-id": "9e15d8a4-4591-4525-99d4-8876ab7dddfa", + "x-ms-ratelimit-remaining-subscription-reads": "11777", + "x-ms-request-id": "58cbddbe-0fd6-488e-8483-78c24fae0d91", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065413Z:9e15d8a4-4591-4525-99d4-8876ab7dddfa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "003cecddf3de4d77bc660c489f710cec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:54: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": "858ba095-5f27-44d6-a104-6542745415c5", + "x-ms-client-request-id": "003cecddf3de4d77bc660c489f710cec", + "x-ms-correlation-request-id": "346aeded-d0d4-43ca-9001-a4209a240bb6", + "x-ms-ratelimit-remaining-subscription-reads": "11776", + "x-ms-request-id": "9cb7ee0c-9725-4fc3-a59c-2959c3e9f07f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065414Z:346aeded-d0d4-43ca-9001-a4209a240bb6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e44589063d36c233d1f9a68d8731ee54", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "95fbae7c-21b5-4d1b-8064-2dfebb263ef8", + "x-ms-client-request-id": "e44589063d36c233d1f9a68d8731ee54", + "x-ms-correlation-request-id": "02b96acb-a0e0-41dc-82e0-0cbb6a607fda", + "x-ms-ratelimit-remaining-subscription-reads": "11775", + "x-ms-request-id": "a656b47e-e0c1-4c01-9aca-76eab73d6e40", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065416Z:02b96acb-a0e0-41dc-82e0-0cbb6a607fda" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6b2d4d2aaae9ebef8a7812cc6ac4eac7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d6e59c66-8c30-482f-9a15-b3152ea843d8", + "x-ms-client-request-id": "6b2d4d2aaae9ebef8a7812cc6ac4eac7", + "x-ms-correlation-request-id": "769f0e88-5879-41f6-a856-d1b3fe7e1bd4", + "x-ms-ratelimit-remaining-subscription-reads": "11774", + "x-ms-request-id": "9cd129e8-4e18-4dc5-b76e-7dc4ff32555f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065417Z:769f0e88-5879-41f6-a856-d1b3fe7e1bd4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9f4cebcab1099f9ab8792fe54ce9c58a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "99e0e8fc-1789-4d85-a02e-f79049ecbe00", + "x-ms-client-request-id": "9f4cebcab1099f9ab8792fe54ce9c58a", + "x-ms-correlation-request-id": "169f7bee-ecb3-43f3-89e2-bb08435047e3", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "05f7da82-84a2-459b-b581-d10f01f130a6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065419Z:169f7bee-ecb3-43f3-89e2-bb08435047e3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "521eb778a0435b0299595abe2b67570c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "d942d49f-9290-481a-8982-9d42bcb7a344", + "x-ms-client-request-id": "521eb778a0435b0299595abe2b67570c", + "x-ms-correlation-request-id": "eb8528b6-70cd-4ca2-a50e-a56551bf2139", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "05f25935-f3e0-4011-ae95-1bc186d25e90", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065420Z:eb8528b6-70cd-4ca2-a50e-a56551bf2139" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9cc2df0f4fe5784bb28eb26f7b0a9fa0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "27a1614e-6415-4113-ae58-0729f9c84890", + "x-ms-client-request-id": "9cc2df0f4fe5784bb28eb26f7b0a9fa0", + "x-ms-correlation-request-id": "7e2df91a-178a-499d-a8b5-16dc2f84d7f5", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "2802cbfa-628b-41b3-8b8f-0710b7d8667b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065421Z:7e2df91a-178a-499d-a8b5-16dc2f84d7f5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b25387b297a62984e8f005b057dc7450", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0cf94022-2411-4615-95ea-e5978c072a52", + "x-ms-client-request-id": "b25387b297a62984e8f005b057dc7450", + "x-ms-correlation-request-id": "3d2bd33c-d784-4b34-afdf-ff206f0c24d4", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "2718a2ab-c711-4b77-8f51-bed70ba19e3a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065423Z:3d2bd33c-d784-4b34-afdf-ff206f0c24d4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6dd62222292629a56ca5a0b4ee92df8e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2686a2d3-5b49-4304-8792-ee2d48bfbf97", + "x-ms-client-request-id": "6dd62222292629a56ca5a0b4ee92df8e", + "x-ms-correlation-request-id": "d462d561-f86d-4551-946e-743d9f742fa2", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "17692c3d-5c69-4e97-bf9e-b51ae580799c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065424Z:d462d561-f86d-4551-946e-743d9f742fa2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a30cbabaa51377665b99b3f4499b21d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6fa34cf1-9242-4646-908e-8e9d0b9654b7", + "x-ms-client-request-id": "a30cbabaa51377665b99b3f4499b21d5", + "x-ms-correlation-request-id": "d28a2f61-c421-4165-8d8c-17cdfbbfcf36", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "b65c9b57-ac9a-446f-beab-ecb499eeca79", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065426Z:d28a2f61-c421-4165-8d8c-17cdfbbfcf36" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "584d621a31348979e22a4601f7cf3b56", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "27991945-64f2-465f-8a2c-02ef9c886632", + "x-ms-client-request-id": "584d621a31348979e22a4601f7cf3b56", + "x-ms-correlation-request-id": "801f5eb0-4a33-45d5-9a18-57e758347a9b", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "5a4d91fd-55fa-493a-a1c5-3cf8a6250ae7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065427Z:801f5eb0-4a33-45d5-9a18-57e758347a9b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9cf57610d0d07c3cbc5e118d75b0dfd1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3d805ed5-6c52-431b-b0c1-70d356e1d7a2", + "x-ms-client-request-id": "9cf57610d0d07c3cbc5e118d75b0dfd1", + "x-ms-correlation-request-id": "7881d0f7-bf8c-41c0-833f-d33612a05ef4", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "0406111e-8fe9-4ca8-95c7-8c7e3c48ca25", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065428Z:7881d0f7-bf8c-41c0-833f-d33612a05ef4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8c9aca848744885a4083c0e95e647f8c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8713994d-c2de-498d-8f39-87bb7778646c", + "x-ms-client-request-id": "8c9aca848744885a4083c0e95e647f8c", + "x-ms-correlation-request-id": "43ff2f25-f552-4c66-bd16-433b2595efd1", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "98779646-9d97-48be-b850-b4811d685f77", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065429Z:43ff2f25-f552-4c66-bd16-433b2595efd1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d3e35d5e84a5490525d09bd520ec1332", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9e2ce1b5-4635-4ec8-9965-4dabe7a3fce1", + "x-ms-client-request-id": "d3e35d5e84a5490525d09bd520ec1332", + "x-ms-correlation-request-id": "54b469d1-02d0-40ec-89c0-c28f6f61c2d4", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "218073b2-b5c8-48e9-bab6-4ac1b81197fd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065431Z:54b469d1-02d0-40ec-89c0-c28f6f61c2d4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2d7d754aaf3489111c6d5c4d0f531e57", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "48aac0b6-7d88-4888-a056-bd2710292b01", + "x-ms-client-request-id": "2d7d754aaf3489111c6d5c4d0f531e57", + "x-ms-correlation-request-id": "7821ceb0-359a-4d05-840a-c82633b9a97f", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "c1bcf6ac-9d33-4c39-b4bd-2003ac19d20c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065432Z:7821ceb0-359a-4d05-840a-c82633b9a97f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "182e85df0cccff2bc4506673eb846854", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3e202b93-a007-4a91-902e-f40ff0f133cc", + "x-ms-client-request-id": "182e85df0cccff2bc4506673eb846854", + "x-ms-correlation-request-id": "ca2a7203-0f66-4451-b6f8-63da196ea0c2", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "db251eb7-4c6f-403a-8824-2344bbe74887", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065434Z:ca2a7203-0f66-4451-b6f8-63da196ea0c2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e89e8e6f52e7af574b5ab63728b839d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6f3a090d-fc04-4c03-a7ed-4c79db918e96", + "x-ms-client-request-id": "e89e8e6f52e7af574b5ab63728b839d1", + "x-ms-correlation-request-id": "19fb2f43-ff13-4b07-983b-1fd2fc2f05d7", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "fd42ce1d-520b-41c4-8a2a-ac28e5095c9b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065435Z:19fb2f43-ff13-4b07-983b-1fd2fc2f05d7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9af644b2fabd3e654a7d68e3489e9e97", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5f42550d-fe20-45fb-8c9f-314bd0683ff9", + "x-ms-client-request-id": "9af644b2fabd3e654a7d68e3489e9e97", + "x-ms-correlation-request-id": "b834c0f4-3ed3-4f40-b6fe-9f205658538e", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "98cf39c0-1674-4116-8a44-dfeeff4cedf9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065436Z:b834c0f4-3ed3-4f40-b6fe-9f205658538e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "81dd070536b48c6f2e7fcd7255f3d60b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c6646f95-5954-4cb5-8728-9d5e7edd296d", + "x-ms-client-request-id": "81dd070536b48c6f2e7fcd7255f3d60b", + "x-ms-correlation-request-id": "06bc43ec-c419-43e6-9758-a57f7acb6281", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "62966e5a-ba2d-40b5-adaf-b8ed106de1ac", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065438Z:06bc43ec-c419-43e6-9758-a57f7acb6281" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a7c19516cd8d749729609e6ae97367ad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7ef5b462-8128-4460-abed-c10c5c66d57e", + "x-ms-client-request-id": "a7c19516cd8d749729609e6ae97367ad", + "x-ms-correlation-request-id": "e3511996-06bf-47f0-abb4-72b9afe04488", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "1e5d56ba-56a4-4433-bc5c-d4cbfad10ad1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065439Z:e3511996-06bf-47f0-abb4-72b9afe04488" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "20321fbcb8db7b1cd46a6c3e2df2e856", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "8eb3614e-38b2-4400-9676-4f2b57c91b41", + "x-ms-client-request-id": "20321fbcb8db7b1cd46a6c3e2df2e856", + "x-ms-correlation-request-id": "adb1de4d-4e0d-4493-ab89-eda38b631aac", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "afbf4d74-e0c8-42db-93aa-e9ad2ec287b4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065440Z:adb1de4d-4e0d-4493-ab89-eda38b631aac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b2cc5ca6f7dc3709706857549705a2ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c03abae4-93a9-4d1e-832a-769cf487e2c6", + "x-ms-client-request-id": "b2cc5ca6f7dc3709706857549705a2ba", + "x-ms-correlation-request-id": "73b072ab-3489-438b-aca6-4e8588b48a13", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "65b87884-d0d7-4798-b40b-5edac5d196ef", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065441Z:73b072ab-3489-438b-aca6-4e8588b48a13" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "36b61f18b6c15e307845d22361584736", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5dfe2e66-8870-4d6c-94cc-05f30566fd2a", + "x-ms-client-request-id": "36b61f18b6c15e307845d22361584736", + "x-ms-correlation-request-id": "a70b687b-f5a2-48f2-9462-99013e926579", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "abfa7eb4-119e-49f6-825e-55929287a3c2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065443Z:a70b687b-f5a2-48f2-9462-99013e926579" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8dc34877b4a7c4d015fab07360c7e4ce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7ddffc77-9c18-4cae-9347-f763edb4f28f", + "x-ms-client-request-id": "8dc34877b4a7c4d015fab07360c7e4ce", + "x-ms-correlation-request-id": "7ae01587-a1e3-4a4d-83c5-35b9890bc0aa", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "f283bdbd-81b5-4b4d-ba88-55a4715386ce", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065444Z:7ae01587-a1e3-4a4d-83c5-35b9890bc0aa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0d26b2c7b23cf0952c6e3a9624e5d617", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "fad6168c-9868-4261-829f-d2c71d31f06d", + "x-ms-client-request-id": "0d26b2c7b23cf0952c6e3a9624e5d617", + "x-ms-correlation-request-id": "faefb2ef-9700-4f68-8c8d-6e8500250592", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "c2e5af9e-d05a-4f58-b181-e333d15fa92b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065445Z:faefb2ef-9700-4f68-8c8d-6e8500250592" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4fdd2121154263134ff120c605bdfdb0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d4202b19-c8ca-470a-b4af-5f73c1136855", + "x-ms-client-request-id": "4fdd2121154263134ff120c605bdfdb0", + "x-ms-correlation-request-id": "d472b187-d5f9-4fe3-9780-eb74cb1314cb", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "22277a5c-3d85-43e7-8038-6b5b574fda5f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065447Z:d472b187-d5f9-4fe3-9780-eb74cb1314cb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "af5c04613932c5f9b3d260387939a02f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "06bc0e42-4aef-4523-979d-12430936fc9d", + "x-ms-client-request-id": "af5c04613932c5f9b3d260387939a02f", + "x-ms-correlation-request-id": "1bedb09b-3672-49f2-80fb-e9ad4e1b8ea2", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "006e7b91-5040-43e0-826e-887886222f9b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065448Z:1bedb09b-3672-49f2-80fb-e9ad4e1b8ea2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3f52982494eab18b9ec2be4b91ceeb6f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "bc70cba3-a64b-421d-9cbb-2c591449a5e2", + "x-ms-client-request-id": "3f52982494eab18b9ec2be4b91ceeb6f", + "x-ms-correlation-request-id": "8e2cb715-2769-4510-9fd0-9d77d38b8d7c", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "eb347f5b-7860-4831-acf6-fc25d9344d48", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065449Z:8e2cb715-2769-4510-9fd0-9d77d38b8d7c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1f3589712789e7e427189c6fb4daea15", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "b9525b48-19e2-437d-990d-6c0ce48faf90", + "x-ms-client-request-id": "1f3589712789e7e427189c6fb4daea15", + "x-ms-correlation-request-id": "e4a1084f-f2a8-4338-a83b-5d864ad3da08", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "094cf6db-5487-4991-91d0-906957cd43d8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065450Z:e4a1084f-f2a8-4338-a83b-5d864ad3da08" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6ca1f050bd6accc578aa10707aae33e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "46713c90-b386-4d69-a618-ec1dc7721a8d", + "x-ms-client-request-id": "6ca1f050bd6accc578aa10707aae33e4", + "x-ms-correlation-request-id": "b3183f06-2389-4f27-b223-e99bf6fd402e", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "67a2f753-16f6-4a0e-9c87-ba7867cafe67", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065452Z:b3183f06-2389-4f27-b223-e99bf6fd402e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f0c6f1e78104fda6b46a18d2f81bfcc4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1c11b402-769d-48a4-819e-f1de4542c8be", + "x-ms-client-request-id": "f0c6f1e78104fda6b46a18d2f81bfcc4", + "x-ms-correlation-request-id": "869b4768-78e4-4097-b089-72cf1f0b39e9", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "61004665-3b48-4ca0-a280-d8ed95cb1833", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065453Z:869b4768-78e4-4097-b089-72cf1f0b39e9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a1faa8d77e2db404c368a6de17736c78", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "540b51b3-3f59-427e-8f64-48c39328a3ed", + "x-ms-client-request-id": "a1faa8d77e2db404c368a6de17736c78", + "x-ms-correlation-request-id": "8bdbb31a-d656-421e-8624-5a7ea11758f7", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "14a9f0af-b50a-4fef-b768-6ad1e73b33d5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065455Z:8bdbb31a-d656-421e-8624-5a7ea11758f7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c388b7e4f914cf114aa4b800a5f3d45c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "676aced5-5cb6-4fda-8b58-4fe26f8ade6b", + "x-ms-client-request-id": "c388b7e4f914cf114aa4b800a5f3d45c", + "x-ms-correlation-request-id": "341cb080-35dd-4c68-890e-dfe8598b2a2f", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "5ffc5ea4-0180-40fc-9fde-08a27ab17b4c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065456Z:341cb080-35dd-4c68-890e-dfe8598b2a2f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d2984cad92b469b7ec122c9bdac7e640", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "51738eea-2ac2-4ac2-81dc-7b2363cd6d8c", + "x-ms-client-request-id": "d2984cad92b469b7ec122c9bdac7e640", + "x-ms-correlation-request-id": "fffc0447-a6ba-4722-a343-cbe41776e456", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "046bd598-cc6d-4911-9dc6-4d16615c38b7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065457Z:fffc0447-a6ba-4722-a343-cbe41776e456" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "40ee9ffd3893deaf972a5788c5040ed0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4cab18ee-6db8-4528-84df-bdf7969a93cc", + "x-ms-client-request-id": "40ee9ffd3893deaf972a5788c5040ed0", + "x-ms-correlation-request-id": "a9c8e750-9d6c-45c3-a1ac-1534978b0795", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "0c6281f2-5d72-4750-ab7e-9c430ebc3238", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065458Z:a9c8e750-9d6c-45c3-a1ac-1534978b0795" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ca3049949adb52c4001fd701cd75f582", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "864e4bef-a450-4c58-94bf-2e63b5045906", + "x-ms-client-request-id": "ca3049949adb52c4001fd701cd75f582", + "x-ms-correlation-request-id": "8f8b51b9-1e7c-4409-ad88-f20597390191", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "0f85565f-2c36-4206-99d3-726efac8d6fd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065500Z:8f8b51b9-1e7c-4409-ad88-f20597390191" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "060278be930474c99cba3a893b2ea3e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "03e848c2-12d5-4afa-8812-b2fdade4156b", + "x-ms-client-request-id": "060278be930474c99cba3a893b2ea3e7", + "x-ms-correlation-request-id": "876f741b-d6dc-4180-9ef4-b960cbae6452", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "e093957e-418d-4835-b326-c1760542cd00", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065502Z:876f741b-d6dc-4180-9ef4-b960cbae6452" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "90075b041b976364da9b407461ae1021", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0788114e-57c6-472b-9545-125374100abd", + "x-ms-client-request-id": "90075b041b976364da9b407461ae1021", + "x-ms-correlation-request-id": "27a862a4-067e-49f2-8d27-dcfd6d5646d8", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "db2e3a3e-83d2-4cda-bafc-3f64a6e5a7a5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065503Z:27a862a4-067e-49f2-8d27-dcfd6d5646d8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4dcad435080200cb80bc2e20603b17d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "38068b4d-95ed-4184-9b53-a97c47edcd20", + "x-ms-client-request-id": "4dcad435080200cb80bc2e20603b17d1", + "x-ms-correlation-request-id": "315b73ff-edde-48fc-958d-62b9cfbfe7d7", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "d8af05f0-3897-477f-b8c1-dc630b788b76", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065504Z:315b73ff-edde-48fc-958d-62b9cfbfe7d7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "72fdef7b656ea2eb139e2b69535413ed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "502222a8-a583-4fc9-b709-d2acf5ee4098", + "x-ms-client-request-id": "72fdef7b656ea2eb139e2b69535413ed", + "x-ms-correlation-request-id": "3d51d01f-15d0-42f9-af98-137c0717e96e", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "832dfc40-c091-465d-bca2-cdbe57aead34", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065505Z:3d51d01f-15d0-42f9-af98-137c0717e96e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "665318aa5563fbe58f060fdaec44039f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8b781bdb-a3b7-46a3-8994-387d0965517d", + "x-ms-client-request-id": "665318aa5563fbe58f060fdaec44039f", + "x-ms-correlation-request-id": "09c9d3cb-b166-4847-ac71-14a2b6019801", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "5a2b4c10-14e7-4d01-993c-709ea0b23a7c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065507Z:09c9d3cb-b166-4847-ac71-14a2b6019801" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "71f86e849eb1d0b3e9273963dd62ad2c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:55: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": "b01d0c73-370e-46a3-a0d9-4ca502cd1e2f", + "x-ms-client-request-id": "71f86e849eb1d0b3e9273963dd62ad2c", + "x-ms-correlation-request-id": "ed2a3b53-3a3e-42f9-98c7-12be75f5df59", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "362365f4-8d7b-4a95-b5de-6c886b148d94", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065508Z:ed2a3b53-3a3e-42f9-98c7-12be75f5df59" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "477641a8b1e7266e0a01e2675510b6cf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "89ca4d28-7f83-4461-9327-c20f523d6627", + "x-ms-client-request-id": "477641a8b1e7266e0a01e2675510b6cf", + "x-ms-correlation-request-id": "4dd317b4-0a5f-419f-b840-834bc4a00f69", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "88c2c55f-38df-4a16-9720-6a1f0b5b46ea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065509Z:4dd317b4-0a5f-419f-b840-834bc4a00f69" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e4e58b9ba15b0b3c64837c3b1c821e2c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "630c27af-802e-4717-9cee-0b0768810cfe", + "x-ms-client-request-id": "e4e58b9ba15b0b3c64837c3b1c821e2c", + "x-ms-correlation-request-id": "bfc35d5c-8a06-4d47-8771-30393da9df5b", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "f41012bf-3f4d-460b-bafb-58aff7c3e20d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065510Z:bfc35d5c-8a06-4d47-8771-30393da9df5b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ab32e359bbced3b800d267afbb4c7ad9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "943b6c32-74f4-4a67-b4ea-aa18b815f9c6", + "x-ms-client-request-id": "ab32e359bbced3b800d267afbb4c7ad9", + "x-ms-correlation-request-id": "c4ace3c0-f4f2-4207-9e06-e73a459f6f35", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "33845a6c-8cb6-425f-a697-01841f454cc3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065512Z:c4ace3c0-f4f2-4207-9e06-e73a459f6f35" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "51c76a71c87d07d0046ae26434320987", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:55: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": "427bc3c2-bce3-4617-b25f-e3a7fffc3028", + "x-ms-client-request-id": "51c76a71c87d07d0046ae26434320987", + "x-ms-correlation-request-id": "3f7d6190-a450-485d-82f8-1fff1e116954", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "fbeebed7-949e-4961-bbd7-24405a4720ad", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065513Z:3f7d6190-a450-485d-82f8-1fff1e116954" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "720db6e30adde001d312e489398c5018", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "cabec5f2-2005-4cd5-a1af-318154fcf289", + "x-ms-client-request-id": "720db6e30adde001d312e489398c5018", + "x-ms-correlation-request-id": "a0b072d4-860d-4005-8381-4449c514991e", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "42362fc2-ae07-4202-bab6-3d3e7676ed23", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065514Z:a0b072d4-860d-4005-8381-4449c514991e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b1c9a308cdba90af122aa763d9539ece", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "85f84850-4d57-41fb-9c1f-9a4491a73859", + "x-ms-client-request-id": "b1c9a308cdba90af122aa763d9539ece", + "x-ms-correlation-request-id": "be3d278a-f824-4c59-8a13-0ccbcdd14690", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "dd2d4cba-ace7-4cae-a299-12c3d75ac996", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065515Z:be3d278a-f824-4c59-8a13-0ccbcdd14690" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "05ccdfc8083e67fb69e77d6be446cd77", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "174f57de-bb71-4f51-be98-e9533e7bafb9", + "x-ms-client-request-id": "05ccdfc8083e67fb69e77d6be446cd77", + "x-ms-correlation-request-id": "7dbbbfc0-e214-46ea-a201-65c872ab912d", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "4ea14e1f-0a89-4b7b-a2fc-f78e099dd5c6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065517Z:7dbbbfc0-e214-46ea-a201-65c872ab912d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "915cc919586815cd067d5fb3639d077f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8df023ef-0776-44d4-b164-2e458e2520a7", + "x-ms-client-request-id": "915cc919586815cd067d5fb3639d077f", + "x-ms-correlation-request-id": "263e47c8-7f3a-4290-a107-0a9d1485e48e", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "1a0f86e1-31aa-4da4-984f-53b3b42d75fe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065518Z:263e47c8-7f3a-4290-a107-0a9d1485e48e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "59c015734bc0ffdaa76248d24f44abcb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8332bcc9-6123-40e5-84bb-897019955b45", + "x-ms-client-request-id": "59c015734bc0ffdaa76248d24f44abcb", + "x-ms-correlation-request-id": "6ec4861c-2a05-450a-8d5c-db541c29a778", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "2439475b-1acd-4c9a-a39f-4d6d27b09aa7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065519Z:6ec4861c-2a05-450a-8d5c-db541c29a778" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0f4a2f5c0df7706512b6fec0a84804cc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "991fb3cc-21b6-4772-9445-9d719e4072ad", + "x-ms-client-request-id": "0f4a2f5c0df7706512b6fec0a84804cc", + "x-ms-correlation-request-id": "b1218047-ba8d-4d24-bce0-a8b28285b2d3", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "8417d1bf-8d69-4b2b-a1f0-f17686ae0a2e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065521Z:b1218047-ba8d-4d24-bce0-a8b28285b2d3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cef7fee07486ceb7ef5ce90510fbc6c2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:55: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": "cf41c7ba-23e4-4c45-ac37-9fda264ffde3", + "x-ms-client-request-id": "cef7fee07486ceb7ef5ce90510fbc6c2", + "x-ms-correlation-request-id": "996d0afd-4a06-480d-87c3-08748cdbc190", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "d79d039b-bcff-4bc1-a2c3-ac85ff4c17b7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065522Z:996d0afd-4a06-480d-87c3-08748cdbc190" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "345693d1f7536688b05047094c19565f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "7884e253-3f91-4701-b975-7a1d57e20d14", + "x-ms-client-request-id": "345693d1f7536688b05047094c19565f", + "x-ms-correlation-request-id": "48e8eace-ed59-4a1d-9c88-591dcaa06a4b", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "ce341771-ca4c-40d0-ba30-8b7c69ae53bf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065523Z:48e8eace-ed59-4a1d-9c88-591dcaa06a4b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "51f17c5edd4ce845777b1f9b235f6016", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2c958169-2657-4e77-9dd0-19e98f2163bd", + "x-ms-client-request-id": "51f17c5edd4ce845777b1f9b235f6016", + "x-ms-correlation-request-id": "9ebfb32d-bf09-481a-a9e3-3ce769de4194", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "e43b2c90-8312-43a0-8042-e894273430b8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065524Z:9ebfb32d-bf09-481a-a9e3-3ce769de4194" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "15ef3bf0cff2e87876911e352cae81d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a429ddae-878f-4da6-ae1f-6d5062423aaf", + "x-ms-client-request-id": "15ef3bf0cff2e87876911e352cae81d5", + "x-ms-correlation-request-id": "cf0bd0f4-ddeb-42f9-9abe-2b76c4f36115", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "0ef72ed6-8e51-4cdb-8872-e7c1e877bbc2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065526Z:cf0bd0f4-ddeb-42f9-9abe-2b76c4f36115" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "94a78a057509f4764e6dbdd7d8ec4250", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "87cdb617-81c5-4035-b5be-ad9a49641886", + "x-ms-client-request-id": "94a78a057509f4764e6dbdd7d8ec4250", + "x-ms-correlation-request-id": "55d64fdb-d9d4-445d-a532-8617e22bd3b4", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "20c3f1be-e518-40ed-8a3d-d8e02728e32f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065527Z:55d64fdb-d9d4-445d-a532-8617e22bd3b4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "111830f0412a8e6d0308dbbabe0fbbc8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "fd02b220-88b0-4c3d-8195-47dee84e76e6", + "x-ms-client-request-id": "111830f0412a8e6d0308dbbabe0fbbc8", + "x-ms-correlation-request-id": "3f6f0b35-bf30-423b-9693-5d5540b579df", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "a9caa77e-48a0-4958-9801-0b4db1860598", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065528Z:3f6f0b35-bf30-423b-9693-5d5540b579df" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "99954af9cbb87b0dc5fac68412a01089", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d100f58b-d911-48bc-acc8-d69d1365af49", + "x-ms-client-request-id": "99954af9cbb87b0dc5fac68412a01089", + "x-ms-correlation-request-id": "ff4a499e-eb44-4ff0-83e1-e2a2f81161fe", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "467ffbca-e255-4c53-905a-b31d73f4a02b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065529Z:ff4a499e-eb44-4ff0-83e1-e2a2f81161fe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fc45ce4f7095c3ab1d1990009abb353e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "212252ce-72b7-4920-9465-004df034c188", + "x-ms-client-request-id": "fc45ce4f7095c3ab1d1990009abb353e", + "x-ms-correlation-request-id": "8e424dd3-aca4-43cf-9282-81bec67b04e2", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "4fb16a78-2905-4c97-b60b-d4d177cdf899", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065531Z:8e424dd3-aca4-43cf-9282-81bec67b04e2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8dddf4b1a8572497239d4b2f7be87b62", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "40fa72ac-0079-4295-81bb-fba17e732f42", + "x-ms-client-request-id": "8dddf4b1a8572497239d4b2f7be87b62", + "x-ms-correlation-request-id": "8c101d16-0a86-405e-a915-ccbe02a1723d", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "19cedac7-d875-4bbc-88d6-ce693caaa28a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065532Z:8c101d16-0a86-405e-a915-ccbe02a1723d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f06b52f8bfca89339ed17c9f3b0ce109", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "0482efb9-ff64-4eed-a713-cdca56bc15cb", + "x-ms-client-request-id": "f06b52f8bfca89339ed17c9f3b0ce109", + "x-ms-correlation-request-id": "20edcc4a-c693-423f-bad9-b85b66d2f6cc", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "11bc66da-8cdd-4793-a8d0-d96d115ce169", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065533Z:20edcc4a-c693-423f-bad9-b85b66d2f6cc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1ed388c582c3a6313620d8f7247b4834", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b2d73663-5c1c-4bc9-9b9e-4e8dc734b8cd", + "x-ms-client-request-id": "1ed388c582c3a6313620d8f7247b4834", + "x-ms-correlation-request-id": "d4eb68f9-ba9d-4705-a8e8-9beb1df51851", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "23b88bd0-0740-45ec-950f-1ae921cce206", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065535Z:d4eb68f9-ba9d-4705-a8e8-9beb1df51851" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "48082e9d4550f174c054ef852bf8e916", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e92dc30f-3f42-4a77-a914-1bfca4551440", + "x-ms-client-request-id": "48082e9d4550f174c054ef852bf8e916", + "x-ms-correlation-request-id": "4f793751-de89-432f-883c-2f4fcf2fd36e", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "d3668ffc-b9e9-4dfb-8e2e-86900cc3e195", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065536Z:4f793751-de89-432f-883c-2f4fcf2fd36e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f26a42bc5d15759f20c4baa9e63b6423", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "e5f2f8db-48be-484b-9ab1-69ae453fb583", + "x-ms-client-request-id": "f26a42bc5d15759f20c4baa9e63b6423", + "x-ms-correlation-request-id": "426653bb-15a3-4435-bf9b-3641a7821b5d", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "f52ea6f7-d74b-4f5a-8920-e3904c02346f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065537Z:426653bb-15a3-4435-bf9b-3641a7821b5d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0d01478999047fb914e15d6e93ac7b3d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "cbc8154f-4f4e-415b-86aa-c1056dc6b45a", + "x-ms-client-request-id": "0d01478999047fb914e15d6e93ac7b3d", + "x-ms-correlation-request-id": "46b975a1-0a28-4076-a2e7-53a58b1eed2f", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "a8cf1030-3124-4e1b-b95b-39779d870585", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065538Z:46b975a1-0a28-4076-a2e7-53a58b1eed2f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e23bc2375511401f8e93278b8bca0b85", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "baae1cc3-b9c3-437c-b5f1-bc943eb7fb7d", + "x-ms-client-request-id": "e23bc2375511401f8e93278b8bca0b85", + "x-ms-correlation-request-id": "111ac2b5-bcea-41af-b9f4-3d73da402a4a", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "d016f5c3-b1b8-41ce-99b9-3f619be7e528", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065540Z:111ac2b5-bcea-41af-b9f4-3d73da402a4a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e3fcccefdcf7231289eade34ff30e174", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9195dd20-c28a-4ae9-8261-968a43fc5dc4", + "x-ms-client-request-id": "e3fcccefdcf7231289eade34ff30e174", + "x-ms-correlation-request-id": "ebb6e25b-34a9-4b94-ba1d-beecbe1fe956", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "28ff43f4-359e-412d-90b6-b651f9154e42", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065541Z:ebb6e25b-34a9-4b94-ba1d-beecbe1fe956" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "24717c498100331128c17e70712df449", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "d3e8290d-37ee-48a2-aefb-bd7f47799bb9", + "x-ms-client-request-id": "24717c498100331128c17e70712df449", + "x-ms-correlation-request-id": "7e8ddf87-0cfe-488f-b263-d98f6e9d1bc8", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "c51ac240-58d2-4a3c-9983-902449304f16", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065542Z:7e8ddf87-0cfe-488f-b263-d98f6e9d1bc8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c77ed8d697af5b46af17592677eb415e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d23c97b2-da8f-4ff0-8278-2d28f91417b2", + "x-ms-client-request-id": "c77ed8d697af5b46af17592677eb415e", + "x-ms-correlation-request-id": "597d46b4-2218-4524-990e-a61854e9a015", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "d4267198-a5d3-4f10-80d2-42fbf35ba3c2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065544Z:597d46b4-2218-4524-990e-a61854e9a015" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0e42b3b2e6596e84bac9bb355da1b25b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "18e80c78-05ed-4e76-8f6f-708b336a4aa3", + "x-ms-client-request-id": "0e42b3b2e6596e84bac9bb355da1b25b", + "x-ms-correlation-request-id": "35c5b69e-cdb8-4de9-80b3-0e423592a17b", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "a2b9df2a-72df-4370-ac2f-9cf35c0ffe66", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065545Z:35c5b69e-cdb8-4de9-80b3-0e423592a17b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "275e95f619b1b2c4361674e828ebbb3d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "a46a6744-ad8d-47e9-a3f8-bf4f81d6bb28", + "x-ms-client-request-id": "275e95f619b1b2c4361674e828ebbb3d", + "x-ms-correlation-request-id": "3bea20a7-75b3-479a-a0f5-3f9364178f16", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "fb633875-7055-4d18-8c70-5831ba46d9e5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065546Z:3bea20a7-75b3-479a-a0f5-3f9364178f16" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bdbe2080e5eaefef53100de6db10fd0d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "debb35a1-7e26-4b64-846d-cd48602cd727", + "x-ms-client-request-id": "bdbe2080e5eaefef53100de6db10fd0d", + "x-ms-correlation-request-id": "f6275dcf-b306-4a07-a33a-668f5050a33e", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "8697892a-d285-4677-b153-79f6618be413", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065548Z:f6275dcf-b306-4a07-a33a-668f5050a33e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e130fd65198d98acef8fd842719b45ce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "05a718b7-8729-4075-8e0f-5faec26237e8", + "x-ms-client-request-id": "e130fd65198d98acef8fd842719b45ce", + "x-ms-correlation-request-id": "8da26c65-69b2-439f-9ca4-dc044e3dc0d2", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "54de2d70-b2f6-481c-b46a-4a454076d8e3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065549Z:8da26c65-69b2-439f-9ca4-dc044e3dc0d2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3db57d0df4e31070a56ed3a00cded625", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "efbec247-9581-4da2-bd3b-648986da9c65", + "x-ms-client-request-id": "3db57d0df4e31070a56ed3a00cded625", + "x-ms-correlation-request-id": "07ebcf55-57a0-4e7a-9064-a63078c3c9a0", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "94c5eeb1-36bd-4697-b360-dfc46e31d5bd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065550Z:07ebcf55-57a0-4e7a-9064-a63078c3c9a0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2a836618d9bb66b07326ce5b0dad7db7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:55: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": "672cb583-958e-4fdb-8f69-54259a8cb37b", + "x-ms-client-request-id": "2a836618d9bb66b07326ce5b0dad7db7", + "x-ms-correlation-request-id": "85b8df7f-9236-4269-977d-5f5887f6dd59", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "4ae25885-f545-4d62-8d56-af74d9b7041e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065551Z:85b8df7f-9236-4269-977d-5f5887f6dd59" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5dd83ecbbf5b712a8d203c1e450b8b10", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "04e83fd0-f2f1-4bdc-857d-c2a0392754e8", + "x-ms-client-request-id": "5dd83ecbbf5b712a8d203c1e450b8b10", + "x-ms-correlation-request-id": "cd9a7b37-811d-4a1f-bd9e-8c1b80ac4bef", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "5d2fa2fa-c4d9-4538-a18d-396415905cf3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065553Z:cd9a7b37-811d-4a1f-bd9e-8c1b80ac4bef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0b29b3b91b183313cd4fc9bc251502f8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1dbdc6b4-55c3-4f1d-bf1d-3c828ef19046", + "x-ms-client-request-id": "0b29b3b91b183313cd4fc9bc251502f8", + "x-ms-correlation-request-id": "adac0392-a6a0-4a84-870d-4abb3883f2c2", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "f3a354e1-d100-4223-972f-6946746bff7f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065554Z:adac0392-a6a0-4a84-870d-4abb3883f2c2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cdd51cf0780559ca3c129c9b9d912067", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "d963a062-a605-4327-b3c5-9bd064fa7e68", + "x-ms-client-request-id": "cdd51cf0780559ca3c129c9b9d912067", + "x-ms-correlation-request-id": "06efe426-1c82-410b-ba4d-2fa887d186ac", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "f2e696a2-281a-42ba-8e1a-47cebac39d49", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065555Z:06efe426-1c82-410b-ba4d-2fa887d186ac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5aa1bd9a7283af9e2ba5900cf56d4b77", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "eb9277a1-4128-4015-9a20-426e65604420", + "x-ms-client-request-id": "5aa1bd9a7283af9e2ba5900cf56d4b77", + "x-ms-correlation-request-id": "77151200-22a9-497c-a57e-ec46eee496f4", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "9504075a-52e1-4a90-80a8-981a17eb847c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065556Z:77151200-22a9-497c-a57e-ec46eee496f4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "292d441dbe36400be8d0ce057e78953c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "59b78c87-c3fb-4f91-ac4e-fbe6ecfbfebf", + "x-ms-client-request-id": "292d441dbe36400be8d0ce057e78953c", + "x-ms-correlation-request-id": "89970c17-e758-48b3-98f5-06b44ec98976", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "2a3b55b5-6d82-48dc-89cc-600a5e0bfa94", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065558Z:89970c17-e758-48b3-98f5-06b44ec98976" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6722622ea8747d757d25a160e8be63ce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d7f00250-2dc4-4ee3-87c4-e3c3f521d8ea", + "x-ms-client-request-id": "6722622ea8747d757d25a160e8be63ce", + "x-ms-correlation-request-id": "4611a2a9-160c-4b99-b6f6-7e3fc57c7fd5", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "49388b06-f01b-43bd-94a3-da271b828ef7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065559Z:4611a2a9-160c-4b99-b6f6-7e3fc57c7fd5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "597d25c7f763dc31b26071b2a39930b3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:56: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": "80e14bf8-1c57-473c-9c03-7ed6307a8ec3", + "x-ms-client-request-id": "597d25c7f763dc31b26071b2a39930b3", + "x-ms-correlation-request-id": "a79d6238-7070-4e1e-9613-0132c5a73090", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "dee153f7-25a0-44f8-9e15-db2e5fbb4068", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065600Z:a79d6238-7070-4e1e-9613-0132c5a73090" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "93dd540fe34b7403cfafab101caa582a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "20695559-52e9-4391-ab16-2ba392695102", + "x-ms-client-request-id": "93dd540fe34b7403cfafab101caa582a", + "x-ms-correlation-request-id": "e598f85e-f937-4f4a-97b4-ee5d52e2105c", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "f134c471-4303-4cd3-96d2-8267ede0709e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065602Z:e598f85e-f937-4f4a-97b4-ee5d52e2105c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "593e006d3cfa37d83046b51337c2dae4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1098cc56-c66e-4a4d-b2d8-5d99216806d0", + "x-ms-client-request-id": "593e006d3cfa37d83046b51337c2dae4", + "x-ms-correlation-request-id": "1f907de2-41e4-462f-bf9e-fe05c92176ea", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "3efdc6ae-bf34-4763-9a74-6ed6b60bd23b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065603Z:1f907de2-41e4-462f-bf9e-fe05c92176ea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9451eef5cfe0e38221098ab34b20bf07", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d7461222-5620-4cbd-9d6b-6f4885c5c651", + "x-ms-client-request-id": "9451eef5cfe0e38221098ab34b20bf07", + "x-ms-correlation-request-id": "5d0c7427-2e9f-4e29-babf-8f768ea0b9d7", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "c61ccd08-ca6d-46b6-819e-b8a5b3561535", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065604Z:5d0c7427-2e9f-4e29-babf-8f768ea0b9d7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a3444608d75ad2b97ba662052df03d0c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:56: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": "c1885e35-5b7c-4345-af05-284f6753ed41", + "x-ms-client-request-id": "a3444608d75ad2b97ba662052df03d0c", + "x-ms-correlation-request-id": "979ff0f7-f5e5-4590-ac07-b2615d2c3772", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "3170b132-face-41e0-97a0-475312eaef97", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065605Z:979ff0f7-f5e5-4590-ac07-b2615d2c3772" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2e1bc7d5c4599e4a7d5a37f1b124ec10", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f871efd1-4141-42fa-97b1-4ce04dfd599e", + "x-ms-client-request-id": "2e1bc7d5c4599e4a7d5a37f1b124ec10", + "x-ms-correlation-request-id": "9d1a24df-bab3-40d3-a8cf-948ba03dd396", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "c696260a-9d3a-4b2a-9105-3ec22653e03a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065607Z:9d1a24df-bab3-40d3-a8cf-948ba03dd396" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f00bad86377e1e8a347e183a6c7db631", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5f634b18-d034-400b-b969-315a8b4cb8eb", + "x-ms-client-request-id": "f00bad86377e1e8a347e183a6c7db631", + "x-ms-correlation-request-id": "2a20ab41-e738-4da3-89d4-1519c8dad303", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "122a3a26-18be-49cd-9cd9-7760dd169694", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065608Z:2a20ab41-e738-4da3-89d4-1519c8dad303" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "84de7ecb910543adfca625ff9fc82057", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6a62d694-3f19-416b-b991-3d8937b88b5d", + "x-ms-client-request-id": "84de7ecb910543adfca625ff9fc82057", + "x-ms-correlation-request-id": "cf9ea681-c1dc-428b-8f83-6e9b89b8a4a9", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "029ee939-a9eb-4e69-a1ec-4ced4c4da3cd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065609Z:cf9ea681-c1dc-428b-8f83-6e9b89b8a4a9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7f7f52ba4ce59e8d3cfdf9dbac103100", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "1ec22f0b-8c8a-4aaa-a0fc-5f73a4d71f38", + "x-ms-client-request-id": "7f7f52ba4ce59e8d3cfdf9dbac103100", + "x-ms-correlation-request-id": "411f0298-d2ed-4e5d-9088-930ed680662e", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "44268230-6fa9-4d75-9eed-b397cd75abf6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065611Z:411f0298-d2ed-4e5d-9088-930ed680662e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "332506a46746f40a00c7f4d8118a7e6c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "62079156-09ea-489f-8290-a9eb281bed19", + "x-ms-client-request-id": "332506a46746f40a00c7f4d8118a7e6c", + "x-ms-correlation-request-id": "ee0e2321-2e3a-4c9b-8fe6-0bbbeeb880eb", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "1cf76ff9-8202-46a9-943e-528f88815c79", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065612Z:ee0e2321-2e3a-4c9b-8fe6-0bbbeeb880eb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1a80c05d36fe7e4cf03f470897d297eb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "336c0fbc-fd63-4434-b63d-098289f16050", + "x-ms-client-request-id": "1a80c05d36fe7e4cf03f470897d297eb", + "x-ms-correlation-request-id": "344971a7-ac27-4b35-a2c2-383ae05be756", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "4b23ee88-c673-4c5a-9d6d-dc4ce1237d94", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065613Z:344971a7-ac27-4b35-a2c2-383ae05be756" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "995b2474eda25211488a7f1d57b58cb2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c612a00f-b129-4d62-87a4-34f734197b73", + "x-ms-client-request-id": "995b2474eda25211488a7f1d57b58cb2", + "x-ms-correlation-request-id": "78db4d1f-f8eb-490b-a863-d89c248c4f17", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "9777eb2d-b091-40ec-a1c5-fa2d0eff1e1f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065615Z:78db4d1f-f8eb-490b-a863-d89c248c4f17" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eb7e8c7e178f6e02b9a6430620025d2e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "79787dfc-0536-4e50-978e-bc121a8a9bd7", + "x-ms-client-request-id": "eb7e8c7e178f6e02b9a6430620025d2e", + "x-ms-correlation-request-id": "061407d1-7dfb-4549-8c01-5416c5281520", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "a47ccab7-eaf4-40b3-8f7e-826ddec5bddd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065616Z:061407d1-7dfb-4549-8c01-5416c5281520" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ed64082fe42f70caaf2ed174b62e273a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "34113fa1-d434-4dde-8274-2545013e28bf", + "x-ms-client-request-id": "ed64082fe42f70caaf2ed174b62e273a", + "x-ms-correlation-request-id": "58e1ec5b-9561-495e-8588-bc31b6f6491e", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "81fdfbca-da6a-4c1e-bfe8-eed63885cc81", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065617Z:58e1ec5b-9561-495e-8588-bc31b6f6491e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0b8994b2ab535c5c22ece0fba90a3146", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9a97b1d6-7f02-437c-bdb0-0460dc609210", + "x-ms-client-request-id": "0b8994b2ab535c5c22ece0fba90a3146", + "x-ms-correlation-request-id": "917d966c-cee1-4f2d-ab0f-01abc6d28813", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "e4149822-98fd-4fcf-990a-5c2a071b1465", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065618Z:917d966c-cee1-4f2d-ab0f-01abc6d28813" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4eed512d9f519983c20e3c61458eb88a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:56: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": "db2a0bc8-7f12-4ab1-a261-bb009cee3f68", + "x-ms-client-request-id": "4eed512d9f519983c20e3c61458eb88a", + "x-ms-correlation-request-id": "d2a11eb1-e09f-4f07-8060-2f5a57d82829", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "41953a70-9cfb-47b7-a8bf-8431160146cc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065620Z:d2a11eb1-e09f-4f07-8060-2f5a57d82829" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8c53087f517884daac07ca4204cfc6a5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d41ac1eb-10d8-41a6-806a-6ab960b243d0", + "x-ms-client-request-id": "8c53087f517884daac07ca4204cfc6a5", + "x-ms-correlation-request-id": "b9032637-9424-4e82-b7b8-3e2f027fb681", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "f23c26dc-dbb4-4f11-8eb2-3145487e3888", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065621Z:b9032637-9424-4e82-b7b8-3e2f027fb681" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "64478bfcd84113e811ef48456ffa1694", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8de3216e-5d16-4a29-9b7d-443bed2bdb3e", + "x-ms-client-request-id": "64478bfcd84113e811ef48456ffa1694", + "x-ms-correlation-request-id": "078c7c0a-6dfc-45a4-8471-6efa408703b2", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "5f52cdc6-0b42-40f3-9c84-34a0a870537a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065622Z:078c7c0a-6dfc-45a4-8471-6efa408703b2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a07b5534a5b6dbcd7769a249d54095f3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "def0a74e-8042-441e-9eb2-fd78fb28d1a1", + "x-ms-client-request-id": "a07b5534a5b6dbcd7769a249d54095f3", + "x-ms-correlation-request-id": "8efefbe6-011b-4763-bfcf-22aba7ada2df", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "b093cd98-b78b-4297-a925-f59a30107078", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065624Z:8efefbe6-011b-4763-bfcf-22aba7ada2df" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ba6596475347a74920407a88099414b2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d76b4202-bf5a-40e1-b4ea-d855160d57ad", + "x-ms-client-request-id": "ba6596475347a74920407a88099414b2", + "x-ms-correlation-request-id": "465d15e5-c466-48ee-b975-e9ad9707d5a7", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "7dc96d0d-b23c-4d6e-848d-78aebbc9ff97", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065626Z:465d15e5-c466-48ee-b975-e9ad9707d5a7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "af0e36f1255356eebe6bedd7359e3ed0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e2a9f261-1e1c-4378-97f2-72f2900b842a", + "x-ms-client-request-id": "af0e36f1255356eebe6bedd7359e3ed0", + "x-ms-correlation-request-id": "5a144d57-33ce-4005-a011-4a32655133c2", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "c2947f7e-9003-42e6-9b6e-25b04ab97e0e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065627Z:5a144d57-33ce-4005-a011-4a32655133c2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d8fe555a5c95e14d0cd380752a45d2e2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ce5c4688-0333-4392-8c4d-5c65032efde5", + "x-ms-client-request-id": "d8fe555a5c95e14d0cd380752a45d2e2", + "x-ms-correlation-request-id": "2d96e345-c899-4786-81fc-289927a7aac9", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "b0af57b8-156a-4a00-84a0-3e0ca6933825", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065629Z:2d96e345-c899-4786-81fc-289927a7aac9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9e58f054e632229fa70efbdb65717181", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "8ebe7d0b-b800-41a7-82ca-4fee73f8a226", + "x-ms-client-request-id": "9e58f054e632229fa70efbdb65717181", + "x-ms-correlation-request-id": "a03f48c7-d550-4429-925c-f77e07a30008", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "ddf27c92-8138-4a79-8e7d-bcd6727e16dd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065630Z:a03f48c7-d550-4429-925c-f77e07a30008" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b32daa023b96941de82da27fa4792c79", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6dce1a4c-daa3-4c56-a214-15f3e22f5937", + "x-ms-client-request-id": "b32daa023b96941de82da27fa4792c79", + "x-ms-correlation-request-id": "7babd5a0-24f6-4b5d-a810-aa5c362f4da9", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "d1a447ae-92ac-47ec-b8d1-3943a47066e7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065631Z:7babd5a0-24f6-4b5d-a810-aa5c362f4da9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "45830a999f46749eb6db308660727b9b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b65d92f0-2774-4730-897c-883d7e4d0bd8", + "x-ms-client-request-id": "45830a999f46749eb6db308660727b9b", + "x-ms-correlation-request-id": "29ae34d1-1235-40f0-a00f-a725bfbbcc80", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "1cb42474-1c47-4147-9944-40b4bab0fcc5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065632Z:29ae34d1-1235-40f0-a00f-a725bfbbcc80" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8073ff611e17184cd2c3b605431f7e2e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "591e02cb-9261-4af4-a7f3-239d45dc6d2a", + "x-ms-client-request-id": "8073ff611e17184cd2c3b605431f7e2e", + "x-ms-correlation-request-id": "06c86d6f-25ad-4bf5-a151-c6dbeb17f37f", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "5b644f24-13af-491c-af2a-6077f7dbcfe1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065634Z:06c86d6f-25ad-4bf5-a151-c6dbeb17f37f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5a4182e22ced633a0cb9fdba0b963476", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "9873eb59-04a7-4a6c-b1b6-339f459cdbdc", + "x-ms-client-request-id": "5a4182e22ced633a0cb9fdba0b963476", + "x-ms-correlation-request-id": "806f3347-d6e2-4179-9952-219ffaa2660b", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "a1dd0ee8-05d9-4f43-8456-40f6fa998aff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065635Z:806f3347-d6e2-4179-9952-219ffaa2660b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a41e07b1ab067a61be6a7282e8983096", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "95fbadb9-edbf-4e8b-b540-9da33702bc0e", + "x-ms-client-request-id": "a41e07b1ab067a61be6a7282e8983096", + "x-ms-correlation-request-id": "aef2df20-a136-4f47-9bee-bdea2814466e", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "c41e678c-1d2a-476f-a0c9-1bd7f8b88df0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065636Z:aef2df20-a136-4f47-9bee-bdea2814466e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dda4025d203035adc50f745e21910d3c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0b263c35-5dfe-4550-82f5-c9633500c93c", + "x-ms-client-request-id": "dda4025d203035adc50f745e21910d3c", + "x-ms-correlation-request-id": "48cdf3fa-b7d5-465b-aa68-d33173db42e3", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "58e3e38b-a0df-4b01-9b0d-29ef3b27d419", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065638Z:48cdf3fa-b7d5-465b-aa68-d33173db42e3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3c533f8fd901362821c69c83b9b87a73", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "165a9f7f-481a-4083-9a9d-14f4c6116c10", + "x-ms-client-request-id": "3c533f8fd901362821c69c83b9b87a73", + "x-ms-correlation-request-id": "8496f2e6-96e1-40f8-9a2c-0be0333da164", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "ca834180-45ab-4747-9e6c-5a1fd25c2ebf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065639Z:8496f2e6-96e1-40f8-9a2c-0be0333da164" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "095d678856f1904559e8dff63703592c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ba5f884c-68b1-49d3-892c-6cd7c376a455", + "x-ms-client-request-id": "095d678856f1904559e8dff63703592c", + "x-ms-correlation-request-id": "b2b24f22-a2ed-413c-9a72-e247602a6d6d", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "902413d2-3d5a-49a8-8655-d7f96efc4b16", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065640Z:b2b24f22-a2ed-413c-9a72-e247602a6d6d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a9f2365df4448394d96ebc69842a7c0c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0230ce2d-c148-4b3a-a327-d69ddf4352fa", + "x-ms-client-request-id": "a9f2365df4448394d96ebc69842a7c0c", + "x-ms-correlation-request-id": "7df7e9d6-6129-4f87-b2ee-d9d0ae14124b", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "b12e1a37-7932-427c-bc1b-2dffdb669e35", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065642Z:7df7e9d6-6129-4f87-b2ee-d9d0ae14124b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bad500950434384afac3e219fa31fe1d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "68bfb2c6-e8d3-4c51-bece-505db4294a3f", + "x-ms-client-request-id": "bad500950434384afac3e219fa31fe1d", + "x-ms-correlation-request-id": "88b4beda-b0bf-4aa9-86f7-d4913c7a32b6", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "073c983b-e2ca-47c5-9a6f-1269007afe8b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065643Z:88b4beda-b0bf-4aa9-86f7-d4913c7a32b6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "82266f6dd1c5932ed2d92f839adb0b2f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c70b4fde-7cef-425b-9c85-237bc0b34b1e", + "x-ms-client-request-id": "82266f6dd1c5932ed2d92f839adb0b2f", + "x-ms-correlation-request-id": "d4e5ea4c-8b2d-4aab-8681-07d58bcf29c2", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "66b68423-6751-408f-91b8-def5af78a8a4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065644Z:d4e5ea4c-8b2d-4aab-8681-07d58bcf29c2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3661d26c9e2d58f8ecbaae81117b89a7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d592ccd4-137e-4f7d-9a33-55c57034d45d", + "x-ms-client-request-id": "3661d26c9e2d58f8ecbaae81117b89a7", + "x-ms-correlation-request-id": "c4f9d460-1758-43e4-ab4d-5d9e0f182c90", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "e1287a99-6fd7-413a-a42f-94626a698124", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065646Z:c4f9d460-1758-43e4-ab4d-5d9e0f182c90" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "15fc9f6ff904c347d242e75ad4c69e1e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a56815e2-9b4f-408b-b411-f7634d9f3f10", + "x-ms-client-request-id": "15fc9f6ff904c347d242e75ad4c69e1e", + "x-ms-correlation-request-id": "a454fbe8-f9d0-440b-8ce5-3028fc6effed", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "5d0ce803-1f22-4dc5-a9ac-41ad36e134d9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065647Z:a454fbe8-f9d0-440b-8ce5-3028fc6effed" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "27acb3b7c7d0ceef76cd960b22ad8257", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "ce82e804-3459-4a2c-af1e-117b79c833d2", + "x-ms-client-request-id": "27acb3b7c7d0ceef76cd960b22ad8257", + "x-ms-correlation-request-id": "87cdc656-983b-47a5-ab6d-9ca3b91d5cf8", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "503e1887-b11f-482d-af0e-8169f63b9a9a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065648Z:87cdc656-983b-47a5-ab6d-9ca3b91d5cf8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fa13874ff6df722b8b9d64ebb69e8325", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "17187bb6-9925-4834-9e0d-7b4f119af8d8", + "x-ms-client-request-id": "fa13874ff6df722b8b9d64ebb69e8325", + "x-ms-correlation-request-id": "f5e19ff3-06be-4fc8-ab0d-a6555132ecc9", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "8a381825-30f7-4b8e-a603-274c7e1be3e4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065650Z:f5e19ff3-06be-4fc8-ab0d-a6555132ecc9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5ec9901b62cea8d7af2d9f36633ba124", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9ff0816e-5dde-4cbc-8d84-d3d840eb0ef8", + "x-ms-client-request-id": "5ec9901b62cea8d7af2d9f36633ba124", + "x-ms-correlation-request-id": "13316f96-f566-4f52-aa82-74b3b0c81b8c", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "ac5dfd75-25d2-4b94-a2b9-b79a0b23343f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065651Z:13316f96-f566-4f52-aa82-74b3b0c81b8c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4d0a90bfa3b2c13e873a9b33620318d8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "708554b7-c6c5-4f51-8b73-1158c75efe34", + "x-ms-client-request-id": "4d0a90bfa3b2c13e873a9b33620318d8", + "x-ms-correlation-request-id": "f84b305e-3613-435f-afae-19f35aa0b101", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "b1188631-77c4-44f8-9dae-5e72660fc219", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065655Z:f84b305e-3613-435f-afae-19f35aa0b101" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "91ef704923e3ed88b06b4bb256f40e4f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e7be203c-b06c-4759-966e-7e4365ab75ac", + "x-ms-client-request-id": "91ef704923e3ed88b06b4bb256f40e4f", + "x-ms-correlation-request-id": "d2184b5d-f191-4be5-aac0-736d5822cf2e", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "8f38dc5e-f3d9-4161-b8f9-06524ce07f37", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065656Z:d2184b5d-f191-4be5-aac0-736d5822cf2e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "252b3ffb369377735208d693c6a345ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "593ecdd1-6914-4611-b6b8-b7b6cdab5bd0", + "x-ms-client-request-id": "252b3ffb369377735208d693c6a345ab", + "x-ms-correlation-request-id": "d72d8e5a-fbbb-4975-b286-6b79eb76f878", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "54a51d52-07d5-43f3-ad3c-73dd4cd263e7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065657Z:d72d8e5a-fbbb-4975-b286-6b79eb76f878" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f3edc6150f4c9b41071d9c47588c6a93", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "1fa98fd2-a43f-4e17-8577-c23233498dda", + "x-ms-client-request-id": "f3edc6150f4c9b41071d9c47588c6a93", + "x-ms-correlation-request-id": "906dd5e6-568c-453b-b374-61f0d1129647", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "faf84acb-35ec-4231-9697-c0ba78c8b2dd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065658Z:906dd5e6-568c-453b-b374-61f0d1129647" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "22374b2cf2d71345fd773fdb4df5260c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d496abfb-2a90-40ac-8516-7cfdf91811c5", + "x-ms-client-request-id": "22374b2cf2d71345fd773fdb4df5260c", + "x-ms-correlation-request-id": "a3332aae-d5a6-43cc-8812-a83054ed27d1", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "3dbe9fff-b9ed-482f-8352-344614240738", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065700Z:a3332aae-d5a6-43cc-8812-a83054ed27d1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8f9d9f261a07ec03fe901d75992c1fc6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1ebad862-9372-49a8-a7c9-7d39267a345d", + "x-ms-client-request-id": "8f9d9f261a07ec03fe901d75992c1fc6", + "x-ms-correlation-request-id": "f98cda88-19bb-4e28-acea-ee4577bbbde7", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "db227a4b-3e6a-4bf0-9338-d80e490a2746", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065701Z:f98cda88-19bb-4e28-acea-ee4577bbbde7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7a67439d226c22d481d9f6d4d0654e12", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "107d8dbd-1c24-48f0-8229-fe19f7e6f6a2", + "x-ms-client-request-id": "7a67439d226c22d481d9f6d4d0654e12", + "x-ms-correlation-request-id": "e4a262cd-88e5-4e5f-814a-412fd76c3599", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "3ad4642b-90fa-42b7-bc5c-ee6b717068ee", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065702Z:e4a262cd-88e5-4e5f-814a-412fd76c3599" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b9208ff7dbee118b484b2447d4cf79d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e8d5b36e-0498-4704-b5a8-78b4bff7cdd0", + "x-ms-client-request-id": "b9208ff7dbee118b484b2447d4cf79d1", + "x-ms-correlation-request-id": "d5cf0ae3-4b51-4674-8993-6ad88a609b42", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "3065efc8-e279-49de-8b39-eb80320d6d0a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065704Z:d5cf0ae3-4b51-4674-8993-6ad88a609b42" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0a3e7858ab8d04a0cb7a0d2d242f1b98", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "84a8e40b-ef6d-451b-a990-a782b69b235b", + "x-ms-client-request-id": "0a3e7858ab8d04a0cb7a0d2d242f1b98", + "x-ms-correlation-request-id": "619241a4-3848-4713-b3e8-f2e228b33db5", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "4a7cc3e2-7048-4f33-935a-bb89e037e691", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065705Z:619241a4-3848-4713-b3e8-f2e228b33db5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "097e0b41660bc2d7b8563220fe8c4eb2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3e807c47-3fc1-4067-adb2-29c426cc4715", + "x-ms-client-request-id": "097e0b41660bc2d7b8563220fe8c4eb2", + "x-ms-correlation-request-id": "a9d3e123-4c60-4225-99ae-34c7f1dddcea", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "3c350b00-ca4f-435a-a978-9d2684715577", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065706Z:a9d3e123-4c60-4225-99ae-34c7f1dddcea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "577b256043274b85ef1ced73cd5dec18", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "1e709732-43f8-4fce-b4aa-5b06361f1a89", + "x-ms-client-request-id": "577b256043274b85ef1ced73cd5dec18", + "x-ms-correlation-request-id": "c85fcbb6-9b48-41ac-a4d8-16b270844093", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "1647f7dd-2877-492b-ae43-0d2d0b080001", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065708Z:c85fcbb6-9b48-41ac-a4d8-16b270844093" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c9058b306f51f2c5a17c52367880053e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5daf9584-8ec7-4668-b17b-71e8847596f6", + "x-ms-client-request-id": "c9058b306f51f2c5a17c52367880053e", + "x-ms-correlation-request-id": "670e8ee5-ce29-4c68-8577-8313f7b2bd5d", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "7f698b85-16b7-4fe4-93fa-fcf823fc2d64", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065709Z:670e8ee5-ce29-4c68-8577-8313f7b2bd5d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ffcd5b2cc3b4fd7185321aef7863f45a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "b770f58f-dbba-47ea-94a7-bb86c553a605", + "x-ms-client-request-id": "ffcd5b2cc3b4fd7185321aef7863f45a", + "x-ms-correlation-request-id": "b262e1c1-483e-4dc4-a48c-e49b9a52e9eb", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "2546f000-1efb-40ca-b784-b60365fa198d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065710Z:b262e1c1-483e-4dc4-a48c-e49b9a52e9eb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "72f01a698586f0605f89b6abf14ed26f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b1b2ae7b-bf23-4e8a-894b-34d8009d57b2", + "x-ms-client-request-id": "72f01a698586f0605f89b6abf14ed26f", + "x-ms-correlation-request-id": "7317b5d7-8a6a-4e43-9a23-cace7339d444", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "4dd3f9e4-b16d-4be8-aab7-ff3a4c1aaf6a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065711Z:7317b5d7-8a6a-4e43-9a23-cace7339d444" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7147ae16ed906c641908431e55d6793d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b983d8f7-e0ec-4a79-8687-3bea4cf322ee", + "x-ms-client-request-id": "7147ae16ed906c641908431e55d6793d", + "x-ms-correlation-request-id": "f20a91c4-3750-459d-945f-e84d6e8f1ca4", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "9eb349de-2c0e-42c1-a6b5-ef617908e37d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065713Z:f20a91c4-3750-459d-945f-e84d6e8f1ca4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5ecdf787938fa7b8fadc9f2a0cc60c37", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "a79dd713-c13a-451a-9acb-9698515665ce", + "x-ms-client-request-id": "5ecdf787938fa7b8fadc9f2a0cc60c37", + "x-ms-correlation-request-id": "8cd8ae91-3ed3-488b-983f-69d984ea2227", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "a81cacd0-289b-47b2-bda0-d4d526a11c1c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065714Z:8cd8ae91-3ed3-488b-983f-69d984ea2227" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c9d8ab60831c7ccab584597e41429b89", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "cd502de5-5ea0-493f-a5a5-96fb6c5790de", + "x-ms-client-request-id": "c9d8ab60831c7ccab584597e41429b89", + "x-ms-correlation-request-id": "4c840854-50d6-4571-89b6-2186ad94e0a6", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "208d5a71-b75e-4707-80cd-5d3cb54cf214", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065715Z:4c840854-50d6-4571-89b6-2186ad94e0a6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f923790f748183dff6a076b34d395f53", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b5751c7f-bd5e-49ed-ae23-9a9bc2abd668", + "x-ms-client-request-id": "f923790f748183dff6a076b34d395f53", + "x-ms-correlation-request-id": "f6eb9aa1-af4d-4ad9-94a3-3b73f7acf115", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "9b6c8bb0-f780-45d2-bfc5-c323761e000f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065717Z:f6eb9aa1-af4d-4ad9-94a3-3b73f7acf115" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aabe0cfbaffd03212d50a90b393a65b8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3b9226c7-1627-4eef-b77c-cbf078cf1da9", + "x-ms-client-request-id": "aabe0cfbaffd03212d50a90b393a65b8", + "x-ms-correlation-request-id": "7528ee66-4aa1-48ec-b959-7812bd281efd", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "7d0c2e59-d677-434f-a8c3-d965e7804c82", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065718Z:7528ee66-4aa1-48ec-b959-7812bd281efd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "931a154112a2ebb5cb55d37b0c162e7b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "dacb9991-2525-4798-9676-347360eafb3f", + "x-ms-client-request-id": "931a154112a2ebb5cb55d37b0c162e7b", + "x-ms-correlation-request-id": "07bbb7e1-63b2-411b-9ac8-19f2609bc35d", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "de207ea8-b373-4ad9-92bb-ec7ea9abad13", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065719Z:07bbb7e1-63b2-411b-9ac8-19f2609bc35d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "35820524f1835f8b581fcb30cbd449bc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6ae13248-ddc2-4c63-9a46-ef2ad5e38918", + "x-ms-client-request-id": "35820524f1835f8b581fcb30cbd449bc", + "x-ms-correlation-request-id": "cdff47a2-c3eb-4f17-8aaf-3b7fd0a99692", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "8882380c-eea9-46e5-8f93-cb0d6725ca49", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065721Z:cdff47a2-c3eb-4f17-8aaf-3b7fd0a99692" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3872be3bcb1fe8b056d2dea8dca5f717", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d7cb3a0c-2849-494e-9abe-94359fefbf34", + "x-ms-client-request-id": "3872be3bcb1fe8b056d2dea8dca5f717", + "x-ms-correlation-request-id": "8adb39f4-d21b-4cab-af42-6e57d14e90ce", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "6eb607c5-35b4-46e5-b7e7-33ed8611f07f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065722Z:8adb39f4-d21b-4cab-af42-6e57d14e90ce" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "33e62d222fb750348aba3b82468520f7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b565bb3e-ea61-4c0b-aebc-b470833ab994", + "x-ms-client-request-id": "33e62d222fb750348aba3b82468520f7", + "x-ms-correlation-request-id": "5a90481e-2e9a-482c-87f1-3df542418f31", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "b571c0c6-4912-419e-82f3-2e816f26d63e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065724Z:5a90481e-2e9a-482c-87f1-3df542418f31" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4e40160bf6a4585c559adfb112e383b3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c093347f-9d14-4859-b360-fe8fc1e264ba", + "x-ms-client-request-id": "4e40160bf6a4585c559adfb112e383b3", + "x-ms-correlation-request-id": "b74a20ba-c5d1-46d5-b229-8fd1c6c426cd", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "f07f6291-2998-4ef4-aa7d-459c063f1296", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065725Z:b74a20ba-c5d1-46d5-b229-8fd1c6c426cd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9d0eb42815ed0b058921ad64902ea1d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "78f5290c-0b62-4633-a253-baff4c7e85ef", + "x-ms-client-request-id": "9d0eb42815ed0b058921ad64902ea1d1", + "x-ms-correlation-request-id": "71a556c9-0389-4c66-a615-f0f2bb0e21a0", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "ab03c96f-159f-4965-951f-6ec3d3661ed8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065726Z:71a556c9-0389-4c66-a615-f0f2bb0e21a0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c59ce7b1a8652b72d08dde1d50833da7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7a71931a-6700-4985-8b42-0a860e3e8cea", + "x-ms-client-request-id": "c59ce7b1a8652b72d08dde1d50833da7", + "x-ms-correlation-request-id": "36c53974-c025-472a-b2bb-0efed1ee8149", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "c0f16506-4000-4327-bde8-4da7ffbb2491", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065727Z:36c53974-c025-472a-b2bb-0efed1ee8149" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "925a88378376f6091134c48248f8c727", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "889a773d-f71c-4a9d-87d2-9944f2926fb6", + "x-ms-client-request-id": "925a88378376f6091134c48248f8c727", + "x-ms-correlation-request-id": "f0278a11-93c1-446a-aa28-38cbae03f241", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "fe1ec7d8-7ed1-40d0-a5c6-fe24d0789bd9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065729Z:f0278a11-93c1-446a-aa28-38cbae03f241" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2bff0ef8bd467f4e41e3cc6036e8ba06", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b30d5ca8-e8d0-4e17-b85f-fd7077b35308", + "x-ms-client-request-id": "2bff0ef8bd467f4e41e3cc6036e8ba06", + "x-ms-correlation-request-id": "a6adcb4d-3b80-4df0-89fe-c5e128e71bea", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "97a287db-a00c-4c8e-a45d-4075e6a3ac1b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065730Z:a6adcb4d-3b80-4df0-89fe-c5e128e71bea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "082c06e40fd42e5adda6b430e4f0e2d8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2ad75391-1475-48be-ab03-ceca00b8282f", + "x-ms-client-request-id": "082c06e40fd42e5adda6b430e4f0e2d8", + "x-ms-correlation-request-id": "f06d5a1c-629c-4eca-b456-ef1468eb1289", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "c9ad7452-57f9-49a3-9fcd-6691186a4de3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065731Z:f06d5a1c-629c-4eca-b456-ef1468eb1289" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4224b7c512837a603ada5093b6a9bf29", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:57: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": "2941ad78-d410-48f5-880e-bba863592990", + "x-ms-client-request-id": "4224b7c512837a603ada5093b6a9bf29", + "x-ms-correlation-request-id": "81e35491-2704-4b54-bf96-0745dfde92a2", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "5d29ffc4-9931-4498-a43c-e9fd17f5dec8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065733Z:81e35491-2704-4b54-bf96-0745dfde92a2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "429ebd7abfcbe853b3d04d9f081d9b51", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "86e86e71-721e-40eb-9de0-c6758e17c29e", + "x-ms-client-request-id": "429ebd7abfcbe853b3d04d9f081d9b51", + "x-ms-correlation-request-id": "3ad04815-50e2-4b1d-bdf6-2744e3282b8a", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "c4bffa47-794d-451a-bee7-6b60d82b4c87", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065734Z:3ad04815-50e2-4b1d-bdf6-2744e3282b8a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7e9af40078c3d183a5b2cef9bfc77834", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d02aa024-69bc-4b9a-a1a7-584e2281d10d", + "x-ms-client-request-id": "7e9af40078c3d183a5b2cef9bfc77834", + "x-ms-correlation-request-id": "ca9c7c14-558a-4cec-b840-e15f1b3f4353", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "7a94655c-9bd2-4d27-a3c6-1b61da48885d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065735Z:ca9c7c14-558a-4cec-b840-e15f1b3f4353" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "26b58be7a051060c643b8fb2c5c0711c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "85d97d01-da8e-45d1-b989-493d993e4f29", + "x-ms-client-request-id": "26b58be7a051060c643b8fb2c5c0711c", + "x-ms-correlation-request-id": "0410b410-0450-4643-aa2f-4bd5e2059e8e", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "53d07a6b-2a3e-4e85-b763-986fa88f5203", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065736Z:0410b410-0450-4643-aa2f-4bd5e2059e8e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c192fe3e400f02653acc9c19f05929eb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "40eecb86-56eb-48b7-8fcf-1f040be6ebed", + "x-ms-client-request-id": "c192fe3e400f02653acc9c19f05929eb", + "x-ms-correlation-request-id": "5c25d6c1-a63a-4c9e-9856-c5a871af1805", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-request-id": "7d22854c-0dff-44db-836d-80a1fda59511", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065738Z:5c25d6c1-a63a-4c9e-9856-c5a871af1805" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7db81858756860ffe7931a87e8d00ce4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f751cb40-663a-4c80-8297-61615e50c6bf", + "x-ms-client-request-id": "7db81858756860ffe7931a87e8d00ce4", + "x-ms-correlation-request-id": "7a9c918d-b2a3-4613-8127-a955c58921aa", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "ea986f98-802f-4358-90fc-eadc69cb3982", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065739Z:7a9c918d-b2a3-4613-8127-a955c58921aa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c0bbb240b635a62526b3eb8404f3160b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "21c32006-bf58-4b18-8475-588a739ae901", + "x-ms-client-request-id": "c0bbb240b635a62526b3eb8404f3160b", + "x-ms-correlation-request-id": "079fcdf2-0631-4f0b-8b42-bbf0d640da1d", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "92cc3295-006d-48e6-bce5-a5fc826fd2be", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065740Z:079fcdf2-0631-4f0b-8b42-bbf0d640da1d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/54b2f354-6e28-4677-8454-70ee87b1d1ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ac5aa312f408c9b3fe32da7b26dd196a", + "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, 08 Sep 2021 06:57: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": "b03b5224-ebc3-4a22-994f-4e5ad49135db", + "x-ms-client-request-id": "ac5aa312f408c9b3fe32da7b26dd196a", + "x-ms-correlation-request-id": "59584df2-9a2b-4497-ba6f-0082dc5ac260", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "1621a554-9e89-4502-95b6-17863fc8b890", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065741Z:59584df2-9a2b-4497-ba6f-0082dc5ac260" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3dd8b7c0689ea1b6f31257b4897a5bf4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "19", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:57: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": "bd6781a3-15f4-4d19-8c87-1f55a7b55e93", + "x-ms-client-request-id": "3dd8b7c0689ea1b6f31257b4897a5bf4", + "x-ms-correlation-request-id": "8a095f61-0b67-4030-89b8-3f224db681af", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "fb1c4f23-012e-4bb4-894a-d56536df3798", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065742Z:8a095f61-0b67-4030-89b8-3f224db681af" + }, + "ResponseBody": [ + "{\r\n", + " \u0022value\u0022: []\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "45750e7c5f764cdcfef1c202dca97f48", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "19", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:57: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": "d0cea0c8-b4df-4d08-a717-d932b6370045", + "x-ms-client-request-id": "45750e7c5f764cdcfef1c202dca97f48", + "x-ms-correlation-request-id": "d67a4ee4-5a8f-4694-be0f-feaffcc73a0d", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "8146befe-8bcf-4b5a-b4be-bc0ecf15b1c5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065742Z:d67a4ee4-5a8f-4694-be0f-feaffcc73a0d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022value\u0022: []\r\n", + "}" + ] + } + ], + "Variables": { + "LOCATION": "westus2", + "RandomSeed": "835563666", + "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/BastionHostContainerTests/DeleteAsync.json b/sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/BastionHostContainerTests/DeleteAsync.json new file mode 100644 index 0000000000000..9c31e3ccb1b2f --- /dev/null +++ b/sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/BastionHostContainerTests/DeleteAsync.json @@ -0,0 +1,17296 @@ +{ + "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-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0537cadfd49756d1bf88f3df2cbb5f88", + "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, 08 Sep 2021 07:35:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "da996ce5-363c-4cca-93df-b3d8bfc6897f", + "x-ms-ratelimit-remaining-subscription-reads": "11729", + "x-ms-request-id": "da996ce5-363c-4cca-93df-b3d8bfc6897f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073510Z:da996ce5-363c-4cca-93df-b3d8bfc6897f" + }, + "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/bastionrg-7251?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-b30e4337aaad0845908ef5694d0f830e-d71ba2a9e1f9d242-00", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d0d7f5d62550e994adbf25aed1a1fd77", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "226", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:35:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "9c0e6708-da0f-4abb-9ccc-7e06539c0e4f", + "x-ms-ratelimit-remaining-subscription-reads": "11728", + "x-ms-request-id": "9c0e6708-da0f-4abb-9ccc-7e06539c0e4f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073510Z:9c0e6708-da0f-4abb-9ccc-7e06539c0e4f" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251", + "name": "bastionrg-7251", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0e4a571a2fcd70eab54c40f04c6f3d82", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1249", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:35:10 GMT", + "ETag": "W/\u002234417887-b13d-4619-b40c-01899c7f1413\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": "708f0e14-b1e8-4784-94ad-bb254f9fc23d", + "x-ms-client-request-id": "0e4a571a2fcd70eab54c40f04c6f3d82", + "x-ms-correlation-request-id": "b8fed081-15eb-45eb-8532-5b6ac09cd762", + "x-ms-ratelimit-remaining-subscription-reads": "11727", + "x-ms-request-id": "e9a4902c-28d4-4c3f-abdd-5fd59c9e89e6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073511Z:b8fed081-15eb-45eb-8532-5b6ac09cd762" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022vnet-6121\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002234417887-b13d-4619-b40c-01899c7f1413\\\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: \u0022a7067e65-d510-4fab-b894-da0e03df110f\u0022,\r\n", + " \u0022addressSpace\u0022: {\r\n", + " \u0022addressPrefixes\u0022: [\r\n", + " \u002210.0.0.0/16\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022subnets\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022AzureBastionSubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121/subnets/AzureBastionSubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002234417887-b13d-4619-b40c-01899c7f1413\\\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/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121/subnets/AzureBastionSubnet?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8729a38f9e65babc354d58d7af23841d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "551", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:35:10 GMT", + "ETag": "W/\u002234417887-b13d-4619-b40c-01899c7f1413\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": "0a381eca-8449-41b4-8ec2-abcb519c8548", + "x-ms-client-request-id": "8729a38f9e65babc354d58d7af23841d", + "x-ms-correlation-request-id": "aca5e00c-2b09-4a9c-8aeb-a10e9809b653", + "x-ms-ratelimit-remaining-subscription-reads": "11726", + "x-ms-request-id": "8a9f27c2-fded-4c82-998c-a845ea8875ba", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073511Z:aca5e00c-2b09-4a9c-8aeb-a10e9809b653" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022AzureBastionSubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121/subnets/AzureBastionSubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002234417887-b13d-4619-b40c-01899c7f1413\\\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/bastionrg-7251/providers/Microsoft.Network/publicIPAddresses/ip-3184?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d5c47b8b5170a7bb0b671b04e5a49d3d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "664", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:35:10 GMT", + "ETag": "W/\u002271e92ed1-8e0f-48d5-a745-1ccf1d047455\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": "fea28a4d-cae9-4c01-83ef-99fd80d3cd5f", + "x-ms-client-request-id": "d5c47b8b5170a7bb0b671b04e5a49d3d", + "x-ms-correlation-request-id": "12c3d466-9c54-4820-a4e0-bfe0d86ee430", + "x-ms-ratelimit-remaining-subscription-reads": "11725", + "x-ms-request-id": "44cd3ad0-bddb-4f8c-b78e-1a6ef8cbf1d1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073511Z:12c3d466-9c54-4820-a4e0-bfe0d86ee430" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022ip-3184\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/publicIPAddresses/ip-3184\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002271e92ed1-8e0f-48d5-a745-1ccf1d047455\\\u0022\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022cf12151e-bd67-4380-9ac6-86981f12aa37\u0022,\r\n", + " \u0022ipAddress\u0022: \u002220.98.77.111\u0022,\r\n", + " \u0022publicIPAddressVersion\u0022: \u0022IPv4\u0022,\r\n", + " \u0022publicIPAllocationMethod\u0022: \u0022Static\u0022,\r\n", + " \u0022idleTimeoutInMinutes\u0022: 4,\r\n", + " \u0022ipTags\u0022: []\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/publicIPAddresses\u0022,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Standard\u0022,\r\n", + " \u0022tier\u0022: \u0022Regional\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-2544?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "469", + "Content-Type": "application/json", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "772d1ea212759a7c90d87fd612c092c7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "id": null, + "properties": { + "ipConfigurations": [ + { + "name": "bastionIPConfig-5046", + "id": null, + "properties": { + "subnet": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121/subnets/AzureBastionSubnet" + }, + "publicIPAddress": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/publicIPAddresses/ip-3184" + } + } + } + ] + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "1456", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:35:20 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": "e60275a1-e430-4804-9b07-57e4245d860f", + "x-ms-client-request-id": "772d1ea212759a7c90d87fd612c092c7", + "x-ms-correlation-request-id": "da4fd936-21da-4709-b61b-0dd367fb3374", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "3c43f78c-0d2c-410c-9054-3434d4e718ba", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073520Z:da4fd936-21da-4709-b61b-0dd367fb3374" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022bastion-2544\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-2544\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022708f2824-3e9d-463b-8bf7-722d409b8bea\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022scaleUnits\u0022: 2,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022bastionIPConfig-5046\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-2544/bastionHostIpConfigurations/bastionIPConfig-5046\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022708f2824-3e9d-463b-8bf7-722d409b8bea\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts/bastionHostIpConfigurations\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/bastionrg-7251/providers/Microsoft.Network/publicIPAddresses/ip-3184\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121/subnets/AzureBastionSubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022bastionShareableLinks\u0022: {}\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "040c551aa6576915473adf783cd0f8a6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:35:20 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": "1a34ca3e-48ed-4c1d-b0da-21c76e8cfb2e", + "x-ms-client-request-id": "040c551aa6576915473adf783cd0f8a6", + "x-ms-correlation-request-id": "dc66e832-fe74-4420-9650-95f356e537fb", + "x-ms-ratelimit-remaining-subscription-reads": "11724", + "x-ms-request-id": "265f71f4-43bb-4afb-b45d-33321426a8d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073520Z:dc66e832-fe74-4420-9650-95f356e537fb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3ec33c8892cc901adf45f5f913f9e2bb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:35:22 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": "d3436aff-efda-42a7-ba27-d49781feffa4", + "x-ms-client-request-id": "3ec33c8892cc901adf45f5f913f9e2bb", + "x-ms-correlation-request-id": "ce0940a4-1fd5-489a-b75e-7eacaa1984f2", + "x-ms-ratelimit-remaining-subscription-reads": "11723", + "x-ms-request-id": "407cbb66-7077-4111-854c-0ecb26e8d415", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073522Z:ce0940a4-1fd5-489a-b75e-7eacaa1984f2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bdbbcf478db47c705066632c32c6abb1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:35:23 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": "561f8db8-de39-4839-a072-dae3b6b22382", + "x-ms-client-request-id": "bdbbcf478db47c705066632c32c6abb1", + "x-ms-correlation-request-id": "b495848d-9548-41c4-b14d-4885919f6f75", + "x-ms-ratelimit-remaining-subscription-reads": "11722", + "x-ms-request-id": "02ac26ee-70d3-4f41-a432-8ae18ac2a5c3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073523Z:b495848d-9548-41c4-b14d-4885919f6f75" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7bfa5884521188e33a7c2411b01c564e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:35:25 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": "5a3699ba-7c09-48e4-91ac-76c24b99085f", + "x-ms-client-request-id": "7bfa5884521188e33a7c2411b01c564e", + "x-ms-correlation-request-id": "7c49f3d3-2863-4d2b-9aca-7c0a75ff46eb", + "x-ms-ratelimit-remaining-subscription-reads": "11721", + "x-ms-request-id": "ec4993c4-a264-4df4-a4a1-be8d94bde9c5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073525Z:7c49f3d3-2863-4d2b-9aca-7c0a75ff46eb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6d3124583a15fbf1cc46ee662eed5d19", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:35:26 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": "0912fe42-48f5-4474-895d-388cf24ba413", + "x-ms-client-request-id": "6d3124583a15fbf1cc46ee662eed5d19", + "x-ms-correlation-request-id": "84577a96-1e86-4f5f-9613-8977065c4a03", + "x-ms-ratelimit-remaining-subscription-reads": "11720", + "x-ms-request-id": "91023eba-579f-445d-8b8a-2574c0480dd3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073526Z:84577a96-1e86-4f5f-9613-8977065c4a03" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bb74449a66fff4aaeb328337695ecb33", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:35:27 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": "593e246b-dd2c-4071-b03f-cb8c7666f81d", + "x-ms-client-request-id": "bb74449a66fff4aaeb328337695ecb33", + "x-ms-correlation-request-id": "8ea3bbb7-c7cb-49ef-8d38-a8c7218c9c2c", + "x-ms-ratelimit-remaining-subscription-reads": "11719", + "x-ms-request-id": "45a9aaa4-c541-4d38-8d76-f1bad71b4b37", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073527Z:8ea3bbb7-c7cb-49ef-8d38-a8c7218c9c2c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0ed414103e95499b66ffafcb647d5a4c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:35:28 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": "234527b4-cbf6-4e88-8aad-421bda43a6de", + "x-ms-client-request-id": "0ed414103e95499b66ffafcb647d5a4c", + "x-ms-correlation-request-id": "96668be4-7cac-428a-92d9-7c5c3684c29e", + "x-ms-ratelimit-remaining-subscription-reads": "11718", + "x-ms-request-id": "11a2c69f-4407-4c27-ae69-663e33536517", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073528Z:96668be4-7cac-428a-92d9-7c5c3684c29e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6b760b1e9ba7f24f793d81e2b6ba926d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:35:30 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": "29c6a84c-6915-4bdc-9f7d-5c67ecc70a9b", + "x-ms-client-request-id": "6b760b1e9ba7f24f793d81e2b6ba926d", + "x-ms-correlation-request-id": "2cd7f1cc-ba52-44b7-b3dd-ccd18046b60d", + "x-ms-ratelimit-remaining-subscription-reads": "11717", + "x-ms-request-id": "0839151e-c7df-4ffb-9987-e75530bad0ac", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073530Z:2cd7f1cc-ba52-44b7-b3dd-ccd18046b60d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1956ba7a4f195c84a82a54ffb6df8f6e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:35:31 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": "fbdece6a-e6ea-4679-b9a1-127c00fce4f0", + "x-ms-client-request-id": "1956ba7a4f195c84a82a54ffb6df8f6e", + "x-ms-correlation-request-id": "cc015166-2380-4586-b7c5-eee79a82ed18", + "x-ms-ratelimit-remaining-subscription-reads": "11716", + "x-ms-request-id": "4ee9d50d-c7c4-4fb4-8a1a-fe7cf7803e17", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073531Z:cc015166-2380-4586-b7c5-eee79a82ed18" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5d1836d860e7748cc5e29457bdb992ac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "404479f4-17cf-404d-a472-9253318a7589", + "x-ms-client-request-id": "5d1836d860e7748cc5e29457bdb992ac", + "x-ms-correlation-request-id": "a782f932-95ec-4a4c-a39b-3d51f81684ec", + "x-ms-ratelimit-remaining-subscription-reads": "11715", + "x-ms-request-id": "4dc5415a-2caa-4a4f-8e78-380ab9df3c7d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073532Z:a782f932-95ec-4a4c-a39b-3d51f81684ec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a950426d4027cf32861ac27c464f3b9a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "3994fb0f-4707-48d2-b4f7-707a7bc9052c", + "x-ms-client-request-id": "a950426d4027cf32861ac27c464f3b9a", + "x-ms-correlation-request-id": "db17096b-3683-4287-9f14-622046a8a911", + "x-ms-ratelimit-remaining-subscription-reads": "11714", + "x-ms-request-id": "2672f335-2039-4d95-95ab-9fbfbadd314f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073534Z:db17096b-3683-4287-9f14-622046a8a911" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "800912ad34a11a852ee15437ba2c9fef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "72e8fdb7-2a73-478d-9697-3bf2680cd25d", + "x-ms-client-request-id": "800912ad34a11a852ee15437ba2c9fef", + "x-ms-correlation-request-id": "c457619f-46ee-4bb8-a5fb-2388daf3ebb8", + "x-ms-ratelimit-remaining-subscription-reads": "11713", + "x-ms-request-id": "a57704e5-f4f2-40ae-86fa-f5b8ad9599f1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073535Z:c457619f-46ee-4bb8-a5fb-2388daf3ebb8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7492a897e68e98470349d6cd9d102d75", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "1ae4a199-4bcf-4879-81f4-756da436cc6d", + "x-ms-client-request-id": "7492a897e68e98470349d6cd9d102d75", + "x-ms-correlation-request-id": "ccd5c4af-2f06-4650-a7f8-afdf3873c118", + "x-ms-ratelimit-remaining-subscription-reads": "11712", + "x-ms-request-id": "56c57d11-9ab3-4265-8d86-f1d620358076", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073536Z:ccd5c4af-2f06-4650-a7f8-afdf3873c118" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aaaaf9a612af380bbd357b45ebfb145a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0f6286fe-d8c9-4520-9695-0d01fe47bb5b", + "x-ms-client-request-id": "aaaaf9a612af380bbd357b45ebfb145a", + "x-ms-correlation-request-id": "0e59dc93-198c-43b2-abb7-1f47cb8d3b17", + "x-ms-ratelimit-remaining-subscription-reads": "11711", + "x-ms-request-id": "c5c32f12-6bb8-49e8-b184-6582efece231", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073537Z:0e59dc93-198c-43b2-abb7-1f47cb8d3b17" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9ee4d37bc7bdc70bcb717c585db77c1e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "ee393336-1414-4464-b401-556aaaac2931", + "x-ms-client-request-id": "9ee4d37bc7bdc70bcb717c585db77c1e", + "x-ms-correlation-request-id": "54642b37-d097-4782-8040-cdbe6af7652f", + "x-ms-ratelimit-remaining-subscription-reads": "11710", + "x-ms-request-id": "62a32a0a-d863-4bfd-bd6c-ca7d6b2fe437", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073539Z:54642b37-d097-4782-8040-cdbe6af7652f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c191dfb3f482853f9d59b6596a01ad08", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "f384c3a4-bad3-435a-abd2-7e06069c934e", + "x-ms-client-request-id": "c191dfb3f482853f9d59b6596a01ad08", + "x-ms-correlation-request-id": "fdf6c0dd-0d36-4dbf-8754-23c6c0955e4f", + "x-ms-ratelimit-remaining-subscription-reads": "11709", + "x-ms-request-id": "71b8e4d6-daf9-4d2c-bcab-dd5e4ac1fb02", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073540Z:fdf6c0dd-0d36-4dbf-8754-23c6c0955e4f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ca517c348e2bdeb8ede2de3e96b2db05", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "be2e9c7d-aee2-466d-8e0a-c1d7e745e1c4", + "x-ms-client-request-id": "ca517c348e2bdeb8ede2de3e96b2db05", + "x-ms-correlation-request-id": "8c1a3806-0afb-4117-ab3a-f60a5bd37bcb", + "x-ms-ratelimit-remaining-subscription-reads": "11708", + "x-ms-request-id": "8b838360-9ad2-45b5-b192-c9134c1939d7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073541Z:8c1a3806-0afb-4117-ab3a-f60a5bd37bcb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0b925db8536a86d7945f016311b25cca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "38684d3f-1789-4c25-95c7-b59600f6a435", + "x-ms-client-request-id": "0b925db8536a86d7945f016311b25cca", + "x-ms-correlation-request-id": "67ca661e-a657-4693-b3aa-dbf73bf77e37", + "x-ms-ratelimit-remaining-subscription-reads": "11707", + "x-ms-request-id": "509ad67b-bc81-49c4-a1ba-d61508dec948", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073542Z:67ca661e-a657-4693-b3aa-dbf73bf77e37" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e02373c4b26624f227b2d39f1600eeea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "2cdb1900-00db-4a1c-a304-9c467e057d57", + "x-ms-client-request-id": "e02373c4b26624f227b2d39f1600eeea", + "x-ms-correlation-request-id": "7a4b9636-cf57-419a-8d56-41a3cd9b0a35", + "x-ms-ratelimit-remaining-subscription-reads": "11706", + "x-ms-request-id": "3cfa8427-27f3-478c-b63c-4e743b3d70e7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073544Z:7a4b9636-cf57-419a-8d56-41a3cd9b0a35" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0da0b17ea16fe09ea5ca36cc8c54cd3b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "dfcda8eb-7ea6-43c9-9206-1341a76cadf5", + "x-ms-client-request-id": "0da0b17ea16fe09ea5ca36cc8c54cd3b", + "x-ms-correlation-request-id": "30d02800-4dc8-42fb-9011-4bf99862fed9", + "x-ms-ratelimit-remaining-subscription-reads": "11705", + "x-ms-request-id": "263dc2ad-464a-4847-9b45-60b27dd68b62", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073545Z:30d02800-4dc8-42fb-9011-4bf99862fed9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "237a1486fb8f069f6a6de4b780377093", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b4158a1b-26e9-47f5-9b91-854a201de810", + "x-ms-client-request-id": "237a1486fb8f069f6a6de4b780377093", + "x-ms-correlation-request-id": "ab9cc26e-51a9-4656-a4ce-77affcbb4f4a", + "x-ms-ratelimit-remaining-subscription-reads": "11704", + "x-ms-request-id": "a05866ad-ae8b-4167-89c2-3e7cf5972520", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073546Z:ab9cc26e-51a9-4656-a4ce-77affcbb4f4a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5fe417714e12235bd5423b9b7c2597d2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "40f1ede8-04cc-4a9d-ab8b-0b881c61c273", + "x-ms-client-request-id": "5fe417714e12235bd5423b9b7c2597d2", + "x-ms-correlation-request-id": "95f39641-cc32-4baf-bb36-5ddf2674ef64", + "x-ms-ratelimit-remaining-subscription-reads": "11703", + "x-ms-request-id": "cf0ed038-f969-4986-80af-6f3febc60b13", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073548Z:95f39641-cc32-4baf-bb36-5ddf2674ef64" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "011997e4ca86835a129aa202bce6606d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "36bb025e-0d1b-430b-80bd-d4673708efe4", + "x-ms-client-request-id": "011997e4ca86835a129aa202bce6606d", + "x-ms-correlation-request-id": "78f14be5-059a-4f64-94c8-9b01f9f3243b", + "x-ms-ratelimit-remaining-subscription-reads": "11702", + "x-ms-request-id": "7bc8591e-9aff-4445-bebe-719944b38f09", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073549Z:78f14be5-059a-4f64-94c8-9b01f9f3243b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "755ba25a6d703728b9574e4dc0038945", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "3fe528a2-a92b-4d02-9674-f7056f1a8386", + "x-ms-client-request-id": "755ba25a6d703728b9574e4dc0038945", + "x-ms-correlation-request-id": "778e2864-1e25-4016-be2b-6adbd9d25475", + "x-ms-ratelimit-remaining-subscription-reads": "11701", + "x-ms-request-id": "88335ef9-0319-401e-8555-ca34f71fd23c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073550Z:778e2864-1e25-4016-be2b-6adbd9d25475" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e8d212d56e1da60dbd614d78ab5866ee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "508b7c13-abbe-402f-9136-a4da9fb7d10b", + "x-ms-client-request-id": "e8d212d56e1da60dbd614d78ab5866ee", + "x-ms-correlation-request-id": "6b18689e-266a-4a0b-a453-5e8a082ef032", + "x-ms-ratelimit-remaining-subscription-reads": "11700", + "x-ms-request-id": "a1fba9f6-9168-4e8a-ad91-45ac30842dd6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073551Z:6b18689e-266a-4a0b-a453-5e8a082ef032" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d941cde222ca77626ee2482e7c0dc30e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "065f9820-7055-4d14-98e1-a6c3e20a9570", + "x-ms-client-request-id": "d941cde222ca77626ee2482e7c0dc30e", + "x-ms-correlation-request-id": "f8447192-8577-49c3-a437-9eec37c779f9", + "x-ms-ratelimit-remaining-subscription-reads": "11699", + "x-ms-request-id": "56a7bce3-39e2-4e3e-bc0b-f1a0ded4c112", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073553Z:f8447192-8577-49c3-a437-9eec37c779f9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a92c5d107713eb5095b5b70e20b08b60", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "d6a1a562-f518-4f6c-9401-01bed38f5b2c", + "x-ms-client-request-id": "a92c5d107713eb5095b5b70e20b08b60", + "x-ms-correlation-request-id": "76593b68-394d-43c4-bd8e-2749f1750a80", + "x-ms-ratelimit-remaining-subscription-reads": "11698", + "x-ms-request-id": "befe01ff-b495-4e12-a071-8dd303ba4753", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073554Z:76593b68-394d-43c4-bd8e-2749f1750a80" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f36a5ff0afc2b27ab05b7a3b25de29af", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "72ca71f7-869b-4fc3-8d77-b2406aea9f72", + "x-ms-client-request-id": "f36a5ff0afc2b27ab05b7a3b25de29af", + "x-ms-correlation-request-id": "2a002c30-a33b-4a3a-a8fa-f300e415b626", + "x-ms-ratelimit-remaining-subscription-reads": "11697", + "x-ms-request-id": "f3117b9d-f209-4722-b372-157a19f79e90", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073555Z:2a002c30-a33b-4a3a-a8fa-f300e415b626" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4e673e9ebc2c6ada7c5544156a5356be", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "f34ecc32-93d4-47ad-b4a6-727315d6fb92", + "x-ms-client-request-id": "4e673e9ebc2c6ada7c5544156a5356be", + "x-ms-correlation-request-id": "316bbaa4-b9d1-45d8-8176-eff701f9a70d", + "x-ms-ratelimit-remaining-subscription-reads": "11696", + "x-ms-request-id": "a3feb148-eb9f-48db-acf6-ac5b040921b6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073557Z:316bbaa4-b9d1-45d8-8176-eff701f9a70d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1d3de856d0a2604ce27af9b8fd14c5b6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "3d935ac5-ec62-4365-b2e6-20ebfc48eb94", + "x-ms-client-request-id": "1d3de856d0a2604ce27af9b8fd14c5b6", + "x-ms-correlation-request-id": "a0a0f67e-bf88-413d-b942-a3d37cf6df3d", + "x-ms-ratelimit-remaining-subscription-reads": "11695", + "x-ms-request-id": "e938751d-02f2-42b6-94ce-114278b544cb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073558Z:a0a0f67e-bf88-413d-b942-a3d37cf6df3d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e16f088b3d48333484ff766c6b65475c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b36493cd-6c99-4b6c-b34d-0fa84ddd664c", + "x-ms-client-request-id": "e16f088b3d48333484ff766c6b65475c", + "x-ms-correlation-request-id": "9c3a3c06-f996-4260-abb8-dc90dc6d38f0", + "x-ms-ratelimit-remaining-subscription-reads": "11694", + "x-ms-request-id": "946d1807-7d6a-4a26-ba96-c2193cd3e825", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073559Z:9c3a3c06-f996-4260-abb8-dc90dc6d38f0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3de5bb040ca1ce0df2076bb1c2226d68", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "8a51b48f-ca58-4536-9985-c7b9364b9af4", + "x-ms-client-request-id": "3de5bb040ca1ce0df2076bb1c2226d68", + "x-ms-correlation-request-id": "5ca9c666-d7c4-4aac-bf1d-5e3cb5dbcf4e", + "x-ms-ratelimit-remaining-subscription-reads": "11693", + "x-ms-request-id": "328562e1-9009-4b6a-9047-b5bf42ade27c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073600Z:5ca9c666-d7c4-4aac-bf1d-5e3cb5dbcf4e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "628a8d9075e41875b30998a25ae0f47c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "ccf29f3f-854d-4434-b501-c34b29620088", + "x-ms-client-request-id": "628a8d9075e41875b30998a25ae0f47c", + "x-ms-correlation-request-id": "aa1657e7-9c2c-4741-9822-8d9aa726b9ae", + "x-ms-ratelimit-remaining-subscription-reads": "11692", + "x-ms-request-id": "7891efdb-5d6c-42ce-b74c-5f79e42f2bb7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073602Z:aa1657e7-9c2c-4741-9822-8d9aa726b9ae" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "41b39d32872f7e15fba1ee41d1827061", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "edc9cdd9-14df-425c-83aa-6df9a6f90a02", + "x-ms-client-request-id": "41b39d32872f7e15fba1ee41d1827061", + "x-ms-correlation-request-id": "5c803716-a3bb-4fe5-8dfa-a4805a3b4939", + "x-ms-ratelimit-remaining-subscription-reads": "11691", + "x-ms-request-id": "f22b9cc8-a5de-4420-864e-988b6b051b6b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073603Z:5c803716-a3bb-4fe5-8dfa-a4805a3b4939" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dddc0d92e4db8f7846cc8997746a7412", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "866960f7-569e-4aab-aea6-bd1251ab36af", + "x-ms-client-request-id": "dddc0d92e4db8f7846cc8997746a7412", + "x-ms-correlation-request-id": "fb94ae10-d810-4d51-adf9-e1d58510cc7b", + "x-ms-ratelimit-remaining-subscription-reads": "11690", + "x-ms-request-id": "c9797a23-5efe-4968-ae90-863e5f3e9516", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073604Z:fb94ae10-d810-4d51-adf9-e1d58510cc7b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "257eee122c6f0839780b674287334631", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "aaeaad5a-a503-4c32-a15d-a75a43d78439", + "x-ms-client-request-id": "257eee122c6f0839780b674287334631", + "x-ms-correlation-request-id": "6cddc28e-2a3a-43ec-a5ce-abc6e602bfb9", + "x-ms-ratelimit-remaining-subscription-reads": "11689", + "x-ms-request-id": "65d5b628-33a9-44ef-ba98-ad3100d985fd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073606Z:6cddc28e-2a3a-43ec-a5ce-abc6e602bfb9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4c10369917034da12524fa62fe7e0a90", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "63857422-8481-4235-a528-33c924a0ad94", + "x-ms-client-request-id": "4c10369917034da12524fa62fe7e0a90", + "x-ms-correlation-request-id": "1e520779-bdf8-4852-8237-a3677f22dad6", + "x-ms-ratelimit-remaining-subscription-reads": "11688", + "x-ms-request-id": "fe1083a9-5d6a-4a02-8c1b-e16ac2e0596e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073607Z:1e520779-bdf8-4852-8237-a3677f22dad6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e32fdc2d4b0366f2d4d465d07d350713", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "3531aaa6-6c28-4ee8-bf71-9a07a19e6e4a", + "x-ms-client-request-id": "e32fdc2d4b0366f2d4d465d07d350713", + "x-ms-correlation-request-id": "75df2aa0-8ae2-4e24-970f-e7febd9eef03", + "x-ms-ratelimit-remaining-subscription-reads": "11687", + "x-ms-request-id": "03313948-dd26-4068-b584-7e54be0f3a33", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073608Z:75df2aa0-8ae2-4e24-970f-e7febd9eef03" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3dfe58862859fb0e4d30ff4b31d609f9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "77b73f9a-bb61-4876-b8ba-7def82699129", + "x-ms-client-request-id": "3dfe58862859fb0e4d30ff4b31d609f9", + "x-ms-correlation-request-id": "3342443c-168a-41d1-8693-29c8c85eace8", + "x-ms-ratelimit-remaining-subscription-reads": "11686", + "x-ms-request-id": "a5b91e16-cd17-417c-be0e-b6cbff166e77", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073610Z:3342443c-168a-41d1-8693-29c8c85eace8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aa14d60163044d2d44aa772fb1d1d0ef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0e7b3190-0bfc-4767-a8fe-4ccf41373fc7", + "x-ms-client-request-id": "aa14d60163044d2d44aa772fb1d1d0ef", + "x-ms-correlation-request-id": "658fe6ed-22c8-4971-8fa6-6fb98e223aa8", + "x-ms-ratelimit-remaining-subscription-reads": "11685", + "x-ms-request-id": "e6e92729-9cff-4d90-ab76-3daac62c2851", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073611Z:658fe6ed-22c8-4971-8fa6-6fb98e223aa8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a5dce71ccc800537cd3495d34ca634fe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "7384a241-4850-4de8-9651-b791efbcd63f", + "x-ms-client-request-id": "a5dce71ccc800537cd3495d34ca634fe", + "x-ms-correlation-request-id": "94aca263-8c32-42be-971a-30817cbdf301", + "x-ms-ratelimit-remaining-subscription-reads": "11684", + "x-ms-request-id": "ea566b78-c2fd-4b20-a081-ee76ae637238", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073612Z:94aca263-8c32-42be-971a-30817cbdf301" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a7cf6bca5d21220e2bb0f8afb0df497c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "c96c5720-25be-4211-ae11-d66d85c8466b", + "x-ms-client-request-id": "a7cf6bca5d21220e2bb0f8afb0df497c", + "x-ms-correlation-request-id": "5c90951e-14db-4900-a98b-5995fa32dc84", + "x-ms-ratelimit-remaining-subscription-reads": "11683", + "x-ms-request-id": "acf9b8d3-329a-4c7e-aefe-acab91bdda33", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073614Z:5c90951e-14db-4900-a98b-5995fa32dc84" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4a2f0f6064fa34799f0fddcfcd5a009d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "26ee9202-e68a-43de-ac93-771ea1ca0327", + "x-ms-client-request-id": "4a2f0f6064fa34799f0fddcfcd5a009d", + "x-ms-correlation-request-id": "21c6a63c-8206-401d-b4b0-2578e6d1de95", + "x-ms-ratelimit-remaining-subscription-reads": "11682", + "x-ms-request-id": "479c8a0b-472e-47c9-b618-8645e8452955", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073615Z:21c6a63c-8206-401d-b4b0-2578e6d1de95" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "456578752802beced8b979cfd38754ee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b16202ab-3878-4d94-9057-f11495a59e36", + "x-ms-client-request-id": "456578752802beced8b979cfd38754ee", + "x-ms-correlation-request-id": "599d0762-d460-4212-8457-1336faf7162d", + "x-ms-ratelimit-remaining-subscription-reads": "11681", + "x-ms-request-id": "92935157-0553-4f6d-b4c5-7465b04ec2f6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073616Z:599d0762-d460-4212-8457-1336faf7162d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3c7219eaea776504f29a0712803e55d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "a343ed33-cda8-45a8-88da-e3c9635d4992", + "x-ms-client-request-id": "3c7219eaea776504f29a0712803e55d1", + "x-ms-correlation-request-id": "ad620f37-8460-42a2-b62a-04f1d5d7a826", + "x-ms-ratelimit-remaining-subscription-reads": "11680", + "x-ms-request-id": "6f377d8d-96e8-4db5-8c12-bcce97a7ceb3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073618Z:ad620f37-8460-42a2-b62a-04f1d5d7a826" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "38395bb0037a377a40707140eba96017", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "1e98e4fe-d729-46e4-ae0e-f958d1545ae4", + "x-ms-client-request-id": "38395bb0037a377a40707140eba96017", + "x-ms-correlation-request-id": "59848d97-bfe7-4d20-8658-32a2c15bed0b", + "x-ms-ratelimit-remaining-subscription-reads": "11679", + "x-ms-request-id": "7f1fa09e-9768-42ad-b0fe-35aa639e083d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073619Z:59848d97-bfe7-4d20-8658-32a2c15bed0b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b3e5eebac3e78b2674ff536721bc3e99", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "c48c0d9d-6f36-4883-ae81-0b7f03245f39", + "x-ms-client-request-id": "b3e5eebac3e78b2674ff536721bc3e99", + "x-ms-correlation-request-id": "8f872424-ec99-4e9e-b7f1-4083f980e349", + "x-ms-ratelimit-remaining-subscription-reads": "11678", + "x-ms-request-id": "466d63ed-588d-4bb3-8248-5eea7036f07e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073620Z:8f872424-ec99-4e9e-b7f1-4083f980e349" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "781fa8641c4de6749f3afc0778c37a48", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "c82a0843-8142-47a6-9e36-f2192e6197e5", + "x-ms-client-request-id": "781fa8641c4de6749f3afc0778c37a48", + "x-ms-correlation-request-id": "ce32d71f-8750-46c2-bbfa-624606f8774f", + "x-ms-ratelimit-remaining-subscription-reads": "11677", + "x-ms-request-id": "adc2c3c3-820c-44e9-9448-d4daa0267aa4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073622Z:ce32d71f-8750-46c2-bbfa-624606f8774f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9157f03aa159ece934aec37aaf131684", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "769f5cf8-275f-4f92-9e1f-f00d5a220bf9", + "x-ms-client-request-id": "9157f03aa159ece934aec37aaf131684", + "x-ms-correlation-request-id": "00b448a0-cf1f-4f77-8f9a-32041158db59", + "x-ms-ratelimit-remaining-subscription-reads": "11676", + "x-ms-request-id": "5ddc932f-1249-4493-ad77-57af48a766da", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073623Z:00b448a0-cf1f-4f77-8f9a-32041158db59" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "42dbd731e78a9ec97afe14adc71f12b1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "ecc1165e-aa96-494f-9fbb-5e23562a567d", + "x-ms-client-request-id": "42dbd731e78a9ec97afe14adc71f12b1", + "x-ms-correlation-request-id": "457c13aa-3f42-4fa1-bc89-5b81b839fe2f", + "x-ms-ratelimit-remaining-subscription-reads": "11675", + "x-ms-request-id": "4e2fd5e9-cfae-4f31-a0d0-41feee106b7f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073624Z:457c13aa-3f42-4fa1-bc89-5b81b839fe2f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "302c0b84ad64c33fbe33449f59f9368c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "c6042de9-77ad-4b51-a989-635e8cbbb759", + "x-ms-client-request-id": "302c0b84ad64c33fbe33449f59f9368c", + "x-ms-correlation-request-id": "07f64d2d-bf29-4fa2-bd92-5e54689255f6", + "x-ms-ratelimit-remaining-subscription-reads": "11674", + "x-ms-request-id": "e94fdc72-ee20-4b9f-b786-efe301d11935", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073625Z:07f64d2d-bf29-4fa2-bd92-5e54689255f6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a0d5772337e753bd26b9165b8c3c2415", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e0ce48dc-d957-4212-b5e8-94c9a52fe22d", + "x-ms-client-request-id": "a0d5772337e753bd26b9165b8c3c2415", + "x-ms-correlation-request-id": "52f83a55-05c8-48e6-8992-7b2dd96d55f2", + "x-ms-ratelimit-remaining-subscription-reads": "11673", + "x-ms-request-id": "4481e51e-55d9-4305-b15a-3ea9d1a0d2d3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073627Z:52f83a55-05c8-48e6-8992-7b2dd96d55f2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a4f6129ce6e6841f98188457a32a4481", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "6f823b74-62a0-4d82-aff4-c29ebe587fbf", + "x-ms-client-request-id": "a4f6129ce6e6841f98188457a32a4481", + "x-ms-correlation-request-id": "690ae1e7-981b-4c66-a333-1991dec606d9", + "x-ms-ratelimit-remaining-subscription-reads": "11672", + "x-ms-request-id": "bb6890e1-c554-4ce3-9700-4478a5de20cd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073628Z:690ae1e7-981b-4c66-a333-1991dec606d9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4f8988c771494cc94dd90aab96e43681", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "1083459c-6f20-4924-ba64-96ca107f8bef", + "x-ms-client-request-id": "4f8988c771494cc94dd90aab96e43681", + "x-ms-correlation-request-id": "1c4f9d4a-4ee5-4c48-8839-5b7b49c60552", + "x-ms-ratelimit-remaining-subscription-reads": "11671", + "x-ms-request-id": "13def122-ab9f-43ed-badb-c163cc5f7a73", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073629Z:1c4f9d4a-4ee5-4c48-8839-5b7b49c60552" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "47022e0e92033da5585108cfb366affb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "ed1215b4-8bbb-4c02-8d98-48ce5d9c896e", + "x-ms-client-request-id": "47022e0e92033da5585108cfb366affb", + "x-ms-correlation-request-id": "884642e7-b4f8-47a8-a758-767212438bb2", + "x-ms-ratelimit-remaining-subscription-reads": "11670", + "x-ms-request-id": "51914ee8-643c-4fd0-bf8d-9c04375aed2a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073630Z:884642e7-b4f8-47a8-a758-767212438bb2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "04939574d4b22bcc48a9560ddb74edb3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "00d44346-2d63-479a-9cfc-f4165a4b0e1c", + "x-ms-client-request-id": "04939574d4b22bcc48a9560ddb74edb3", + "x-ms-correlation-request-id": "ba1c1179-fe75-4deb-81e9-abcfc24edf80", + "x-ms-ratelimit-remaining-subscription-reads": "11669", + "x-ms-request-id": "320e7bd0-ba06-40a1-a590-851d5c7ded07", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073632Z:ba1c1179-fe75-4deb-81e9-abcfc24edf80" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "744802e2fd28357ee24bf7f768fa99e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "a2c9e53c-e6d2-4e32-a899-00d9c1f61ed1", + "x-ms-client-request-id": "744802e2fd28357ee24bf7f768fa99e7", + "x-ms-correlation-request-id": "65a9d857-727b-4b90-93f3-2da1d52fd53b", + "x-ms-ratelimit-remaining-subscription-reads": "11668", + "x-ms-request-id": "f30acf80-8ba3-442f-ab68-15a786dd08fe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073633Z:65a9d857-727b-4b90-93f3-2da1d52fd53b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "00360e29315139cf62d7fe593b9861e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b385dd24-983f-44c3-aaa8-de716f770dae", + "x-ms-client-request-id": "00360e29315139cf62d7fe593b9861e4", + "x-ms-correlation-request-id": "994c8add-6688-4229-9724-b9d1095160f0", + "x-ms-ratelimit-remaining-subscription-reads": "11667", + "x-ms-request-id": "024f8740-6611-4c85-9cd0-188c2dbf90bb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073634Z:994c8add-6688-4229-9724-b9d1095160f0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b0ec55633b1d76d3175e2166ddd4c24e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "79e7060c-8ef1-4eb8-841c-a3f01a829ae2", + "x-ms-client-request-id": "b0ec55633b1d76d3175e2166ddd4c24e", + "x-ms-correlation-request-id": "a766e14b-c9b5-4a3f-bd72-3eff1ab6426c", + "x-ms-ratelimit-remaining-subscription-reads": "11666", + "x-ms-request-id": "94f4723b-9796-482b-af72-8b16b5dce21e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073636Z:a766e14b-c9b5-4a3f-bd72-3eff1ab6426c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cde36f0fed3db061330e1250ff24f94a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "7100508e-82a7-49b7-9d7f-7c090e0e605c", + "x-ms-client-request-id": "cde36f0fed3db061330e1250ff24f94a", + "x-ms-correlation-request-id": "4f643bca-85b2-4144-97fc-7953be7fd635", + "x-ms-ratelimit-remaining-subscription-reads": "11665", + "x-ms-request-id": "b1d0a3db-33e4-4f94-8a2a-f2428e59adde", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073637Z:4f643bca-85b2-4144-97fc-7953be7fd635" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "129313eae90deec93bbfe9f20f685c8d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "d3231a37-1caa-46c9-84c5-0e50c18998ce", + "x-ms-client-request-id": "129313eae90deec93bbfe9f20f685c8d", + "x-ms-correlation-request-id": "ac72df54-e881-4321-bc42-45b014434a58", + "x-ms-ratelimit-remaining-subscription-reads": "11664", + "x-ms-request-id": "dd207097-0947-43d1-b5fa-7261a1ca62d3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073638Z:ac72df54-e881-4321-bc42-45b014434a58" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cc4aaf1494b476a6f33c7c0f288377f2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "4962e023-f65a-4c3e-b060-c168d7c0d728", + "x-ms-client-request-id": "cc4aaf1494b476a6f33c7c0f288377f2", + "x-ms-correlation-request-id": "2b63bf1f-c590-4ef5-90dc-6bc69af1bb90", + "x-ms-ratelimit-remaining-subscription-reads": "11663", + "x-ms-request-id": "885d152c-f532-45dc-b5d9-777e6ec5266c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073639Z:2b63bf1f-c590-4ef5-90dc-6bc69af1bb90" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ca7cd765b0402641a6f5927e046fa0cb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "53b51f90-3a2d-4661-81c9-8b7774cdd722", + "x-ms-client-request-id": "ca7cd765b0402641a6f5927e046fa0cb", + "x-ms-correlation-request-id": "5e03aa43-2d74-48cc-9982-3af69edc831e", + "x-ms-ratelimit-remaining-subscription-reads": "11662", + "x-ms-request-id": "af25f114-ae33-41eb-83ef-fbedc1cde693", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073641Z:5e03aa43-2d74-48cc-9982-3af69edc831e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4f3b85b22dda55956c1c1ed16cbac6b7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "4f283318-3728-440c-b355-70112222c7bb", + "x-ms-client-request-id": "4f3b85b22dda55956c1c1ed16cbac6b7", + "x-ms-correlation-request-id": "7a2b2e5e-9957-431c-8216-727def7b06f0", + "x-ms-ratelimit-remaining-subscription-reads": "11661", + "x-ms-request-id": "06f46d53-bdae-4421-bb37-bb7cbc817c81", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073642Z:7a2b2e5e-9957-431c-8216-727def7b06f0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "388df64892eb644c6e2325be02287284", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "f0c0f03e-47d8-4640-b815-480d6582d642", + "x-ms-client-request-id": "388df64892eb644c6e2325be02287284", + "x-ms-correlation-request-id": "79c7673b-753a-4ad2-9b8d-a25f6d12c46d", + "x-ms-ratelimit-remaining-subscription-reads": "11660", + "x-ms-request-id": "b34d5308-4f8b-4c0f-97df-e1508874b2e5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073643Z:79c7673b-753a-4ad2-9b8d-a25f6d12c46d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a25cb19b2747381841275d249170b9ec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "1838ff31-04d7-44d6-84e6-db164ef4b5ba", + "x-ms-client-request-id": "a25cb19b2747381841275d249170b9ec", + "x-ms-correlation-request-id": "e4a2a3f1-fda3-48b5-86b9-9f510ff592cd", + "x-ms-ratelimit-remaining-subscription-reads": "11659", + "x-ms-request-id": "40ee3199-e460-48f8-a8a8-43733544148c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073645Z:e4a2a3f1-fda3-48b5-86b9-9f510ff592cd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0d35da2f68e120df38d7e1b607d65344", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "633411b3-61b3-47e4-a1e1-f2a9ef0d1915", + "x-ms-client-request-id": "0d35da2f68e120df38d7e1b607d65344", + "x-ms-correlation-request-id": "c84ef6fe-dd3d-497a-9394-04eb75a9e081", + "x-ms-ratelimit-remaining-subscription-reads": "11658", + "x-ms-request-id": "87d2d6fa-1fbc-4796-8f32-c47a6afd500e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073646Z:c84ef6fe-dd3d-497a-9394-04eb75a9e081" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ba3599aa235d2170dd55f6c43428d3fe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "4c2479e3-60fa-45cf-8709-74ef540e00ba", + "x-ms-client-request-id": "ba3599aa235d2170dd55f6c43428d3fe", + "x-ms-correlation-request-id": "515b61b1-36f6-443f-a997-c1fc8f97aef1", + "x-ms-ratelimit-remaining-subscription-reads": "11657", + "x-ms-request-id": "2ce9b624-020e-41e0-89af-64695ef1eb71", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073647Z:515b61b1-36f6-443f-a997-c1fc8f97aef1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "288f396964f233a3d23b6a704561306b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "bb55e69d-e443-4d20-a81f-ef0b0059ecf3", + "x-ms-client-request-id": "288f396964f233a3d23b6a704561306b", + "x-ms-correlation-request-id": "7cbae0a6-9923-422f-ae43-5630a5f2bc4d", + "x-ms-ratelimit-remaining-subscription-reads": "11656", + "x-ms-request-id": "b8e47664-10ce-4b3c-82b9-96a99a59f771", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073648Z:7cbae0a6-9923-422f-ae43-5630a5f2bc4d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f77918d4ff3a0c8e69142f8b721aeb10", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "9c4b34f0-4d28-4b16-b069-5c25af6b3871", + "x-ms-client-request-id": "f77918d4ff3a0c8e69142f8b721aeb10", + "x-ms-correlation-request-id": "1d4ebcfe-bc39-4727-b6d5-61f850188284", + "x-ms-ratelimit-remaining-subscription-reads": "11655", + "x-ms-request-id": "f3419cae-665f-4a4d-986f-2f553d1e177f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073650Z:1d4ebcfe-bc39-4727-b6d5-61f850188284" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cd4ce2032a474551f602e822b900db7c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "c8b605f0-d25f-43ab-9a62-18ecac352127", + "x-ms-client-request-id": "cd4ce2032a474551f602e822b900db7c", + "x-ms-correlation-request-id": "d3562165-75c9-45ab-a3d5-f93c9564ea8c", + "x-ms-ratelimit-remaining-subscription-reads": "11654", + "x-ms-request-id": "62133fa5-87d6-4577-8831-b0ef5b9daf77", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073651Z:d3562165-75c9-45ab-a3d5-f93c9564ea8c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1cf08a24dbae6ac3ab83bede3517c0b7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "d3d42f23-2b7d-45b7-8cb4-ac47fb59495a", + "x-ms-client-request-id": "1cf08a24dbae6ac3ab83bede3517c0b7", + "x-ms-correlation-request-id": "36d5eabb-2abb-4d6b-b17a-1907b1172cbf", + "x-ms-ratelimit-remaining-subscription-reads": "11653", + "x-ms-request-id": "91c0e928-8e89-4867-961e-ee7c1fadc432", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073652Z:36d5eabb-2abb-4d6b-b17a-1907b1172cbf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "636c594f6214a923c6340138176b5369", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "bb38529f-d412-41fe-bd95-5464da8f0e99", + "x-ms-client-request-id": "636c594f6214a923c6340138176b5369", + "x-ms-correlation-request-id": "29b6b014-2cdf-40b8-a09b-db18ab3e9e73", + "x-ms-ratelimit-remaining-subscription-reads": "11652", + "x-ms-request-id": "5c01cf93-1d75-47ae-969a-5217bf6ae65a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073653Z:29b6b014-2cdf-40b8-a09b-db18ab3e9e73" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e766b338cf2a28621ee222c46c7210de", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "08807a88-38db-4f38-8fed-32ab4e12fa5a", + "x-ms-client-request-id": "e766b338cf2a28621ee222c46c7210de", + "x-ms-correlation-request-id": "e8f1fa1e-c662-46ec-b10b-bd3b5f8f4b53", + "x-ms-ratelimit-remaining-subscription-reads": "11651", + "x-ms-request-id": "4b26ddf0-f3e0-4957-939c-71b058ca474b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073655Z:e8f1fa1e-c662-46ec-b10b-bd3b5f8f4b53" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5fd230417893c16767475579da8b533f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "28456a4c-2bf3-4aa4-b357-f61744e6b275", + "x-ms-client-request-id": "5fd230417893c16767475579da8b533f", + "x-ms-correlation-request-id": "e81c8ac2-c861-4195-9052-0da42fa3bba9", + "x-ms-ratelimit-remaining-subscription-reads": "11650", + "x-ms-request-id": "f0120136-3d7f-47be-bc2a-235a3da7855e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073656Z:e81c8ac2-c861-4195-9052-0da42fa3bba9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "81a6542fd8b1808df7444432405f3c54", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "26e5221a-1b69-4021-83f7-531aad33b216", + "x-ms-client-request-id": "81a6542fd8b1808df7444432405f3c54", + "x-ms-correlation-request-id": "2c0047f0-3335-4feb-8afd-d2beeb470c40", + "x-ms-ratelimit-remaining-subscription-reads": "11649", + "x-ms-request-id": "54f3c2e3-4a48-49c2-80f0-6b0bb372dd50", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073657Z:2c0047f0-3335-4feb-8afd-d2beeb470c40" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e6f62224f399c0d64ba480e37ae84e93", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "8a44943e-0262-4a84-8e91-fa648fd4a2f2", + "x-ms-client-request-id": "e6f62224f399c0d64ba480e37ae84e93", + "x-ms-correlation-request-id": "37f34879-3d4d-4480-bce1-9841babb54ba", + "x-ms-ratelimit-remaining-subscription-reads": "11648", + "x-ms-request-id": "4b81685b-7c7e-49f9-a6d4-3e322805035a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073659Z:37f34879-3d4d-4480-bce1-9841babb54ba" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1794e38e8ecc682da352674f34358108", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "80fedb07-2600-4e4a-b2ca-5ef0c03cc3c7", + "x-ms-client-request-id": "1794e38e8ecc682da352674f34358108", + "x-ms-correlation-request-id": "565647fa-fa4c-4194-9f4a-96ccfbdce679", + "x-ms-ratelimit-remaining-subscription-reads": "11647", + "x-ms-request-id": "b76f8620-330f-4f9f-94fe-26b945370e50", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073700Z:565647fa-fa4c-4194-9f4a-96ccfbdce679" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b754010a6c943ba67ee5350c58aa050f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "5f4f72f3-cf92-4388-8571-23df0dc0a8f9", + "x-ms-client-request-id": "b754010a6c943ba67ee5350c58aa050f", + "x-ms-correlation-request-id": "06bd688a-bb2b-41cb-80d2-7bf71007e922", + "x-ms-ratelimit-remaining-subscription-reads": "11646", + "x-ms-request-id": "3503ab52-f6fd-4680-a918-4ae13dce2aaa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073701Z:06bd688a-bb2b-41cb-80d2-7bf71007e922" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5da3b0f525ca9687f58d43468c868c16", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "de1f7e43-0dad-4ed9-ae73-2e1e5c2dfd10", + "x-ms-client-request-id": "5da3b0f525ca9687f58d43468c868c16", + "x-ms-correlation-request-id": "accefe76-d67c-4bc7-b50c-66f99da34b4b", + "x-ms-ratelimit-remaining-subscription-reads": "11645", + "x-ms-request-id": "b824c3a0-a3b9-41c0-ae8d-ecd2369193d8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073702Z:accefe76-d67c-4bc7-b50c-66f99da34b4b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "78d97723969321fe3d5998e6582010f9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "8ca1e161-bbb3-4b96-aad6-b1e7cb6f00f9", + "x-ms-client-request-id": "78d97723969321fe3d5998e6582010f9", + "x-ms-correlation-request-id": "6b2e2858-7d3e-46a2-91e3-757ba012fec5", + "x-ms-ratelimit-remaining-subscription-reads": "11644", + "x-ms-request-id": "2b496420-7af6-4745-b47f-d54b1172807f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073704Z:6b2e2858-7d3e-46a2-91e3-757ba012fec5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8359584c2492e43e7abec107295faff8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "5b8662fb-94ae-40e8-9f80-7024387a4d81", + "x-ms-client-request-id": "8359584c2492e43e7abec107295faff8", + "x-ms-correlation-request-id": "b034e290-a1a2-4431-a66b-b70677f1bc47", + "x-ms-ratelimit-remaining-subscription-reads": "11643", + "x-ms-request-id": "ee047c80-7257-481f-af3d-2cd37b17e85d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073705Z:b034e290-a1a2-4431-a66b-b70677f1bc47" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e0e91f598cd05e7bb1811f718ca03dd4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "178b5f57-02c0-4456-844c-e633e681070d", + "x-ms-client-request-id": "e0e91f598cd05e7bb1811f718ca03dd4", + "x-ms-correlation-request-id": "00856a45-e478-4270-9a5c-13f98832295c", + "x-ms-ratelimit-remaining-subscription-reads": "11642", + "x-ms-request-id": "c3c02913-3aee-4400-af00-f376896066fe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073706Z:00856a45-e478-4270-9a5c-13f98832295c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "33f94a7d082cfe8439f4fed4d5f7f8dd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "ef842786-7f09-48be-9a17-3b9d8aa2a48a", + "x-ms-client-request-id": "33f94a7d082cfe8439f4fed4d5f7f8dd", + "x-ms-correlation-request-id": "3721cc9a-7b64-4510-8b7c-5775fcc34bf0", + "x-ms-ratelimit-remaining-subscription-reads": "11641", + "x-ms-request-id": "87ce5594-0da5-42db-b479-391da48cbe21", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073708Z:3721cc9a-7b64-4510-8b7c-5775fcc34bf0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "398ca0a92f37bf28ddfad11004cd58d9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b0b3051f-b126-4c32-a3ac-9f98498e43d0", + "x-ms-client-request-id": "398ca0a92f37bf28ddfad11004cd58d9", + "x-ms-correlation-request-id": "46298496-07b5-4f44-8c04-72283c4a017c", + "x-ms-ratelimit-remaining-subscription-reads": "11640", + "x-ms-request-id": "2627bed0-de20-4522-8900-a4cc69562551", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073709Z:46298496-07b5-4f44-8c04-72283c4a017c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "df89ec817c6651cb9beaa7dc8ea689ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e4a37c59-9eea-40cd-90cf-d3ec0f55a0ef", + "x-ms-client-request-id": "df89ec817c6651cb9beaa7dc8ea689ba", + "x-ms-correlation-request-id": "d4d0b9e8-790d-49c0-a0d4-eb011a055f53", + "x-ms-ratelimit-remaining-subscription-reads": "11639", + "x-ms-request-id": "585e2e06-a809-4ce4-9509-ba177abe84f5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073710Z:d4d0b9e8-790d-49c0-a0d4-eb011a055f53" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ebc7428904134e9d213955323673f96c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "57bc99f1-0977-47ba-813a-e8313f642aed", + "x-ms-client-request-id": "ebc7428904134e9d213955323673f96c", + "x-ms-correlation-request-id": "87a6ba87-6dfc-40d6-a25f-4681db6a7668", + "x-ms-ratelimit-remaining-subscription-reads": "11638", + "x-ms-request-id": "c37c85f6-6e4b-432b-9dc2-6cbac36674cb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073711Z:87a6ba87-6dfc-40d6-a25f-4681db6a7668" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e853259b186e2c77d53b9d4c874b3136", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "f00473a9-4138-4a4e-a3f7-eed3ce65f5d9", + "x-ms-client-request-id": "e853259b186e2c77d53b9d4c874b3136", + "x-ms-correlation-request-id": "45a0cf50-1d89-42c5-ad07-79f48ab6d196", + "x-ms-ratelimit-remaining-subscription-reads": "11637", + "x-ms-request-id": "55edaad3-d06c-4dbe-be53-453e6788ad36", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073713Z:45a0cf50-1d89-42c5-ad07-79f48ab6d196" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c28617716c057dc54f3abd2c26981a27", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "18b07f5e-7798-4b7e-a176-6862fcf5f6a7", + "x-ms-client-request-id": "c28617716c057dc54f3abd2c26981a27", + "x-ms-correlation-request-id": "5409cd43-7fec-40e1-a63a-a7013bcd6c97", + "x-ms-ratelimit-remaining-subscription-reads": "11636", + "x-ms-request-id": "d12699e1-d0f5-4896-870f-71ea52912f1d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073714Z:5409cd43-7fec-40e1-a63a-a7013bcd6c97" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "68413af0a153714cca9a15d86651c6d6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "85a43faf-d957-4dec-8e43-c03f85ac56da", + "x-ms-client-request-id": "68413af0a153714cca9a15d86651c6d6", + "x-ms-correlation-request-id": "ecbfd337-ff68-4440-9d3a-6add83c28508", + "x-ms-ratelimit-remaining-subscription-reads": "11635", + "x-ms-request-id": "37a29273-5a0c-4c98-bb01-425f25de6d65", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073715Z:ecbfd337-ff68-4440-9d3a-6add83c28508" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1fc01e0737ed2e675fd599335a4b053c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "521f7751-1aa7-4d16-a907-55b3064b37f7", + "x-ms-client-request-id": "1fc01e0737ed2e675fd599335a4b053c", + "x-ms-correlation-request-id": "9288c7e3-9bd7-4d23-9eeb-45dd45909af5", + "x-ms-ratelimit-remaining-subscription-reads": "11634", + "x-ms-request-id": "6c1df300-b080-4c87-8df9-500423b57f42", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073717Z:9288c7e3-9bd7-4d23-9eeb-45dd45909af5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4d5b7620c80ad0e3cb15f86a56ed17fd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "cb73b872-43e5-4b32-a6a3-d5785a808cf7", + "x-ms-client-request-id": "4d5b7620c80ad0e3cb15f86a56ed17fd", + "x-ms-correlation-request-id": "496da589-1b2d-4e91-b1c8-5d72fe8e0305", + "x-ms-ratelimit-remaining-subscription-reads": "11633", + "x-ms-request-id": "872d5748-2e29-4886-9a8a-2d131669478f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073718Z:496da589-1b2d-4e91-b1c8-5d72fe8e0305" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0724e774fbd8b93ad312097d0718167f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "95ef300a-c022-447e-9d36-de14910497c6", + "x-ms-client-request-id": "0724e774fbd8b93ad312097d0718167f", + "x-ms-correlation-request-id": "09fc9287-7063-4dec-b564-6f457c4889ca", + "x-ms-ratelimit-remaining-subscription-reads": "11632", + "x-ms-request-id": "87766f2b-f7b7-4a47-9c27-09b014499812", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073719Z:09fc9287-7063-4dec-b564-6f457c4889ca" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "efb7d99479f53ecb3bf054d73efcd871", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "67222d00-a331-4614-a4a5-53a0ceb4b9b0", + "x-ms-client-request-id": "efb7d99479f53ecb3bf054d73efcd871", + "x-ms-correlation-request-id": "8c78256e-c8ab-4385-9bdf-083491f7d046", + "x-ms-ratelimit-remaining-subscription-reads": "11631", + "x-ms-request-id": "1ecffba9-5e8b-4f7d-a139-7d1ca4168707", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073720Z:8c78256e-c8ab-4385-9bdf-083491f7d046" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "72be9bbefd2625643ba179f8bf66c8b2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "fc74074a-764d-4cce-aa35-67fb20a5a120", + "x-ms-client-request-id": "72be9bbefd2625643ba179f8bf66c8b2", + "x-ms-correlation-request-id": "05cf5d2e-36f0-4339-9c21-fa33541d6685", + "x-ms-ratelimit-remaining-subscription-reads": "11630", + "x-ms-request-id": "973ed51a-a50f-47b9-a018-271f83e63ffc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073722Z:05cf5d2e-36f0-4339-9c21-fa33541d6685" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7dd579fe2736fa081be5cce7a6627ad6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "76730dbc-46c9-432b-b8e9-31773f5e036e", + "x-ms-client-request-id": "7dd579fe2736fa081be5cce7a6627ad6", + "x-ms-correlation-request-id": "01c630cc-9137-42ae-9c82-8b5fe015d42c", + "x-ms-ratelimit-remaining-subscription-reads": "11629", + "x-ms-request-id": "68ba9349-1fe7-41a5-8b93-fa0b705f34a7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073723Z:01c630cc-9137-42ae-9c82-8b5fe015d42c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6cbe973aa45996587491b45300d37fd5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e02376c2-59a1-4482-9f6d-cad2c01f07f4", + "x-ms-client-request-id": "6cbe973aa45996587491b45300d37fd5", + "x-ms-correlation-request-id": "aca69131-94bd-4c67-b868-e2c4f5c46617", + "x-ms-ratelimit-remaining-subscription-reads": "11628", + "x-ms-request-id": "f8dbb7b5-2488-483f-b52f-1d4fc1a9108b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073724Z:aca69131-94bd-4c67-b868-e2c4f5c46617" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c5d9a1285a27973b93c45741317d7fd8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "61eeebf7-691a-444b-8b4d-38d2483f9af6", + "x-ms-client-request-id": "c5d9a1285a27973b93c45741317d7fd8", + "x-ms-correlation-request-id": "50425375-4638-4ff9-a3db-5a5844b53db4", + "x-ms-ratelimit-remaining-subscription-reads": "11627", + "x-ms-request-id": "ab53f31e-819b-452a-9935-bf422ec2777d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073726Z:50425375-4638-4ff9-a3db-5a5844b53db4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "27bda2275ca75a58203e09a473b4fa47", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "be38d824-9987-435e-a55b-5e37a99480b3", + "x-ms-client-request-id": "27bda2275ca75a58203e09a473b4fa47", + "x-ms-correlation-request-id": "6b50c2a5-2713-41df-b1aa-2c4025593600", + "x-ms-ratelimit-remaining-subscription-reads": "11626", + "x-ms-request-id": "9a5ce397-8526-496c-af84-f769477de453", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073727Z:6b50c2a5-2713-41df-b1aa-2c4025593600" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "04bef765b589dfaf5b27d9954d1765f7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b08c8d38-a6ca-409d-9a69-220c1b5e20c8", + "x-ms-client-request-id": "04bef765b589dfaf5b27d9954d1765f7", + "x-ms-correlation-request-id": "04884270-812c-4534-be21-6c7620ec5e45", + "x-ms-ratelimit-remaining-subscription-reads": "11625", + "x-ms-request-id": "19fdfb3f-1baa-4afe-abce-50750ff173be", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073728Z:04884270-812c-4534-be21-6c7620ec5e45" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5d2cdb125815cc2d497fa4e8509723de", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "8e43a0ce-41ad-4dd4-9562-5b0e445ced6a", + "x-ms-client-request-id": "5d2cdb125815cc2d497fa4e8509723de", + "x-ms-correlation-request-id": "3f60898a-9d72-44c4-b6a6-acdfdf9682d5", + "x-ms-ratelimit-remaining-subscription-reads": "11624", + "x-ms-request-id": "0a702a42-ff00-41e7-901e-6cb5a728b98e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073729Z:3f60898a-9d72-44c4-b6a6-acdfdf9682d5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "39db0fc97abe724ff3decb7f83c30c09", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "a0538201-7bec-4f14-97e2-ee2d4d334941", + "x-ms-client-request-id": "39db0fc97abe724ff3decb7f83c30c09", + "x-ms-correlation-request-id": "9e895a52-26e0-41b1-a46f-515d144876f0", + "x-ms-ratelimit-remaining-subscription-reads": "11623", + "x-ms-request-id": "becd782a-c57e-415f-8f74-7bb4081bd977", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073731Z:9e895a52-26e0-41b1-a46f-515d144876f0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "989112d89d880d31caf2bb0a10c68ec4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "849f4b5d-ab28-4d11-a32c-685cd529116c", + "x-ms-client-request-id": "989112d89d880d31caf2bb0a10c68ec4", + "x-ms-correlation-request-id": "35dcb28e-dc22-4d24-bdee-a5446b0862c3", + "x-ms-ratelimit-remaining-subscription-reads": "11622", + "x-ms-request-id": "ad28cb01-f01d-429c-865c-0a5aa1e52698", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073732Z:35dcb28e-dc22-4d24-bdee-a5446b0862c3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3dcbfa032c3c98388bba6a378cad4886", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "590027c0-8937-4e20-8a50-39dbee184229", + "x-ms-client-request-id": "3dcbfa032c3c98388bba6a378cad4886", + "x-ms-correlation-request-id": "f8410a83-ef1a-4dff-932c-031b744fb6e2", + "x-ms-ratelimit-remaining-subscription-reads": "11621", + "x-ms-request-id": "bc1f9c28-00c7-40aa-9aed-cd4c730ec6b3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073733Z:f8410a83-ef1a-4dff-932c-031b744fb6e2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3e0f9b728b062c55ddcd6fcbbe44622c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "d2a7322d-2d40-48b7-9853-7d80faa1f3bf", + "x-ms-client-request-id": "3e0f9b728b062c55ddcd6fcbbe44622c", + "x-ms-correlation-request-id": "f84a1b13-97fe-4d04-8f78-318c3ebca8cb", + "x-ms-ratelimit-remaining-subscription-reads": "11620", + "x-ms-request-id": "059f5acc-2102-4b70-9935-2f330748f8d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073735Z:f84a1b13-97fe-4d04-8f78-318c3ebca8cb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "887c074fcef7accdd9f90cce32fa811c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e9a844f6-7556-463c-bb5b-813be64bbd80", + "x-ms-client-request-id": "887c074fcef7accdd9f90cce32fa811c", + "x-ms-correlation-request-id": "a8e63908-3b5a-40f5-b55c-ae1242d368ce", + "x-ms-ratelimit-remaining-subscription-reads": "11619", + "x-ms-request-id": "c380f500-5e08-4c52-ad1b-40cc9d2a162c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073736Z:a8e63908-3b5a-40f5-b55c-ae1242d368ce" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "749835a950b677bea59f606ebc6cd946", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "87b1dbe5-c203-4d3f-8ceb-a5b28cdd3407", + "x-ms-client-request-id": "749835a950b677bea59f606ebc6cd946", + "x-ms-correlation-request-id": "46ff607f-12b0-46e1-98db-030002b80f3a", + "x-ms-ratelimit-remaining-subscription-reads": "11618", + "x-ms-request-id": "f5223d1a-ae78-4b0f-9868-8729bf555bb4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073737Z:46ff607f-12b0-46e1-98db-030002b80f3a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "85e83e57c031a38fce63650c7f87f9e3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b491dd38-af25-4c8f-84a3-f9bf92c40d96", + "x-ms-client-request-id": "85e83e57c031a38fce63650c7f87f9e3", + "x-ms-correlation-request-id": "8f246078-c526-4a32-bb15-156677bde02f", + "x-ms-ratelimit-remaining-subscription-reads": "11617", + "x-ms-request-id": "3810283e-c7be-4b08-87d0-671e4a8fe563", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073738Z:8f246078-c526-4a32-bb15-156677bde02f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8921524cedacfe754904e3576e5ef06d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "af264a18-ae07-4ad2-99e6-6adf00f638b3", + "x-ms-client-request-id": "8921524cedacfe754904e3576e5ef06d", + "x-ms-correlation-request-id": "8796c596-1642-41aa-b728-002176b08b47", + "x-ms-ratelimit-remaining-subscription-reads": "11616", + "x-ms-request-id": "d76cc85c-be96-4799-9c1b-de83ce184302", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073740Z:8796c596-1642-41aa-b728-002176b08b47" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f476c51ffc11e9eaa6f5a653ebb1f81e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "d7227250-600e-4707-83c4-a777a4034642", + "x-ms-client-request-id": "f476c51ffc11e9eaa6f5a653ebb1f81e", + "x-ms-correlation-request-id": "4a19bcbe-185b-40fb-b0bb-4679d9ab6e34", + "x-ms-ratelimit-remaining-subscription-reads": "11615", + "x-ms-request-id": "68b44b78-ff4d-400a-a5f2-902770842048", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073741Z:4a19bcbe-185b-40fb-b0bb-4679d9ab6e34" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "69227da54f4a6a9ac8e93b2ddd37346f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "d17fd565-7d2b-40ea-8be8-edaf24533197", + "x-ms-client-request-id": "69227da54f4a6a9ac8e93b2ddd37346f", + "x-ms-correlation-request-id": "13d27873-a9e9-403f-86bc-86c478c355d3", + "x-ms-ratelimit-remaining-subscription-reads": "11614", + "x-ms-request-id": "7504da8e-288a-4ce2-bd79-138ae6006e18", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073742Z:13d27873-a9e9-403f-86bc-86c478c355d3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "baedf77305104fd16838e3b746211397", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e0fc5906-966c-45ab-a57c-403ab6e0bb3d", + "x-ms-client-request-id": "baedf77305104fd16838e3b746211397", + "x-ms-correlation-request-id": "17403e30-9d6b-44d4-9c9e-95b7c6eabc73", + "x-ms-ratelimit-remaining-subscription-reads": "11613", + "x-ms-request-id": "cd479749-d06f-41bd-8b17-aac26cd9c2e5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073744Z:17403e30-9d6b-44d4-9c9e-95b7c6eabc73" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f0b2c50b863bd0222b0b2c27c0bd0c6e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "3c8368de-e70a-49eb-959f-8b3a6a037d45", + "x-ms-client-request-id": "f0b2c50b863bd0222b0b2c27c0bd0c6e", + "x-ms-correlation-request-id": "104200a3-c7d9-4de8-9cc1-1261dc05834f", + "x-ms-ratelimit-remaining-subscription-reads": "11612", + "x-ms-request-id": "d4c76d89-1f1c-49fb-be83-3eb286966fac", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073745Z:104200a3-c7d9-4de8-9cc1-1261dc05834f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f3e036c03ec4a00dabd301126be224a6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e8e096c4-3ce0-41a5-a943-2016e64807de", + "x-ms-client-request-id": "f3e036c03ec4a00dabd301126be224a6", + "x-ms-correlation-request-id": "94a2a39f-33b8-4a5d-9c6e-ce5943e57f56", + "x-ms-ratelimit-remaining-subscription-reads": "11611", + "x-ms-request-id": "43e53738-2e9e-4378-8a6a-58dbbf6ca584", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073746Z:94a2a39f-33b8-4a5d-9c6e-ce5943e57f56" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1822a4d54484ec34d51c8e04d9aa8fab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "df861019-777a-4a78-b5a4-4f21d1d0bffe", + "x-ms-client-request-id": "1822a4d54484ec34d51c8e04d9aa8fab", + "x-ms-correlation-request-id": "0320bfc9-b2c7-4436-9b4d-6934d64f665a", + "x-ms-ratelimit-remaining-subscription-reads": "11610", + "x-ms-request-id": "601312b6-56b5-48ab-91a9-893751d88772", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073747Z:0320bfc9-b2c7-4436-9b4d-6934d64f665a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0ff6752c2041cdd3b712446884106448", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "53225698-77e0-400c-b7e5-85cd29c1fd82", + "x-ms-client-request-id": "0ff6752c2041cdd3b712446884106448", + "x-ms-correlation-request-id": "d1ebc014-40f6-49ef-96b5-bc58dccc643e", + "x-ms-ratelimit-remaining-subscription-reads": "11609", + "x-ms-request-id": "d1a1f9f5-84f9-4ad6-8543-dc37d5b4e01b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073749Z:d1ebc014-40f6-49ef-96b5-bc58dccc643e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1c5185e7f39b7cea02f31da7af08c601", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "2a09c88c-dab9-454d-b85a-dad6502a4450", + "x-ms-client-request-id": "1c5185e7f39b7cea02f31da7af08c601", + "x-ms-correlation-request-id": "9b88988c-b1dd-4039-a6dc-d966961ccb27", + "x-ms-ratelimit-remaining-subscription-reads": "11608", + "x-ms-request-id": "052c0a5f-6bd3-4acc-a520-ea99f545ad5f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073750Z:9b88988c-b1dd-4039-a6dc-d966961ccb27" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f6e5564314ebb565d0556072ffcc68c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "546ef8a4-37d0-435c-9b39-bf6d77f0b919", + "x-ms-client-request-id": "f6e5564314ebb565d0556072ffcc68c5", + "x-ms-correlation-request-id": "a885c506-fad2-47d0-8391-9bab770887f2", + "x-ms-ratelimit-remaining-subscription-reads": "11607", + "x-ms-request-id": "a2c8b1fb-2c17-4e9b-94cf-e0c2f1109736", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073751Z:a885c506-fad2-47d0-8391-9bab770887f2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "531c46b8735838108a7a0d4d022b1dae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0a93cb70-ba55-4274-bd7d-629f7b7376f1", + "x-ms-client-request-id": "531c46b8735838108a7a0d4d022b1dae", + "x-ms-correlation-request-id": "932b1c6e-3436-4ce9-8e01-8c99e0cd2ab6", + "x-ms-ratelimit-remaining-subscription-reads": "11606", + "x-ms-request-id": "e4f7310c-60b4-4cee-bb88-e2943705f4d2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073752Z:932b1c6e-3436-4ce9-8e01-8c99e0cd2ab6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2e24434b6d2ad35c1f9c4b4592777d35", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "23e29137-fc6d-4541-8275-ed69bc0bab48", + "x-ms-client-request-id": "2e24434b6d2ad35c1f9c4b4592777d35", + "x-ms-correlation-request-id": "9c2c542b-f9b9-4152-a04e-85d24c957fdc", + "x-ms-ratelimit-remaining-subscription-reads": "11605", + "x-ms-request-id": "e4852aa3-b0d1-48e1-be2d-1dbacfbebac4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073754Z:9c2c542b-f9b9-4152-a04e-85d24c957fdc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "69ee588b72ecd0a946ad6b710617b2a5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "002bb2aa-5eed-4021-9fc8-452075b90e53", + "x-ms-client-request-id": "69ee588b72ecd0a946ad6b710617b2a5", + "x-ms-correlation-request-id": "d7778d6d-999c-471e-ae53-78ca61a9ad87", + "x-ms-ratelimit-remaining-subscription-reads": "11604", + "x-ms-request-id": "2bda1771-a505-47f1-a7ad-d0db4616114f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073755Z:d7778d6d-999c-471e-ae53-78ca61a9ad87" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bb26b2373aa84b9ae94934bb28caa512", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "5469cc74-1d41-4074-a495-19b0d8df69d9", + "x-ms-client-request-id": "bb26b2373aa84b9ae94934bb28caa512", + "x-ms-correlation-request-id": "83a36c7e-176a-41a4-b571-fcba3a85cdee", + "x-ms-ratelimit-remaining-subscription-reads": "11603", + "x-ms-request-id": "74db43a1-31b3-4ef0-a14d-33b48d3dce18", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073756Z:83a36c7e-176a-41a4-b571-fcba3a85cdee" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aac2d8fdb33cd8c29a53e77d01ebcd07", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "549632ce-b2f9-497a-a314-915cf3f8de02", + "x-ms-client-request-id": "aac2d8fdb33cd8c29a53e77d01ebcd07", + "x-ms-correlation-request-id": "0d02e576-17f8-4a9c-886f-7f7c5c88ec76", + "x-ms-ratelimit-remaining-subscription-reads": "11602", + "x-ms-request-id": "10ef279e-aeed-46b2-86ab-7197c4c9d507", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073758Z:0d02e576-17f8-4a9c-886f-7f7c5c88ec76" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e00ea6eac151518cbda37fa33eeda87c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "7e6854cc-f95a-4913-9e59-6aadea4da8b2", + "x-ms-client-request-id": "e00ea6eac151518cbda37fa33eeda87c", + "x-ms-correlation-request-id": "ed7d4f6c-9313-4841-ae16-24c64baecaf2", + "x-ms-ratelimit-remaining-subscription-reads": "11601", + "x-ms-request-id": "eadcb2a4-684e-4ed5-8998-a3c9bc33e415", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073759Z:ed7d4f6c-9313-4841-ae16-24c64baecaf2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2d73580707558368f04d2154521d49fe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "ba93b41d-4fb2-48d2-983c-e4fe3e5f0946", + "x-ms-client-request-id": "2d73580707558368f04d2154521d49fe", + "x-ms-correlation-request-id": "a59bc9e6-e50c-469b-99ba-955815d5a752", + "x-ms-ratelimit-remaining-subscription-reads": "11600", + "x-ms-request-id": "f5d745aa-4545-48f9-87b5-5f6dcea7e437", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073801Z:a59bc9e6-e50c-469b-99ba-955815d5a752" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "81d12c7bc5bc3cc14b70ec99341f99ac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "dce47f7b-806b-4244-a69f-711423843ec9", + "x-ms-client-request-id": "81d12c7bc5bc3cc14b70ec99341f99ac", + "x-ms-correlation-request-id": "5b47268c-dde4-44fc-a427-f1234ae9c99a", + "x-ms-ratelimit-remaining-subscription-reads": "11599", + "x-ms-request-id": "09120227-e659-493c-b6ca-8af48ba06e67", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073802Z:5b47268c-dde4-44fc-a427-f1234ae9c99a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a8756bab9f77e2b13e8af0039f38ffa0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "8049dfca-de76-4b4f-8b3f-b016bf1694af", + "x-ms-client-request-id": "a8756bab9f77e2b13e8af0039f38ffa0", + "x-ms-correlation-request-id": "5d185437-b16e-4dc8-9f87-804ddd6da1e8", + "x-ms-ratelimit-remaining-subscription-reads": "11598", + "x-ms-request-id": "d0532555-a7ea-4db2-9048-3d13a2eaa4f2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073803Z:5d185437-b16e-4dc8-9f87-804ddd6da1e8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1227815a261c42c09737e2e51acf4fd0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "6d62c079-92bb-482f-b3a3-6e1834064cc0", + "x-ms-client-request-id": "1227815a261c42c09737e2e51acf4fd0", + "x-ms-correlation-request-id": "dbfd61a6-0f4e-4483-a132-2a066cc36f69", + "x-ms-ratelimit-remaining-subscription-reads": "11597", + "x-ms-request-id": "258a9447-f263-40d5-a7e4-7c2e1bd946be", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073804Z:dbfd61a6-0f4e-4483-a132-2a066cc36f69" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e6a975b3a0a7dc867aee4331d4be9c13", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "3a19ac20-8c4f-4836-a5e8-81d41631af63", + "x-ms-client-request-id": "e6a975b3a0a7dc867aee4331d4be9c13", + "x-ms-correlation-request-id": "6d535dd8-b1c5-4e1f-bf1f-37033b985fd0", + "x-ms-ratelimit-remaining-subscription-reads": "11596", + "x-ms-request-id": "bdaff02b-9ac6-4bd0-906a-d3c4a6083d9a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073806Z:6d535dd8-b1c5-4e1f-bf1f-37033b985fd0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b33e4c7187f88490ab33113fbcccc76f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "bf7a648d-8794-4fa2-a777-9bc33ccf21f4", + "x-ms-client-request-id": "b33e4c7187f88490ab33113fbcccc76f", + "x-ms-correlation-request-id": "95175899-86e8-4ed6-b678-630e92bfab50", + "x-ms-ratelimit-remaining-subscription-reads": "11595", + "x-ms-request-id": "f72100be-4d87-44b4-a7ea-63143d5578d5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073807Z:95175899-86e8-4ed6-b678-630e92bfab50" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2a4f1f3a188fb9f8fa4a982de28e6dd9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "fff08863-fa6d-466d-b326-b6f0a59466d9", + "x-ms-client-request-id": "2a4f1f3a188fb9f8fa4a982de28e6dd9", + "x-ms-correlation-request-id": "4ed053db-7fc4-42c2-bf0e-a59d138235b1", + "x-ms-ratelimit-remaining-subscription-reads": "11594", + "x-ms-request-id": "8fdc239b-16e3-4de9-8041-62d18b20474c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073808Z:4ed053db-7fc4-42c2-bf0e-a59d138235b1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ce73cf9b9c902cd8e4243b748f461fad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "a84accc3-5b85-44e3-84a5-53e4fc997159", + "x-ms-client-request-id": "ce73cf9b9c902cd8e4243b748f461fad", + "x-ms-correlation-request-id": "9dd7e6db-5957-4e3c-bdd7-b26e193e301a", + "x-ms-ratelimit-remaining-subscription-reads": "11593", + "x-ms-request-id": "c0267317-9fbe-44dc-8b96-876bdc128411", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073810Z:9dd7e6db-5957-4e3c-bdd7-b26e193e301a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b5f7d426716e59845484b8adef63a11c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "cec2189a-5e1e-48ea-ab50-3d78e81c43c2", + "x-ms-client-request-id": "b5f7d426716e59845484b8adef63a11c", + "x-ms-correlation-request-id": "7ad86c75-359d-4f48-9f59-531eae58097a", + "x-ms-ratelimit-remaining-subscription-reads": "11592", + "x-ms-request-id": "0f6cecb4-c78c-4f0c-8b26-7f56b8eaeda2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073811Z:7ad86c75-359d-4f48-9f59-531eae58097a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eda438c6f9599ede4623466adc832ab3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "f98b3bae-45ae-4c5b-8f3c-30f17169b6ce", + "x-ms-client-request-id": "eda438c6f9599ede4623466adc832ab3", + "x-ms-correlation-request-id": "3c0e835b-c319-44ab-9d8c-3b808f52c4e9", + "x-ms-ratelimit-remaining-subscription-reads": "11591", + "x-ms-request-id": "150ccd5d-b3a0-4569-870e-40f151e31aee", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073812Z:3c0e835b-c319-44ab-9d8c-3b808f52c4e9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0e06ea2ab797296a4b1a790be32b3d81", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "943da447-5eca-47bc-a7a4-fd6c1f2b7a15", + "x-ms-client-request-id": "0e06ea2ab797296a4b1a790be32b3d81", + "x-ms-correlation-request-id": "d6e88ba3-297f-44d5-a8a3-21866bffbc8d", + "x-ms-ratelimit-remaining-subscription-reads": "11590", + "x-ms-request-id": "24db24e0-e32b-42ad-b4eb-b44c6cb0d2a0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073813Z:d6e88ba3-297f-44d5-a8a3-21866bffbc8d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "57ae1e8231a22d54f6596e4b2b197cd0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "cff1398d-3f03-47d7-87d4-f1758b9f813a", + "x-ms-client-request-id": "57ae1e8231a22d54f6596e4b2b197cd0", + "x-ms-correlation-request-id": "55aee3fa-4b06-4e9b-a0c9-e43aa7d8a06d", + "x-ms-ratelimit-remaining-subscription-reads": "11589", + "x-ms-request-id": "6fabc952-e336-4243-8d5e-d2270fceb208", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073815Z:55aee3fa-4b06-4e9b-a0c9-e43aa7d8a06d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0482055a935c0e85cd7ba23f80d3ba1b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "5418847c-cf71-42a8-b8d1-ba235bc0e086", + "x-ms-client-request-id": "0482055a935c0e85cd7ba23f80d3ba1b", + "x-ms-correlation-request-id": "9e8e7b6f-fb18-4139-b0f5-ad6cc6c391b9", + "x-ms-ratelimit-remaining-subscription-reads": "11588", + "x-ms-request-id": "66d27175-bc74-46da-83c6-8bdfb7cd6e55", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073816Z:9e8e7b6f-fb18-4139-b0f5-ad6cc6c391b9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bde7c4e6d3d5f81196d9173d481ffd31", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "41a05fac-661e-4f2d-8766-33297eafe84a", + "x-ms-client-request-id": "bde7c4e6d3d5f81196d9173d481ffd31", + "x-ms-correlation-request-id": "d7675dc6-7dd8-4c3d-a137-f04e3e42a8b0", + "x-ms-ratelimit-remaining-subscription-reads": "11587", + "x-ms-request-id": "4b94fcec-1a72-43a6-9a24-c5ad088463cb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073817Z:d7675dc6-7dd8-4c3d-a137-f04e3e42a8b0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "deb0a89d38a8ee2598a089268f14ac22", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "61b9caa7-af79-46d8-b16b-78eb4a012961", + "x-ms-client-request-id": "deb0a89d38a8ee2598a089268f14ac22", + "x-ms-correlation-request-id": "03c82f98-1d0e-4374-bb39-6ba94ba6a858", + "x-ms-ratelimit-remaining-subscription-reads": "11586", + "x-ms-request-id": "920813ea-8a36-438f-a882-103699a71478", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073818Z:03c82f98-1d0e-4374-bb39-6ba94ba6a858" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6765539ebe3187fbf4896d827c48c5ad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "c6304b38-6ad0-4e33-a718-e8780869a23c", + "x-ms-client-request-id": "6765539ebe3187fbf4896d827c48c5ad", + "x-ms-correlation-request-id": "f795b9f9-0448-4642-a044-f36681bf0a43", + "x-ms-ratelimit-remaining-subscription-reads": "11585", + "x-ms-request-id": "fb26abb5-c34f-495c-b024-b7b7ccfdbf6e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073820Z:f795b9f9-0448-4642-a044-f36681bf0a43" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d7a2717edc22ad729ff9253549ea6981", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "da1e7cf9-840a-48ff-8366-d29b9dd86684", + "x-ms-client-request-id": "d7a2717edc22ad729ff9253549ea6981", + "x-ms-correlation-request-id": "18670cd5-6868-4e9a-8884-3941c02e53f6", + "x-ms-ratelimit-remaining-subscription-reads": "11584", + "x-ms-request-id": "7d0ddf8b-f048-48fe-8b33-87b4f0d16cb7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073821Z:18670cd5-6868-4e9a-8884-3941c02e53f6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f59ef42c96badeffad29ea1fcaa27250", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "68d54964-31bd-4cf6-9256-9b2b93cbf05b", + "x-ms-client-request-id": "f59ef42c96badeffad29ea1fcaa27250", + "x-ms-correlation-request-id": "0c586ef8-dc18-4a2b-bd1e-70b05b056551", + "x-ms-ratelimit-remaining-subscription-reads": "11583", + "x-ms-request-id": "b5c74234-9e24-4ffa-9817-797a1c853be4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073822Z:0c586ef8-dc18-4a2b-bd1e-70b05b056551" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1ea8dcdad572c200e1b7c83899c53e09", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "9d300292-8862-42f6-87aa-cccfb1a2a94c", + "x-ms-client-request-id": "1ea8dcdad572c200e1b7c83899c53e09", + "x-ms-correlation-request-id": "ad867e57-a930-494b-9eab-7612c2be42d3", + "x-ms-ratelimit-remaining-subscription-reads": "11582", + "x-ms-request-id": "dc204031-ffbd-4aa4-bf12-197cdffbfacd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073824Z:ad867e57-a930-494b-9eab-7612c2be42d3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8755eb20d0a9e7f271c32af9f153e2fc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "a9353460-9c66-40b0-8c3e-57be9568ee88", + "x-ms-client-request-id": "8755eb20d0a9e7f271c32af9f153e2fc", + "x-ms-correlation-request-id": "810cb60e-caa2-4afb-b561-4143125f40fa", + "x-ms-ratelimit-remaining-subscription-reads": "11581", + "x-ms-request-id": "c144c3e8-2f64-471b-9969-921e411fd301", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073825Z:810cb60e-caa2-4afb-b561-4143125f40fa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6c5ad4864b42570ff4dc1303cdc744e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "a5eef7a3-7b1b-4abc-9428-47fa0cf99057", + "x-ms-client-request-id": "6c5ad4864b42570ff4dc1303cdc744e7", + "x-ms-correlation-request-id": "62b5e606-2637-4d9c-b9ad-1529ca7cdee5", + "x-ms-ratelimit-remaining-subscription-reads": "11580", + "x-ms-request-id": "b163f127-d7bc-4324-8c85-2d4d63fa6f28", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073826Z:62b5e606-2637-4d9c-b9ad-1529ca7cdee5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dfffe0eaeb4c0aa7e9c0acafaa07d08e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "f6f070d5-cc19-4389-a903-647de6a609ec", + "x-ms-client-request-id": "dfffe0eaeb4c0aa7e9c0acafaa07d08e", + "x-ms-correlation-request-id": "b7a42191-a6e5-4307-bb2e-856c50d1f826", + "x-ms-ratelimit-remaining-subscription-reads": "11579", + "x-ms-request-id": "e9aee0be-8e89-4e5a-b754-073be0229d6e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073827Z:b7a42191-a6e5-4307-bb2e-856c50d1f826" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c4b1cbd5d16bd4c7dcfd92cdbcef1aaa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "6e1c8a11-bd56-4f12-aba0-5201d560d16c", + "x-ms-client-request-id": "c4b1cbd5d16bd4c7dcfd92cdbcef1aaa", + "x-ms-correlation-request-id": "61f9c4ef-d0ae-42cd-bbad-77246038e7fe", + "x-ms-ratelimit-remaining-subscription-reads": "11578", + "x-ms-request-id": "0baa5d5f-47f8-44ad-acf6-ca2066e19114", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073829Z:61f9c4ef-d0ae-42cd-bbad-77246038e7fe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "100e427e03539baf2d5082819e60aded", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "c73b2248-c543-4555-8f9b-b81e3dd3cb64", + "x-ms-client-request-id": "100e427e03539baf2d5082819e60aded", + "x-ms-correlation-request-id": "b1e05080-6b5a-4105-8ef2-ccb51a30f462", + "x-ms-ratelimit-remaining-subscription-reads": "11577", + "x-ms-request-id": "4909ad66-5d42-4c26-bf83-c7084785c390", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073830Z:b1e05080-6b5a-4105-8ef2-ccb51a30f462" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "022d850b7f15187c192a024e58da4ef9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "419ce48f-8120-4a01-aa06-dfd1cca13567", + "x-ms-client-request-id": "022d850b7f15187c192a024e58da4ef9", + "x-ms-correlation-request-id": "ccef5f43-fc99-4671-8d5a-7b72d9624ada", + "x-ms-ratelimit-remaining-subscription-reads": "11576", + "x-ms-request-id": "f444fa93-c7ca-4644-973f-467bac53f5d3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073831Z:ccef5f43-fc99-4671-8d5a-7b72d9624ada" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "683002a6bff8d13a1b16971b4e45367c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "8d142cbf-e10c-4b1f-8f5a-78cb09d6a625", + "x-ms-client-request-id": "683002a6bff8d13a1b16971b4e45367c", + "x-ms-correlation-request-id": "e3decfa2-36f4-45e4-8be0-ae75df95827f", + "x-ms-ratelimit-remaining-subscription-reads": "11575", + "x-ms-request-id": "cad4eb34-4769-459f-9502-9e1a1b84c17b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073832Z:e3decfa2-36f4-45e4-8be0-ae75df95827f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "37c1a55017c2ff95c6f6f72901614253", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b0418c5e-b333-4362-b34a-5acbe6f3ceeb", + "x-ms-client-request-id": "37c1a55017c2ff95c6f6f72901614253", + "x-ms-correlation-request-id": "b03acf4b-f0e6-43c0-b804-5d54ed68c3ef", + "x-ms-ratelimit-remaining-subscription-reads": "11574", + "x-ms-request-id": "878ee72c-571e-452d-8fa2-357e2b7842cd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073834Z:b03acf4b-f0e6-43c0-b804-5d54ed68c3ef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9bdb8901442f4bf44a5be7fee861c9d4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "fcd36587-abd6-4d56-b2b7-5d28ae560f7e", + "x-ms-client-request-id": "9bdb8901442f4bf44a5be7fee861c9d4", + "x-ms-correlation-request-id": "b77ea10b-8f85-46aa-9522-e193acb74d8d", + "x-ms-ratelimit-remaining-subscription-reads": "11573", + "x-ms-request-id": "45ff38bc-71c2-4099-9068-7a5e1c15ed73", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073835Z:b77ea10b-8f85-46aa-9522-e193acb74d8d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b2fd85f316188f376d30a102c811d0ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "2e7a10df-7547-49d8-a8d1-43fd41302a0e", + "x-ms-client-request-id": "b2fd85f316188f376d30a102c811d0ba", + "x-ms-correlation-request-id": "dc967e64-d285-49a2-882a-a8d79d819554", + "x-ms-ratelimit-remaining-subscription-reads": "11572", + "x-ms-request-id": "a086b9e6-fabc-47c4-837f-eb4d9f0fa6a5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073836Z:dc967e64-d285-49a2-882a-a8d79d819554" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c51944d39b6a0c4cb076ec6630961764", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "f54d6ae5-e510-44a8-99a0-95f86dbe6a17", + "x-ms-client-request-id": "c51944d39b6a0c4cb076ec6630961764", + "x-ms-correlation-request-id": "3692e566-c3dd-4e69-b7a6-15f2d8cc5cf1", + "x-ms-ratelimit-remaining-subscription-reads": "11571", + "x-ms-request-id": "eca34010-5759-4d58-a4bc-17f9f13a3996", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073838Z:3692e566-c3dd-4e69-b7a6-15f2d8cc5cf1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7b35222c8f63ea3a514c2dfea2f28239", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "d9645b55-44ec-489a-89af-ed9d079b41c2", + "x-ms-client-request-id": "7b35222c8f63ea3a514c2dfea2f28239", + "x-ms-correlation-request-id": "b6adcdc9-c08a-49b9-bdbe-0decd60d9bf5", + "x-ms-ratelimit-remaining-subscription-reads": "11570", + "x-ms-request-id": "79defb45-7e0c-4e2d-8755-18449fb19fdb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073839Z:b6adcdc9-c08a-49b9-bdbe-0decd60d9bf5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a32a2c8b0348586a38f102a12ad15ed7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "f253051c-e38b-49e5-bd1a-bfd78bd15418", + "x-ms-client-request-id": "a32a2c8b0348586a38f102a12ad15ed7", + "x-ms-correlation-request-id": "19072900-c8c4-429b-a8f7-c95e4af1c9a5", + "x-ms-ratelimit-remaining-subscription-reads": "11569", + "x-ms-request-id": "19405cb3-7348-4338-9ebb-ec13474f0273", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073840Z:19072900-c8c4-429b-a8f7-c95e4af1c9a5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a5d53d1955db4357092e741e6d4d69be", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b6ae6dbd-ff75-4bea-8914-052a7f913606", + "x-ms-client-request-id": "a5d53d1955db4357092e741e6d4d69be", + "x-ms-correlation-request-id": "8a25e543-8df6-42e0-b924-3b2894236e74", + "x-ms-ratelimit-remaining-subscription-reads": "11568", + "x-ms-request-id": "b2a598df-7601-4410-ab32-aa26cdf4a8d6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073841Z:8a25e543-8df6-42e0-b924-3b2894236e74" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "03dbb3f3736b281cb8dc43718d99c07f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "4cd8493c-2ba9-478a-bdb9-7f61f34c8db8", + "x-ms-client-request-id": "03dbb3f3736b281cb8dc43718d99c07f", + "x-ms-correlation-request-id": "9af18d82-fb63-4258-83c0-4fc85575e835", + "x-ms-ratelimit-remaining-subscription-reads": "11567", + "x-ms-request-id": "4dcbcad5-89ea-4fbb-b7af-c4953c7083ae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073843Z:9af18d82-fb63-4258-83c0-4fc85575e835" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "65e556eddc1c355ed5e799198f4bebea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "59ec96d9-8f20-4fa8-84e3-c36e0e77112f", + "x-ms-client-request-id": "65e556eddc1c355ed5e799198f4bebea", + "x-ms-correlation-request-id": "680b312e-27e7-41d0-87f0-dc9318462958", + "x-ms-ratelimit-remaining-subscription-reads": "11566", + "x-ms-request-id": "c70661d6-1d73-43f3-8337-fd99df7ec78c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073844Z:680b312e-27e7-41d0-87f0-dc9318462958" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "77ad43885bf6a66b20adedfe12e6b670", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "ad98a109-66cd-4039-9f9f-98dca882482b", + "x-ms-client-request-id": "77ad43885bf6a66b20adedfe12e6b670", + "x-ms-correlation-request-id": "d75d8c0c-f2a3-4898-9824-a6446cd921f1", + "x-ms-ratelimit-remaining-subscription-reads": "11565", + "x-ms-request-id": "b64d0152-0cb3-4567-86a3-183c2c60b520", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073845Z:d75d8c0c-f2a3-4898-9824-a6446cd921f1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1630f56d036817a154a52d84d902996c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0ad5cff8-46cf-423c-b060-d893f3dd4931", + "x-ms-client-request-id": "1630f56d036817a154a52d84d902996c", + "x-ms-correlation-request-id": "9bccb70d-4931-4b49-be95-6523d8ead88a", + "x-ms-ratelimit-remaining-subscription-reads": "11564", + "x-ms-request-id": "1de9204b-a73d-4014-aacc-eebb42f619f7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073846Z:9bccb70d-4931-4b49-be95-6523d8ead88a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "49e858f149eb9288ea3e456fef5f23ef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "f4c74cf4-6325-4f8b-80da-0ad19dab8918", + "x-ms-client-request-id": "49e858f149eb9288ea3e456fef5f23ef", + "x-ms-correlation-request-id": "7f802290-914f-49b1-97d1-e7c1c558fe23", + "x-ms-ratelimit-remaining-subscription-reads": "11563", + "x-ms-request-id": "22642989-202f-49bc-b687-b79628b019d2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073848Z:7f802290-914f-49b1-97d1-e7c1c558fe23" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "99ac2930d41b8582a29622512de7cc1d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "3ab9217b-4b4c-4d0a-94bb-8026171eb6c5", + "x-ms-client-request-id": "99ac2930d41b8582a29622512de7cc1d", + "x-ms-correlation-request-id": "a7d42e84-8b70-456d-9d2e-2a0cb27e9b13", + "x-ms-ratelimit-remaining-subscription-reads": "11562", + "x-ms-request-id": "3ca38b56-1354-4b6a-9cb2-73807a20f28c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073849Z:a7d42e84-8b70-456d-9d2e-2a0cb27e9b13" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b90c80136cfd24856c9e2c2abd3227f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "ef93b195-007a-4863-b80f-db9446ba6f96", + "x-ms-client-request-id": "b90c80136cfd24856c9e2c2abd3227f5", + "x-ms-correlation-request-id": "2273e019-7f50-40a1-ad10-7a5440c44f51", + "x-ms-ratelimit-remaining-subscription-reads": "11561", + "x-ms-request-id": "95035447-c743-47bb-99f7-a093388edbfb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073850Z:2273e019-7f50-40a1-ad10-7a5440c44f51" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "af533e81ff561c51d562a75427376403", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "d4f0a4bd-1c53-483f-a863-a39eae248c4f", + "x-ms-client-request-id": "af533e81ff561c51d562a75427376403", + "x-ms-correlation-request-id": "7e7df0a2-c09c-4e19-8932-9a080ea5ebc6", + "x-ms-ratelimit-remaining-subscription-reads": "11560", + "x-ms-request-id": "8a83e795-be69-41b3-b7ce-d1e039ac68e4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073852Z:7e7df0a2-c09c-4e19-8932-9a080ea5ebc6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6f5b27716953c4f1a4872d7ca858c770", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "9fefb591-8086-407a-801d-d2bf85ed7f10", + "x-ms-client-request-id": "6f5b27716953c4f1a4872d7ca858c770", + "x-ms-correlation-request-id": "475d6816-df5e-4640-b33f-1c28847b9a02", + "x-ms-ratelimit-remaining-subscription-reads": "11559", + "x-ms-request-id": "e2b488b5-88aa-4666-902c-9b543e2e0d55", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073853Z:475d6816-df5e-4640-b33f-1c28847b9a02" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eecf2d6f1c9414c62eefe49bc430fc34", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "2fde0d3a-ba22-481a-a7ac-38a501e0fb2c", + "x-ms-client-request-id": "eecf2d6f1c9414c62eefe49bc430fc34", + "x-ms-correlation-request-id": "68ffe3d3-b8b4-4daa-ba06-29d41d4280cd", + "x-ms-ratelimit-remaining-subscription-reads": "11558", + "x-ms-request-id": "c8f90890-a770-4353-9529-c9d3bc5310f3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073854Z:68ffe3d3-b8b4-4daa-ba06-29d41d4280cd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "96b82939b8d617a24d8e0bcfd2d5747d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0e1ac9b8-ed99-45e5-878f-11d8a85f5019", + "x-ms-client-request-id": "96b82939b8d617a24d8e0bcfd2d5747d", + "x-ms-correlation-request-id": "f13e9b86-ba28-482d-bf6e-1fe48def8c43", + "x-ms-ratelimit-remaining-subscription-reads": "11557", + "x-ms-request-id": "3f17c699-8604-4f80-a1c5-e20f00ee01a1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073855Z:f13e9b86-ba28-482d-bf6e-1fe48def8c43" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fae5379a7667546e614740638555ff73", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "554fe7cd-736d-4502-9f80-3b964895e5f7", + "x-ms-client-request-id": "fae5379a7667546e614740638555ff73", + "x-ms-correlation-request-id": "0b933cfe-e177-4c3b-a5f3-0b0588a4e5a0", + "x-ms-ratelimit-remaining-subscription-reads": "11556", + "x-ms-request-id": "71013172-bce5-46dc-a5a1-122137662bee", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073857Z:0b933cfe-e177-4c3b-a5f3-0b0588a4e5a0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7f42f88b319fb6998bb8a10511f74159", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "5c2bf172-94e6-44a9-987e-25d379fc3537", + "x-ms-client-request-id": "7f42f88b319fb6998bb8a10511f74159", + "x-ms-correlation-request-id": "99675bfa-a27c-4ef5-a254-ea3e46c4e4f4", + "x-ms-ratelimit-remaining-subscription-reads": "11555", + "x-ms-request-id": "28979a3c-67e9-4a3d-899b-982f3ca490d1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073858Z:99675bfa-a27c-4ef5-a254-ea3e46c4e4f4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8d00667b024bc3ccba63348f773f91f7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "4a2b9f6c-c501-4066-b57e-b92431849d3a", + "x-ms-client-request-id": "8d00667b024bc3ccba63348f773f91f7", + "x-ms-correlation-request-id": "9c9f3d24-4a79-402e-a9eb-3ceddcf5025e", + "x-ms-ratelimit-remaining-subscription-reads": "11554", + "x-ms-request-id": "8249a7a9-fb5f-4bda-bce3-7b409823f01e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073859Z:9c9f3d24-4a79-402e-a9eb-3ceddcf5025e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "da43978ff59268de9d2e6fafd5694369", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "a7195170-b2a3-47df-8f65-026f7d2d09ff", + "x-ms-client-request-id": "da43978ff59268de9d2e6fafd5694369", + "x-ms-correlation-request-id": "ca40e712-27e5-4cdd-aea0-cb5fd34c051d", + "x-ms-ratelimit-remaining-subscription-reads": "11553", + "x-ms-request-id": "54edbccb-fe59-4bec-8cd0-187ba9933181", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073900Z:ca40e712-27e5-4cdd-aea0-cb5fd34c051d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1fe7e705725488282b7fc43cfd093f4c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "1c279bff-8910-4487-af00-e70f29a295dc", + "x-ms-client-request-id": "1fe7e705725488282b7fc43cfd093f4c", + "x-ms-correlation-request-id": "8c35f68a-a5ca-400f-9a87-68d32fdb4fda", + "x-ms-ratelimit-remaining-subscription-reads": "11552", + "x-ms-request-id": "60590a17-dc1f-4720-b581-0a37706c569a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073902Z:8c35f68a-a5ca-400f-9a87-68d32fdb4fda" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7976a92667b386c68898ef1c931dee50", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "86830d90-d9d5-423b-bd53-05d6c3d18d70", + "x-ms-client-request-id": "7976a92667b386c68898ef1c931dee50", + "x-ms-correlation-request-id": "a44c4fa3-35f3-421d-9bc3-3b08c5ea7ed0", + "x-ms-ratelimit-remaining-subscription-reads": "11551", + "x-ms-request-id": "6cc3d02c-9c6b-4777-b70e-fc2d93b0cc52", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073903Z:a44c4fa3-35f3-421d-9bc3-3b08c5ea7ed0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9089cb2072571ca26ebbae1330a16b94", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "59d106ef-6fe1-4b35-ba90-ec65d5135c4a", + "x-ms-client-request-id": "9089cb2072571ca26ebbae1330a16b94", + "x-ms-correlation-request-id": "3214bb5e-97cd-48fb-8ba5-9798cdb74769", + "x-ms-ratelimit-remaining-subscription-reads": "11550", + "x-ms-request-id": "1cada4bc-ea49-45f4-9bf9-16621df855c6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073904Z:3214bb5e-97cd-48fb-8ba5-9798cdb74769" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2b8822efc9f39eb5206197bc820bf50e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "37825756-df9f-4f0b-a0a1-ac9dea1ef074", + "x-ms-client-request-id": "2b8822efc9f39eb5206197bc820bf50e", + "x-ms-correlation-request-id": "f7367349-cc32-4404-8060-c804d2df1560", + "x-ms-ratelimit-remaining-subscription-reads": "11549", + "x-ms-request-id": "aa7ccc8e-4bcc-4bf2-b01a-b1897ba70599", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073906Z:f7367349-cc32-4404-8060-c804d2df1560" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "311c7491ae80b4f407590bf8b9b355e6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "72aaf379-431f-4f63-9eca-e17517cccfea", + "x-ms-client-request-id": "311c7491ae80b4f407590bf8b9b355e6", + "x-ms-correlation-request-id": "fe275b67-656b-4af8-9dda-d85487f58e56", + "x-ms-ratelimit-remaining-subscription-reads": "11548", + "x-ms-request-id": "2b4a99b8-de75-42b2-81da-04e86e671b6c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073907Z:fe275b67-656b-4af8-9dda-d85487f58e56" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "702d5b2cc294565d15eb6ff6dae59a63", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "f66816c1-cacf-4299-9b54-e4f890cf0389", + "x-ms-client-request-id": "702d5b2cc294565d15eb6ff6dae59a63", + "x-ms-correlation-request-id": "c1a34660-d161-4845-89a1-30006b192e83", + "x-ms-ratelimit-remaining-subscription-reads": "11547", + "x-ms-request-id": "48598850-da74-4fd1-84b9-c04d499a002c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073908Z:c1a34660-d161-4845-89a1-30006b192e83" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bc81a0c6398540132ed42499bebde56d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "4ed2e8ad-a58f-4a5a-9ffc-1453815be111", + "x-ms-client-request-id": "bc81a0c6398540132ed42499bebde56d", + "x-ms-correlation-request-id": "56e19408-0951-4ea7-838d-81d9c609efbe", + "x-ms-ratelimit-remaining-subscription-reads": "11546", + "x-ms-request-id": "9d7443c1-23cc-42f7-a626-8da276447e36", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073909Z:56e19408-0951-4ea7-838d-81d9c609efbe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2690b00b84ddce7916c51c943ffed921", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "395a90c5-5c08-4aaf-84f7-70af50156511", + "x-ms-client-request-id": "2690b00b84ddce7916c51c943ffed921", + "x-ms-correlation-request-id": "40ad0261-66f8-4355-bf20-40d97186a0a2", + "x-ms-ratelimit-remaining-subscription-reads": "11545", + "x-ms-request-id": "22f931a6-b307-4d83-a088-6e164326fe1f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073911Z:40ad0261-66f8-4355-bf20-40d97186a0a2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1832a8be9931f26047ed42c09ec39858", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "f83c14a6-a36f-4fb3-b990-7e5cfc702db4", + "x-ms-client-request-id": "1832a8be9931f26047ed42c09ec39858", + "x-ms-correlation-request-id": "59e609bf-ba36-44b5-832d-e7d2db17341b", + "x-ms-ratelimit-remaining-subscription-reads": "11544", + "x-ms-request-id": "a2317a65-2d9e-4ce9-b952-0c72894e319e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073912Z:59e609bf-ba36-44b5-832d-e7d2db17341b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "29ea02067455418526b2a5bf1d7f002f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e85866f7-a431-4f1a-9752-cbde4689d904", + "x-ms-client-request-id": "29ea02067455418526b2a5bf1d7f002f", + "x-ms-correlation-request-id": "8d665a26-d957-4cc0-9e36-f3c403ea2825", + "x-ms-ratelimit-remaining-subscription-reads": "11543", + "x-ms-request-id": "72f83ebb-7750-41b1-a43e-2a21695b8782", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073913Z:8d665a26-d957-4cc0-9e36-f3c403ea2825" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "16db02facc8a723b509ddeef42b93053", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "65075599-6aa2-49dc-8495-0f2553de28e0", + "x-ms-client-request-id": "16db02facc8a723b509ddeef42b93053", + "x-ms-correlation-request-id": "e859d19e-259a-488e-867b-8ef5e41d806e", + "x-ms-ratelimit-remaining-subscription-reads": "11542", + "x-ms-request-id": "3bff6bdc-b3ad-401a-a1c5-f8dae488461c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073915Z:e859d19e-259a-488e-867b-8ef5e41d806e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3c8ec42daf144acb22f0f27ef3a0d4c8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "603c1ed5-589e-4205-9ca7-b766d9d0bd35", + "x-ms-client-request-id": "3c8ec42daf144acb22f0f27ef3a0d4c8", + "x-ms-correlation-request-id": "9678241b-9b49-469c-a2bd-5d0218f40830", + "x-ms-ratelimit-remaining-subscription-reads": "11541", + "x-ms-request-id": "94d8ea8a-e065-4030-8da6-33f6a6456c19", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073916Z:9678241b-9b49-469c-a2bd-5d0218f40830" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9bc512ed81e839cdc777d9b89595ff6d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:39: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": "57f41672-04b7-404a-a2d5-eb560cf2c3e8", + "x-ms-client-request-id": "9bc512ed81e839cdc777d9b89595ff6d", + "x-ms-correlation-request-id": "d2606553-6b68-4efd-874b-5d9d0768fb15", + "x-ms-ratelimit-remaining-subscription-reads": "11540", + "x-ms-request-id": "a3116354-cef8-40c5-9900-780b715c262f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073917Z:d2606553-6b68-4efd-874b-5d9d0768fb15" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "59925182c3f04a1b3790f399dabc7eaf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "5f9d644c-54ee-4134-9ec4-80d87f1f4f90", + "x-ms-client-request-id": "59925182c3f04a1b3790f399dabc7eaf", + "x-ms-correlation-request-id": "036fc34b-2dd3-4477-af2b-03de3b8233ca", + "x-ms-ratelimit-remaining-subscription-reads": "11539", + "x-ms-request-id": "1c509285-2ac6-4ae0-bef0-a647f4dc2f34", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073919Z:036fc34b-2dd3-4477-af2b-03de3b8233ca" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2f0215c894f4ab6bf654759cd613b58d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "9efca787-2cf0-4e88-b0dd-55b270c3db19", + "x-ms-client-request-id": "2f0215c894f4ab6bf654759cd613b58d", + "x-ms-correlation-request-id": "62776d5d-5318-45de-8235-9297e4197651", + "x-ms-ratelimit-remaining-subscription-reads": "11538", + "x-ms-request-id": "1e9527a9-0f4f-4e38-8d1d-ff8cd4f810c2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073920Z:62776d5d-5318-45de-8235-9297e4197651" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a1fb84f17b0e29d8f77a64578d335f0a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "10586294-7756-4cd5-bd9e-f50703d2c2f3", + "x-ms-client-request-id": "a1fb84f17b0e29d8f77a64578d335f0a", + "x-ms-correlation-request-id": "5aa41c35-3fdd-42ab-8529-a85c2ecd1f70", + "x-ms-ratelimit-remaining-subscription-reads": "11537", + "x-ms-request-id": "f1b6f333-9547-47b7-8336-81dd14866232", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073922Z:5aa41c35-3fdd-42ab-8529-a85c2ecd1f70" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7fef2af9cf92ee78e6e6629b4e7f7424", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "4a236fdd-d82a-465d-93b5-dbe61c9fdc4b", + "x-ms-client-request-id": "7fef2af9cf92ee78e6e6629b4e7f7424", + "x-ms-correlation-request-id": "9adb1084-02f8-4618-8df7-91979ca85e08", + "x-ms-ratelimit-remaining-subscription-reads": "11536", + "x-ms-request-id": "6e04f6e6-48a5-4a27-9482-ad790ad9b105", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073923Z:9adb1084-02f8-4618-8df7-91979ca85e08" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "55a866dbdcc04da13dd938792f131dc3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "04560bab-feb1-41f5-a1ad-53f6ba13c703", + "x-ms-client-request-id": "55a866dbdcc04da13dd938792f131dc3", + "x-ms-correlation-request-id": "240206e3-3d58-4a19-ad51-ace93b7b6cfa", + "x-ms-ratelimit-remaining-subscription-reads": "11535", + "x-ms-request-id": "b074c871-1464-477d-b81e-a33771897179", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073924Z:240206e3-3d58-4a19-ad51-ace93b7b6cfa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aba26bf5352421fa0b0dbb27183cda77", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:39: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": "2ec5085c-e2cb-4e4e-97fb-b4bcc03fafd0", + "x-ms-client-request-id": "aba26bf5352421fa0b0dbb27183cda77", + "x-ms-correlation-request-id": "e4fbd57e-fa6a-4850-b423-dfdbb32d0272", + "x-ms-ratelimit-remaining-subscription-reads": "11534", + "x-ms-request-id": "bc510cf2-d452-46bc-9b35-6ad989322857", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073925Z:e4fbd57e-fa6a-4850-b423-dfdbb32d0272" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "277c4005098a1c4a89a142b897ffbed2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "83acb623-4023-4b97-a7f1-9dc9a0183047", + "x-ms-client-request-id": "277c4005098a1c4a89a142b897ffbed2", + "x-ms-correlation-request-id": "8cd6284b-316e-4f5e-9dcd-acd355b0579c", + "x-ms-ratelimit-remaining-subscription-reads": "11576", + "x-ms-request-id": "0884ea9d-7f0a-47b6-953c-f49088f060b5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073927Z:8cd6284b-316e-4f5e-9dcd-acd355b0579c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e3a59fc8c8dca6ff6b8649b321793400", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "df1858d3-71cc-4357-909d-54ab0b17bbec", + "x-ms-client-request-id": "e3a59fc8c8dca6ff6b8649b321793400", + "x-ms-correlation-request-id": "3d4f3d8e-0ca4-41cf-a1e0-612280412c00", + "x-ms-ratelimit-remaining-subscription-reads": "11575", + "x-ms-request-id": "678650f8-5a5d-4a54-bd56-50fa419ab28b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073928Z:3d4f3d8e-0ca4-41cf-a1e0-612280412c00" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ef73c0fef697ec3820852282f2428a0c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "54f23a66-9c42-4fa7-8d41-e72bc4924e4b", + "x-ms-client-request-id": "ef73c0fef697ec3820852282f2428a0c", + "x-ms-correlation-request-id": "1cceb0c5-5f87-4da3-80cc-52b576a07588", + "x-ms-ratelimit-remaining-subscription-reads": "11574", + "x-ms-request-id": "36d5a197-bc8d-4d17-b522-213105e9f46d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073930Z:1cceb0c5-5f87-4da3-80cc-52b576a07588" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "795fe84ef7973c9a40d5bc04bf97fb10", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "ce772b32-9cbf-4884-a03e-0dd01daf5b1d", + "x-ms-client-request-id": "795fe84ef7973c9a40d5bc04bf97fb10", + "x-ms-correlation-request-id": "833b4f56-fa77-43ae-8797-bd2ca90363f4", + "x-ms-ratelimit-remaining-subscription-reads": "11573", + "x-ms-request-id": "796c1a8e-3a9c-414a-b858-c0c485978079", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073931Z:833b4f56-fa77-43ae-8797-bd2ca90363f4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d6b9426cce8bd23a66b9c256a67db329", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "6bc68a51-74de-4852-b5f8-e1ef6d71351f", + "x-ms-client-request-id": "d6b9426cce8bd23a66b9c256a67db329", + "x-ms-correlation-request-id": "d10b5360-f740-4b5d-aebf-f1b36225221f", + "x-ms-ratelimit-remaining-subscription-reads": "11572", + "x-ms-request-id": "78d1bf49-2b1f-42af-a1ca-41f88a42fe9a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073932Z:d10b5360-f740-4b5d-aebf-f1b36225221f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "38643dfbbb1906682536afc139342c89", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "8165c403-bbdd-4e51-a5d8-7740ae96631a", + "x-ms-client-request-id": "38643dfbbb1906682536afc139342c89", + "x-ms-correlation-request-id": "83446f4e-a9d3-4112-947f-a3b804a9ba28", + "x-ms-ratelimit-remaining-subscription-reads": "11571", + "x-ms-request-id": "17414413-6482-4239-b112-357a9ab0e641", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073933Z:83446f4e-a9d3-4112-947f-a3b804a9ba28" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b015128ab4887f80ad8d13dd354496c3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "ace68678-c57e-478b-a913-701f0b2658ff", + "x-ms-client-request-id": "b015128ab4887f80ad8d13dd354496c3", + "x-ms-correlation-request-id": "a163679a-d160-4715-944b-7d5ff5fe1878", + "x-ms-ratelimit-remaining-subscription-reads": "11570", + "x-ms-request-id": "e435adc5-6e72-41a1-b788-0e5fff017046", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073935Z:a163679a-d160-4715-944b-7d5ff5fe1878" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "82089322c232b1f6d9b3b0551f789831", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "d02b69cb-2c5d-46e0-becc-f6a63abbf46c", + "x-ms-client-request-id": "82089322c232b1f6d9b3b0551f789831", + "x-ms-correlation-request-id": "e244ccf1-3aee-477e-bf28-ab9cae0d402c", + "x-ms-ratelimit-remaining-subscription-reads": "11569", + "x-ms-request-id": "5564b180-1fd6-409a-b052-fb7b517733e1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073936Z:e244ccf1-3aee-477e-bf28-ab9cae0d402c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "94cc388c036747a0bce48a8ca78bd1e1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e1ddd0b2-a1da-489e-87b6-587d590eabdf", + "x-ms-client-request-id": "94cc388c036747a0bce48a8ca78bd1e1", + "x-ms-correlation-request-id": "214d73b1-210d-4558-9670-b10406a3b57a", + "x-ms-ratelimit-remaining-subscription-reads": "11568", + "x-ms-request-id": "17344dc3-cace-4e09-bd5f-8e15b7a30338", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073937Z:214d73b1-210d-4558-9670-b10406a3b57a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a69feba0aa2cc7561b64d6d5032b5f34", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b07a6985-097a-4099-a1c1-956de46fbee8", + "x-ms-client-request-id": "a69feba0aa2cc7561b64d6d5032b5f34", + "x-ms-correlation-request-id": "6b1d5730-d06c-433f-a528-c1be75df0051", + "x-ms-ratelimit-remaining-subscription-reads": "11567", + "x-ms-request-id": "26d5ec1e-e493-4e3b-8e0f-13e0da022f4f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073938Z:6b1d5730-d06c-433f-a528-c1be75df0051" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fc51e1f502771f5cf2c0c54e386a094e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:39: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": "ba126371-3b21-4a2f-8ef2-958bd02fbe21", + "x-ms-client-request-id": "fc51e1f502771f5cf2c0c54e386a094e", + "x-ms-correlation-request-id": "8e7e11d4-0b0d-4163-a1e9-6ac2971ed0f4", + "x-ms-ratelimit-remaining-subscription-reads": "11566", + "x-ms-request-id": "645d3ba3-ceb7-4c4a-8513-a2cf2fb416cb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073940Z:8e7e11d4-0b0d-4163-a1e9-6ac2971ed0f4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "33b5cee1f1d9e205e10478022ccb4491", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "4e01ec30-64ea-4587-a774-b0a19b364b39", + "x-ms-client-request-id": "33b5cee1f1d9e205e10478022ccb4491", + "x-ms-correlation-request-id": "aa5cb47c-d421-4bac-949c-b0c47b705166", + "x-ms-ratelimit-remaining-subscription-reads": "11565", + "x-ms-request-id": "ce524e7b-9dac-4915-8085-238fe60fde7d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073941Z:aa5cb47c-d421-4bac-949c-b0c47b705166" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3c43f78c-0d2c-410c-9054-3434d4e718ba?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c6975584d4399d698f80b46be4088fb0", + "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, 08 Sep 2021 07:39: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": "dba26ba5-6d9f-467f-b232-267871cba215", + "x-ms-client-request-id": "c6975584d4399d698f80b46be4088fb0", + "x-ms-correlation-request-id": "69742e71-4986-436d-ae3e-2e691b42cdfe", + "x-ms-ratelimit-remaining-subscription-reads": "11564", + "x-ms-request-id": "c6c3041b-a3a4-49bf-bff2-b3f930add182", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073942Z:69742e71-4986-436d-ae3e-2e691b42cdfe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-2544?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "34f3885b2c76035bdc6e1b738959f226", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1536", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:39:42 GMT", + "ETag": "W/\u00223ece8a86-c63b-4b24-b7dc-5c64070f324e\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": "5e500268-881b-48f7-ab2b-12c86730cae1", + "x-ms-client-request-id": "34f3885b2c76035bdc6e1b738959f226", + "x-ms-correlation-request-id": "a04645ab-b936-4dab-b00e-8195f3b268f5", + "x-ms-ratelimit-remaining-subscription-reads": "11563", + "x-ms-request-id": "594ddee5-582f-43d2-a693-0792623bf932", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073943Z:a04645ab-b936-4dab-b00e-8195f3b268f5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022bastion-2544\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-2544\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00223ece8a86-c63b-4b24-b7dc-5c64070f324e\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022dnsName\u0022: \u0022bst-d8753691-2615-434b-9d54-88a9c0bb81db.bastion.azure.com\u0022,\r\n", + " \u0022scaleUnits\u0022: 2,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022bastionIPConfig-5046\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-2544/bastionHostIpConfigurations/bastionIPConfig-5046\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00223ece8a86-c63b-4b24-b7dc-5c64070f324e\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts/bastionHostIpConfigurations\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/bastionrg-7251/providers/Microsoft.Network/publicIPAddresses/ip-3184\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121/subnets/AzureBastionSubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022bastionShareableLinks\u0022: {}\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-2544?api-version=2021-02-01", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e2c9347c43d30d146517a3593d99fdd9", + "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/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 08 Sep 2021 07:39:43 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operationResults/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?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": "754e2d25-aedd-41e5-ae22-bb777ed219ea", + "x-ms-client-request-id": "e2c9347c43d30d146517a3593d99fdd9", + "x-ms-correlation-request-id": "200e0e89-cb25-478e-bfae-3b759545ecee", + "x-ms-ratelimit-remaining-subscription-deletes": "14998", + "x-ms-request-id": "1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073944Z:200e0e89-cb25-478e-bfae-3b759545ecee" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b0ef8d8dad3f18dd73e5cf5f8802c642", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:39:43 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": "ff4fa33f-2854-45fd-b5d5-ee46196d378c", + "x-ms-client-request-id": "b0ef8d8dad3f18dd73e5cf5f8802c642", + "x-ms-correlation-request-id": "d0291834-456d-4cae-b5aa-9db4e3bceed2", + "x-ms-ratelimit-remaining-subscription-reads": "11562", + "x-ms-request-id": "b98c83d8-0656-4445-8161-21efd169ca6d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073944Z:d0291834-456d-4cae-b5aa-9db4e3bceed2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c1fd41704eb26d4d1970e7405849546e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:39:44 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": "7a2555bd-955b-494b-b800-3efcaaefd3a2", + "x-ms-client-request-id": "c1fd41704eb26d4d1970e7405849546e", + "x-ms-correlation-request-id": "b0398cfe-b38f-4243-a5fb-ff1d1a0cfb5f", + "x-ms-ratelimit-remaining-subscription-reads": "11561", + "x-ms-request-id": "f0fb3535-d58c-42dd-a1a0-c2f533a5cfe3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073945Z:b0398cfe-b38f-4243-a5fb-ff1d1a0cfb5f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "afcb6d024daac89aea8e30f33fbbd0f8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:39: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": "a1b35e6c-93ef-4a92-ac00-9bf12b079d2c", + "x-ms-client-request-id": "afcb6d024daac89aea8e30f33fbbd0f8", + "x-ms-correlation-request-id": "4646454c-e3a2-4953-acf6-0f2996f0af50", + "x-ms-ratelimit-remaining-subscription-reads": "11560", + "x-ms-request-id": "738af466-d6dc-4739-8381-b19118d622b4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073946Z:4646454c-e3a2-4953-acf6-0f2996f0af50" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "775aa7cd52f83f833f8196cec59dbf2a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:39:47 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": "c1574919-d578-4b4c-b40a-9ff1d260ba04", + "x-ms-client-request-id": "775aa7cd52f83f833f8196cec59dbf2a", + "x-ms-correlation-request-id": "dccaa050-c750-4f6e-a792-b2554a62835d", + "x-ms-ratelimit-remaining-subscription-reads": "11559", + "x-ms-request-id": "73f18503-33dd-444a-94b8-5cfda168aa7a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073948Z:dccaa050-c750-4f6e-a792-b2554a62835d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1a5c609016362297a735d6231d5a2d5d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:39:48 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": "464737c4-7dbe-49b5-9dfb-1bccbe0a16d4", + "x-ms-client-request-id": "1a5c609016362297a735d6231d5a2d5d", + "x-ms-correlation-request-id": "5befee99-e780-43f6-9a09-f29aa5aef3ba", + "x-ms-ratelimit-remaining-subscription-reads": "11558", + "x-ms-request-id": "cbeca5f3-4bc7-4ea4-a032-eb79c4208b46", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073949Z:5befee99-e780-43f6-9a09-f29aa5aef3ba" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b072efa0ddeeb076e98c6f28b6cb024d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:39:49 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": "b7a9afad-20ed-442e-bbb8-136882ae5c19", + "x-ms-client-request-id": "b072efa0ddeeb076e98c6f28b6cb024d", + "x-ms-correlation-request-id": "8f814da0-75a3-4def-a449-9d706a783442", + "x-ms-ratelimit-remaining-subscription-reads": "11557", + "x-ms-request-id": "c5ab4e26-6cbc-4c27-aac3-6219c360c535", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073950Z:8f814da0-75a3-4def-a449-9d706a783442" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "df6206cfb55fb6c11038cfc27b6022e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:39:51 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": "8e7c3419-00ee-4b83-b282-46944969f5af", + "x-ms-client-request-id": "df6206cfb55fb6c11038cfc27b6022e4", + "x-ms-correlation-request-id": "6dec99ef-0900-4625-a707-0f247fcd6657", + "x-ms-ratelimit-remaining-subscription-reads": "11556", + "x-ms-request-id": "4312b9b2-f4d5-4e70-808a-bd2496e28d0f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073951Z:6dec99ef-0900-4625-a707-0f247fcd6657" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d62d39540e2ab33ce9ab31aaa66e6cdb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:39:52 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": "a1eb7259-55b8-43b6-b604-607e2a2fbbdd", + "x-ms-client-request-id": "d62d39540e2ab33ce9ab31aaa66e6cdb", + "x-ms-correlation-request-id": "92a47928-a3ab-43d2-afc4-4baf730ef25a", + "x-ms-ratelimit-remaining-subscription-reads": "11555", + "x-ms-request-id": "54ddad0f-0846-497b-b694-517bb823e344", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073953Z:92a47928-a3ab-43d2-afc4-4baf730ef25a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "175489334ef8ebfe2dbba0b60db43489", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:39:53 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": "05961af6-aa35-45a8-a309-cfdbd3fc18b4", + "x-ms-client-request-id": "175489334ef8ebfe2dbba0b60db43489", + "x-ms-correlation-request-id": "d17d9faa-4972-45fc-900b-0439b876a40f", + "x-ms-ratelimit-remaining-subscription-reads": "11554", + "x-ms-request-id": "976d6783-291a-4237-acc4-29a93469bb3b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073954Z:d17d9faa-4972-45fc-900b-0439b876a40f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7dd48a692c9ec023c9aff5b3841710a1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "98d0fe40-a336-47c7-a90b-aa4928bc91a8", + "x-ms-client-request-id": "7dd48a692c9ec023c9aff5b3841710a1", + "x-ms-correlation-request-id": "5bce4e90-1ebc-4a35-9806-d2b40aad8f75", + "x-ms-ratelimit-remaining-subscription-reads": "11553", + "x-ms-request-id": "5eceb3a7-0d0c-46f5-8164-c188d0796783", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073955Z:5bce4e90-1ebc-4a35-9806-d2b40aad8f75" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f28ef3cb0a0c05ec3b42a86e6d86a535", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "6f5ddfea-552d-414f-917f-e8df16859944", + "x-ms-client-request-id": "f28ef3cb0a0c05ec3b42a86e6d86a535", + "x-ms-correlation-request-id": "a7c6fefc-283b-4755-9a95-198a464a4c91", + "x-ms-ratelimit-remaining-subscription-reads": "11552", + "x-ms-request-id": "19c49242-5d88-43a9-abbc-1835a0e668e6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073957Z:a7c6fefc-283b-4755-9a95-198a464a4c91" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1b40a777ee9a073d66934d48594a6616", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b7f86dc6-8ba0-45d5-95da-97c4cda31213", + "x-ms-client-request-id": "1b40a777ee9a073d66934d48594a6616", + "x-ms-correlation-request-id": "783cc89a-0175-47df-a1aa-6095c07638ac", + "x-ms-ratelimit-remaining-subscription-reads": "11551", + "x-ms-request-id": "b465badc-e005-4bdf-839d-6dfb12a0bcd7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073958Z:783cc89a-0175-47df-a1aa-6095c07638ac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "19eafeab42255f7d9ece415b83b45242", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "4a524528-1445-4071-b318-b32ec8951deb", + "x-ms-client-request-id": "19eafeab42255f7d9ece415b83b45242", + "x-ms-correlation-request-id": "f3331f38-d1f7-4f82-9d1e-d3ed85737bf6", + "x-ms-ratelimit-remaining-subscription-reads": "11550", + "x-ms-request-id": "79a1dd00-10d0-4c60-b757-2df8fcd1cbaa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T073959Z:f3331f38-d1f7-4f82-9d1e-d3ed85737bf6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dc3cbf09f4d6dc07b6878c78bca3acf1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "5896b864-3efa-4cb3-ba49-c66148c54e6d", + "x-ms-client-request-id": "dc3cbf09f4d6dc07b6878c78bca3acf1", + "x-ms-correlation-request-id": "d9061077-cf85-4e84-860e-c2ca4efdafdb", + "x-ms-ratelimit-remaining-subscription-reads": "11739", + "x-ms-request-id": "484f5839-4ca2-4dd8-a1e2-ebb5fb29e0e8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074000Z:d9061077-cf85-4e84-860e-c2ca4efdafdb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6fc392db8c9c34102ae17dcbace283b1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "df5961f5-6a22-404a-bd1a-052085a41a71", + "x-ms-client-request-id": "6fc392db8c9c34102ae17dcbace283b1", + "x-ms-correlation-request-id": "621e0987-c3ba-4257-b181-a8975a27e7e2", + "x-ms-ratelimit-remaining-subscription-reads": "11738", + "x-ms-request-id": "b75c2057-b512-490d-b5ad-b0141226e8f0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074002Z:621e0987-c3ba-4257-b181-a8975a27e7e2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "993f0b408a0db73ff70d639db604a2fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "c1b05f44-fe22-4db2-ba61-170a2e3541ce", + "x-ms-client-request-id": "993f0b408a0db73ff70d639db604a2fa", + "x-ms-correlation-request-id": "f0b3457a-325c-461f-8efb-6dd58da70d49", + "x-ms-ratelimit-remaining-subscription-reads": "11737", + "x-ms-request-id": "4bd36d0e-1565-4f33-b4d8-27917e01100e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074003Z:f0b3457a-325c-461f-8efb-6dd58da70d49" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f1805021e3f17da6ae08b2f5763c2fd4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "360e5a9a-b26a-4a51-947a-ad438c947bbd", + "x-ms-client-request-id": "f1805021e3f17da6ae08b2f5763c2fd4", + "x-ms-correlation-request-id": "d1ad6b33-c7c3-4ba4-a01f-7887fb7237d9", + "x-ms-ratelimit-remaining-subscription-reads": "11736", + "x-ms-request-id": "3c7db44b-b3e2-4f0e-ae2f-54e380cdb322", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074004Z:d1ad6b33-c7c3-4ba4-a01f-7887fb7237d9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b138da03136451e3520c788f28727e25", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "8eabdea3-f6c3-4b03-8212-6f3d82991212", + "x-ms-client-request-id": "b138da03136451e3520c788f28727e25", + "x-ms-correlation-request-id": "7eb8b5d5-10e5-43b8-894c-3689b0b40861", + "x-ms-ratelimit-remaining-subscription-reads": "11735", + "x-ms-request-id": "e0ef86a1-725c-4581-96a5-b103779395c2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074005Z:7eb8b5d5-10e5-43b8-894c-3689b0b40861" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5ca9833f92615cc064c2ea05d74a40ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b1092bcd-f1c1-493a-b640-db766d94a0b5", + "x-ms-client-request-id": "5ca9833f92615cc064c2ea05d74a40ba", + "x-ms-correlation-request-id": "7cef1410-b55e-4eeb-9a52-c73c88c17b8e", + "x-ms-ratelimit-remaining-subscription-reads": "11734", + "x-ms-request-id": "77fd6d82-fdf8-4b09-ba68-b545dbc6fd1d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074007Z:7cef1410-b55e-4eeb-9a52-c73c88c17b8e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "db998fddf0cc0e966d2e9ee56b17543b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "76a56659-e096-4232-97af-6375f0f7bf6f", + "x-ms-client-request-id": "db998fddf0cc0e966d2e9ee56b17543b", + "x-ms-correlation-request-id": "c0a65988-42b3-491e-8976-d2bcea0d6346", + "x-ms-ratelimit-remaining-subscription-reads": "11733", + "x-ms-request-id": "f6085128-f50e-4b93-834c-efde13afe0d3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074008Z:c0a65988-42b3-491e-8976-d2bcea0d6346" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f3b58c89d39271721adb4da128de7907", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "56068f86-81f7-4896-b25c-ba2f9c5ae1d7", + "x-ms-client-request-id": "f3b58c89d39271721adb4da128de7907", + "x-ms-correlation-request-id": "974bb7f3-15ff-4ea3-b6d6-10aa8e392cbd", + "x-ms-ratelimit-remaining-subscription-reads": "11732", + "x-ms-request-id": "3b490c11-f752-49a5-990c-fec721fea482", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074009Z:974bb7f3-15ff-4ea3-b6d6-10aa8e392cbd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "99b1bdcba2d94e59ec9bee33f3daf14d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "00d0ef82-f5ad-452b-b092-ec521a3c2cd0", + "x-ms-client-request-id": "99b1bdcba2d94e59ec9bee33f3daf14d", + "x-ms-correlation-request-id": "d3a6ab47-d621-4375-b86a-ae928a0f4e21", + "x-ms-ratelimit-remaining-subscription-reads": "11731", + "x-ms-request-id": "3408f2e0-31da-4add-a1e0-8e1ad7f17e7a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074011Z:d3a6ab47-d621-4375-b86a-ae928a0f4e21" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4b7bae6e4c9409281d28c1f1a3f4e68f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "849aec87-ace0-470d-a1b0-0a3a276d5e9c", + "x-ms-client-request-id": "4b7bae6e4c9409281d28c1f1a3f4e68f", + "x-ms-correlation-request-id": "39431dcd-8228-4da0-825e-7b3ff4a3c076", + "x-ms-ratelimit-remaining-subscription-reads": "11730", + "x-ms-request-id": "52105c07-9870-4d4c-b8ea-fa6b6febdba8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074012Z:39431dcd-8228-4da0-825e-7b3ff4a3c076" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ae1996b5ba65e762336707f7e43f7d3f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "d6d891ea-adc7-4628-aa88-5c26a417f53e", + "x-ms-client-request-id": "ae1996b5ba65e762336707f7e43f7d3f", + "x-ms-correlation-request-id": "4fc2c5b1-443c-44f9-95a5-d6ab51fde87b", + "x-ms-ratelimit-remaining-subscription-reads": "11729", + "x-ms-request-id": "2d540802-4066-43d1-ab32-703a5d15b505", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074013Z:4fc2c5b1-443c-44f9-95a5-d6ab51fde87b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7933ffe92d627f7395a87cb0e167abf7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "2b124aaa-4ee6-48ea-a91d-a5f7a1bd9b84", + "x-ms-client-request-id": "7933ffe92d627f7395a87cb0e167abf7", + "x-ms-correlation-request-id": "01c53db8-1767-4fef-b25a-64121ff54c24", + "x-ms-ratelimit-remaining-subscription-reads": "11728", + "x-ms-request-id": "51a09d06-2d86-4198-a342-e091d93138d7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074015Z:01c53db8-1767-4fef-b25a-64121ff54c24" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5d7d5fb442c0b3e74c94182d453024de", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "9556b3a5-d88f-4ce7-8e09-64832c5760e8", + "x-ms-client-request-id": "5d7d5fb442c0b3e74c94182d453024de", + "x-ms-correlation-request-id": "d68d9163-1ce4-41d2-98b0-2f48fc47bb4b", + "x-ms-ratelimit-remaining-subscription-reads": "11727", + "x-ms-request-id": "b0487150-70da-4d44-9ba8-c5f0f2aad6b8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074016Z:d68d9163-1ce4-41d2-98b0-2f48fc47bb4b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a30781aa6cc1872c239919bc3eb206cb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "ba92c462-6fbd-4de6-8516-594caff14a0f", + "x-ms-client-request-id": "a30781aa6cc1872c239919bc3eb206cb", + "x-ms-correlation-request-id": "31605d46-aafb-4b97-9ac2-5a29d7a09129", + "x-ms-ratelimit-remaining-subscription-reads": "11726", + "x-ms-request-id": "602d7d50-bd88-4ed7-9f89-84fc4166568e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074017Z:31605d46-aafb-4b97-9ac2-5a29d7a09129" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "85420fbb20c1a77e177f2dce15453a64", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "3f64d665-5290-4d69-985a-d4b29eaa7a25", + "x-ms-client-request-id": "85420fbb20c1a77e177f2dce15453a64", + "x-ms-correlation-request-id": "7b35e087-1c38-4078-b5d2-9a10c7a71427", + "x-ms-ratelimit-remaining-subscription-reads": "11725", + "x-ms-request-id": "ff9c550a-38ec-458f-b6cb-5c5a366efac5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074018Z:7b35e087-1c38-4078-b5d2-9a10c7a71427" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5f059d830760473632f53926292a7499", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "6b455861-fae6-4f66-a905-54ef8a1d9de7", + "x-ms-client-request-id": "5f059d830760473632f53926292a7499", + "x-ms-correlation-request-id": "a821f4b4-3e19-4e00-b88b-624102515741", + "x-ms-ratelimit-remaining-subscription-reads": "11724", + "x-ms-request-id": "49e75826-334e-4640-97e3-15a5e25f9750", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074020Z:a821f4b4-3e19-4e00-b88b-624102515741" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "36714c8d9fed8a1c02608b413f5e71dd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "996e822a-35b8-4285-a743-98aa98253255", + "x-ms-client-request-id": "36714c8d9fed8a1c02608b413f5e71dd", + "x-ms-correlation-request-id": "1944066d-ce59-45a7-8251-445c2ae09173", + "x-ms-ratelimit-remaining-subscription-reads": "11723", + "x-ms-request-id": "116dc97a-d7e9-4ff5-bf23-15fd069a0876", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074021Z:1944066d-ce59-45a7-8251-445c2ae09173" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a039b45fa6acb46ad8fa52cbe7577ded", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0c7eb600-cfbf-4aa8-a93f-02af7f4664d2", + "x-ms-client-request-id": "a039b45fa6acb46ad8fa52cbe7577ded", + "x-ms-correlation-request-id": "cf32bc32-8671-4627-976a-e26b8ab3a4c6", + "x-ms-ratelimit-remaining-subscription-reads": "11722", + "x-ms-request-id": "dc23593d-dd5b-4bdc-9871-5668dd890078", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074022Z:cf32bc32-8671-4627-976a-e26b8ab3a4c6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c940930b04d4e476817b5d007cf408d4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "88506ad6-081f-4418-b39b-557a14325dcb", + "x-ms-client-request-id": "c940930b04d4e476817b5d007cf408d4", + "x-ms-correlation-request-id": "4601281b-b1b7-4808-9cd9-60cc8932a39f", + "x-ms-ratelimit-remaining-subscription-reads": "11721", + "x-ms-request-id": "16e2b239-fa27-4fd4-a7cd-29af2ed9ada2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074023Z:4601281b-b1b7-4808-9cd9-60cc8932a39f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "74c75b84d3f1e6ede1bd5df24c50a2aa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "52b09208-9293-4f7f-ab04-a51f7a189f97", + "x-ms-client-request-id": "74c75b84d3f1e6ede1bd5df24c50a2aa", + "x-ms-correlation-request-id": "c3af5cb1-2ae4-4432-9350-196d1b6bebfb", + "x-ms-ratelimit-remaining-subscription-reads": "11720", + "x-ms-request-id": "49a2b4d6-3e3c-41bf-8d88-e51260a392b6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074025Z:c3af5cb1-2ae4-4432-9350-196d1b6bebfb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ac369ee2a81d5b093d541f30496a37e3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "801a70b8-9769-4e37-82ab-75beac53d614", + "x-ms-client-request-id": "ac369ee2a81d5b093d541f30496a37e3", + "x-ms-correlation-request-id": "0b6e91d4-0068-4b71-96a2-7b1d18eb5e62", + "x-ms-ratelimit-remaining-subscription-reads": "11719", + "x-ms-request-id": "aa38a30f-a98c-426b-9c68-dd2f7142a4b9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074026Z:0b6e91d4-0068-4b71-96a2-7b1d18eb5e62" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8b477df2089037fba559e716a6839730", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "3ce0f24a-371f-417e-9e19-7ef8b1c9d4ce", + "x-ms-client-request-id": "8b477df2089037fba559e716a6839730", + "x-ms-correlation-request-id": "610da2ce-abe8-42e8-9195-958e44ed3729", + "x-ms-ratelimit-remaining-subscription-reads": "11718", + "x-ms-request-id": "fdc69cfd-75ec-484a-9503-a02b3e58dfd3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074027Z:610da2ce-abe8-42e8-9195-958e44ed3729" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "de1db2d85bbedbb6526c369db4bd9d76", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "2eb58169-8829-4acb-b529-77903cdd9856", + "x-ms-client-request-id": "de1db2d85bbedbb6526c369db4bd9d76", + "x-ms-correlation-request-id": "e2d28c8f-aa57-4b6d-8701-15de4f9c11a1", + "x-ms-ratelimit-remaining-subscription-reads": "11717", + "x-ms-request-id": "d46c88f0-3643-4a1f-966d-ef9fa39fbbcb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074029Z:e2d28c8f-aa57-4b6d-8701-15de4f9c11a1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ce0079851709d919a3ff06c3c1f2b4ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "657eba87-e1d0-40a7-9fcc-4688de8e75b8", + "x-ms-client-request-id": "ce0079851709d919a3ff06c3c1f2b4ba", + "x-ms-correlation-request-id": "2fb2c159-8776-4a3f-a065-f0467b4ae7a2", + "x-ms-ratelimit-remaining-subscription-reads": "11716", + "x-ms-request-id": "d985571e-daf9-435d-a69e-76cbb36db516", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074030Z:2fb2c159-8776-4a3f-a065-f0467b4ae7a2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9657eebc594d9625c76c3924d25e82e8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e8bc940d-c3f2-4c2b-b240-a1ee48bbf10c", + "x-ms-client-request-id": "9657eebc594d9625c76c3924d25e82e8", + "x-ms-correlation-request-id": "b72928e2-4ff6-4124-9224-e4e279bb4ab7", + "x-ms-ratelimit-remaining-subscription-reads": "11715", + "x-ms-request-id": "55db855c-5f50-4830-91d8-275fd8e23f55", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074031Z:b72928e2-4ff6-4124-9224-e4e279bb4ab7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2c9170bcc883c12798433abf54f21a60", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "57833802-880a-4eef-a57f-e706a64b59b7", + "x-ms-client-request-id": "2c9170bcc883c12798433abf54f21a60", + "x-ms-correlation-request-id": "698b9728-cb6d-4879-8b6a-ca637c047ec3", + "x-ms-ratelimit-remaining-subscription-reads": "11714", + "x-ms-request-id": "0f730066-2f1c-4f17-9e45-033479c3bdca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074032Z:698b9728-cb6d-4879-8b6a-ca637c047ec3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c6e07cb806652b295469079ddef50744", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e63d5b1a-f0dd-4e8c-8cca-deb744146445", + "x-ms-client-request-id": "c6e07cb806652b295469079ddef50744", + "x-ms-correlation-request-id": "a1a47c49-d1bf-4893-9a3a-e2415f7cc029", + "x-ms-ratelimit-remaining-subscription-reads": "11713", + "x-ms-request-id": "33e8b677-0e1a-4b16-9930-03eb53674e32", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074034Z:a1a47c49-d1bf-4893-9a3a-e2415f7cc029" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "50071e7c8761f436c796fd0a1e6541d4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "a490c2ef-0c34-4006-965e-9c69a5b08883", + "x-ms-client-request-id": "50071e7c8761f436c796fd0a1e6541d4", + "x-ms-correlation-request-id": "01638433-179c-4efe-a86f-c9d227f3f152", + "x-ms-ratelimit-remaining-subscription-reads": "11712", + "x-ms-request-id": "b36fd795-6c95-40d3-ab05-c034abfe5b7a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074035Z:01638433-179c-4efe-a86f-c9d227f3f152" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "556bd951bc7db5824665d81ac08ae2a3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "58b58f97-6dd3-4f67-9cef-13140143ad5e", + "x-ms-client-request-id": "556bd951bc7db5824665d81ac08ae2a3", + "x-ms-correlation-request-id": "877273ec-7f99-4c16-94cc-4b6ca5a2f168", + "x-ms-ratelimit-remaining-subscription-reads": "11711", + "x-ms-request-id": "7ef24662-24cf-440f-bde9-c17b32304fff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074036Z:877273ec-7f99-4c16-94cc-4b6ca5a2f168" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3642f53bc9ea30fe46ecffcf091f0dee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "fe53fa2d-775f-4449-a8be-822ae19bf2b3", + "x-ms-client-request-id": "3642f53bc9ea30fe46ecffcf091f0dee", + "x-ms-correlation-request-id": "5ecaf582-5e90-407f-9117-033dc6319f7f", + "x-ms-ratelimit-remaining-subscription-reads": "11710", + "x-ms-request-id": "7e83f905-4a2c-4385-bc72-aecea4e1e68e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074037Z:5ecaf582-5e90-407f-9117-033dc6319f7f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "054b3327b289c0c79c5209fbaf1c333c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "2d125b71-01be-4f6a-8943-ee65ce38023e", + "x-ms-client-request-id": "054b3327b289c0c79c5209fbaf1c333c", + "x-ms-correlation-request-id": "eafd58d3-2f19-4c68-90b7-1ddf58c24f55", + "x-ms-ratelimit-remaining-subscription-reads": "11709", + "x-ms-request-id": "b116fff5-a92e-4197-af3e-3e025a5e50a2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074039Z:eafd58d3-2f19-4c68-90b7-1ddf58c24f55" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "28ce5ab30b2387e9da3a0e91bdb3ac27", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "809aa65c-0f14-4752-8222-97904ff27c6a", + "x-ms-client-request-id": "28ce5ab30b2387e9da3a0e91bdb3ac27", + "x-ms-correlation-request-id": "441f7986-4598-48dd-bc18-e1f548a001f9", + "x-ms-ratelimit-remaining-subscription-reads": "11708", + "x-ms-request-id": "c60fadc4-3820-4d6f-99de-d20f4ae0683c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074040Z:441f7986-4598-48dd-bc18-e1f548a001f9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8df2e958dd3e88192e829a98c003812a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "cf230c9d-161c-4add-a210-a151928380af", + "x-ms-client-request-id": "8df2e958dd3e88192e829a98c003812a", + "x-ms-correlation-request-id": "4e7715e5-ddd4-4e26-a79b-9b2a511806ed", + "x-ms-ratelimit-remaining-subscription-reads": "11707", + "x-ms-request-id": "14828325-b2f0-422e-82e7-baf2b748fc27", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074041Z:4e7715e5-ddd4-4e26-a79b-9b2a511806ed" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ae1bc2b9e4501bcb4ac42b4ea33502e8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "5daebb9a-11d1-4017-b497-970119044038", + "x-ms-client-request-id": "ae1bc2b9e4501bcb4ac42b4ea33502e8", + "x-ms-correlation-request-id": "eb0b2eae-f96c-4a57-a66b-99d37faed732", + "x-ms-ratelimit-remaining-subscription-reads": "11706", + "x-ms-request-id": "30082b76-a0bc-4b93-870b-4fb4c2f2b5a0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074042Z:eb0b2eae-f96c-4a57-a66b-99d37faed732" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c5a3e2a6a529d6fd4145faa17151c7d6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "ca8bc242-7bc1-4a6d-900b-06d700bec6f6", + "x-ms-client-request-id": "c5a3e2a6a529d6fd4145faa17151c7d6", + "x-ms-correlation-request-id": "e193264a-995e-4d03-9997-cb441a63254f", + "x-ms-ratelimit-remaining-subscription-reads": "11705", + "x-ms-request-id": "1e88410a-ea34-491e-ae01-059f5a0e9112", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074044Z:e193264a-995e-4d03-9997-cb441a63254f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fad8e4b9fd9873d61dd7437ab1cae5f9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e707257d-8a16-4235-945e-5442b6f55c94", + "x-ms-client-request-id": "fad8e4b9fd9873d61dd7437ab1cae5f9", + "x-ms-correlation-request-id": "f1c73b26-77cc-4ce3-b03b-4c8a6d587f65", + "x-ms-ratelimit-remaining-subscription-reads": "11704", + "x-ms-request-id": "77f072d3-808f-4c4c-a6aa-a99846cdb1ea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074045Z:f1c73b26-77cc-4ce3-b03b-4c8a6d587f65" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "def1b17fbc5f1301c4446c0bea2aa9f9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "57a987ae-ff9b-4b99-a5e8-7f8e4b5cf638", + "x-ms-client-request-id": "def1b17fbc5f1301c4446c0bea2aa9f9", + "x-ms-correlation-request-id": "e32c8440-2047-49b9-9b5f-9aa631f6dc26", + "x-ms-ratelimit-remaining-subscription-reads": "11703", + "x-ms-request-id": "4faa0f7c-0b46-43d7-8960-b521cb06a0c7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074046Z:e32c8440-2047-49b9-9b5f-9aa631f6dc26" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bf9554fc075da8500b2fa75262822477", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "cf41830a-692f-4338-a965-5011562a1793", + "x-ms-client-request-id": "bf9554fc075da8500b2fa75262822477", + "x-ms-correlation-request-id": "57f82722-2576-4c10-9af0-b0387e583cb8", + "x-ms-ratelimit-remaining-subscription-reads": "11702", + "x-ms-request-id": "c0852833-7ddc-47cf-bb66-29cf18da2dbe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074048Z:57f82722-2576-4c10-9af0-b0387e583cb8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c0210060e85ffd76e3c4355391cb89f3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "c6288946-a1e2-446d-9ac8-a62371ead6b8", + "x-ms-client-request-id": "c0210060e85ffd76e3c4355391cb89f3", + "x-ms-correlation-request-id": "59df6b23-38df-4b20-8ddf-4417b3c84190", + "x-ms-ratelimit-remaining-subscription-reads": "11701", + "x-ms-request-id": "e35d5aff-dd91-4a6c-8577-50cccc595e0c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074049Z:59df6b23-38df-4b20-8ddf-4417b3c84190" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5d7e4a2d2534779b6049d23014aeb142", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "81b5b4ed-3562-4cb1-a232-812155dc70fa", + "x-ms-client-request-id": "5d7e4a2d2534779b6049d23014aeb142", + "x-ms-correlation-request-id": "2a64d205-a5a7-42f8-b402-ae09394ac86f", + "x-ms-ratelimit-remaining-subscription-reads": "11700", + "x-ms-request-id": "1271b950-16c7-422b-931b-309bf2bcd1f7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074050Z:2a64d205-a5a7-42f8-b402-ae09394ac86f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e9aaf51fe908139add98db98d1fd1740", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b55e05de-b026-40d6-838d-f1b9bb657d0f", + "x-ms-client-request-id": "e9aaf51fe908139add98db98d1fd1740", + "x-ms-correlation-request-id": "d8f89f80-48b6-4e81-85c6-940aa2a72069", + "x-ms-ratelimit-remaining-subscription-reads": "11699", + "x-ms-request-id": "7ea34b86-64d3-4bd9-89ad-406c2fc118e9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074051Z:d8f89f80-48b6-4e81-85c6-940aa2a72069" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1724b4a6c7043a4365aa5f151646e934", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0db58872-b162-463e-b05e-e3e94faa2f29", + "x-ms-client-request-id": "1724b4a6c7043a4365aa5f151646e934", + "x-ms-correlation-request-id": "edc21674-a2ed-4390-b2ef-1ef3cdcea310", + "x-ms-ratelimit-remaining-subscription-reads": "11698", + "x-ms-request-id": "733bbaa5-d1b2-4389-84b4-8083998b49d3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074053Z:edc21674-a2ed-4390-b2ef-1ef3cdcea310" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9c33f3139f2143ebb06a7f9b4a03a563", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "83c79fd9-4dfb-4790-bcf8-7f727bd2b905", + "x-ms-client-request-id": "9c33f3139f2143ebb06a7f9b4a03a563", + "x-ms-correlation-request-id": "f866990a-2143-4f66-9574-13e29821d3b9", + "x-ms-ratelimit-remaining-subscription-reads": "11697", + "x-ms-request-id": "793065de-313e-4944-80d2-c7d44a0a8e03", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074055Z:f866990a-2143-4f66-9574-13e29821d3b9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5f899231998a583db16f845d8984fd97", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "06762e50-0813-419e-ac58-148ad11a66eb", + "x-ms-client-request-id": "5f899231998a583db16f845d8984fd97", + "x-ms-correlation-request-id": "8f27480b-3673-4e7b-8aaa-32896b4782eb", + "x-ms-ratelimit-remaining-subscription-reads": "11696", + "x-ms-request-id": "edc3d12e-cd89-4404-b62d-f7c90ce72cb7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074056Z:8f27480b-3673-4e7b-8aaa-32896b4782eb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "de84a6af7bca061fc8e0679a48a7f062", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "8a226f95-0e00-4941-b060-101de8679df0", + "x-ms-client-request-id": "de84a6af7bca061fc8e0679a48a7f062", + "x-ms-correlation-request-id": "943370ad-6082-4be2-ac64-f7344cfcba8e", + "x-ms-ratelimit-remaining-subscription-reads": "11695", + "x-ms-request-id": "afa65db5-d7ab-433f-b4d0-8d0a9283a218", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074057Z:943370ad-6082-4be2-ac64-f7344cfcba8e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "84e3fc0489bc79aab5daeab11b8dba2c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0e9e13c3-c5dd-4e0d-b538-52780da46de2", + "x-ms-client-request-id": "84e3fc0489bc79aab5daeab11b8dba2c", + "x-ms-correlation-request-id": "e5cf9c1c-f20b-40a6-a72a-57732d47f5a0", + "x-ms-ratelimit-remaining-subscription-reads": "11694", + "x-ms-request-id": "e76a7b8f-fb37-4101-b0ea-3c60d7ae83e7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074059Z:e5cf9c1c-f20b-40a6-a72a-57732d47f5a0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a3ebe76cc77eb699728396a932a30f0a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "250c9cde-e8c0-4dd5-99a7-f06dcc372f43", + "x-ms-client-request-id": "a3ebe76cc77eb699728396a932a30f0a", + "x-ms-correlation-request-id": "0e80a8c5-569f-4707-bb37-7c1161fd9053", + "x-ms-ratelimit-remaining-subscription-reads": "11693", + "x-ms-request-id": "ff14f890-1db1-499b-876e-96a7550ee7d9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074100Z:0e80a8c5-569f-4707-bb37-7c1161fd9053" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8c58217f79a026dafc0a28ef916dea3b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "bbcb6086-cd65-4b1f-9ef9-a381510744d7", + "x-ms-client-request-id": "8c58217f79a026dafc0a28ef916dea3b", + "x-ms-correlation-request-id": "83bb547f-97bb-4571-9a05-25c0dc21c054", + "x-ms-ratelimit-remaining-subscription-reads": "11692", + "x-ms-request-id": "ef16e41e-a1aa-436b-9421-a2f968002312", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074101Z:83bb547f-97bb-4571-9a05-25c0dc21c054" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "602d3b264cbb3de4632d1139f2014712", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "8af62625-6ac5-4654-8165-04cb63b70551", + "x-ms-client-request-id": "602d3b264cbb3de4632d1139f2014712", + "x-ms-correlation-request-id": "f29ad05d-e9f6-4f7c-8f06-ff52db327747", + "x-ms-ratelimit-remaining-subscription-reads": "11691", + "x-ms-request-id": "2223cdf6-02e7-4202-8364-af1b6413cd40", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074102Z:f29ad05d-e9f6-4f7c-8f06-ff52db327747" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f932dfcb2d34f38b0dc5a7739ea92505", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "f603fb36-1e14-498b-8e74-bf29973ab156", + "x-ms-client-request-id": "f932dfcb2d34f38b0dc5a7739ea92505", + "x-ms-correlation-request-id": "ac26751f-a36d-44ba-9ad7-a0a7b2e348c1", + "x-ms-ratelimit-remaining-subscription-reads": "11690", + "x-ms-request-id": "0b42e059-dad9-4501-b479-ce43183e89f9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074104Z:ac26751f-a36d-44ba-9ad7-a0a7b2e348c1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f7825b98af75324e3d1b297367a134fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "a11b21fa-25d9-493d-94c6-66aad780fc32", + "x-ms-client-request-id": "f7825b98af75324e3d1b297367a134fa", + "x-ms-correlation-request-id": "66981023-05a2-46d8-ba38-0cf2e28e2fdd", + "x-ms-ratelimit-remaining-subscription-reads": "11689", + "x-ms-request-id": "084621db-eb12-483c-99e5-0e5f150f3651", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074105Z:66981023-05a2-46d8-ba38-0cf2e28e2fdd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b12315c3f03bf806af3a53f6a4709eb9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "2ca0167e-b99d-49d4-b379-69b141d6a165", + "x-ms-client-request-id": "b12315c3f03bf806af3a53f6a4709eb9", + "x-ms-correlation-request-id": "cc295b0d-3388-46b8-a996-13c594b30857", + "x-ms-ratelimit-remaining-subscription-reads": "11688", + "x-ms-request-id": "85436355-34d5-43f7-8215-89af575e9820", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074106Z:cc295b0d-3388-46b8-a996-13c594b30857" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "96a00c08507e1b9c91ffbb1904188b6c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "32d5f4f0-bf3f-4e77-8a39-99a5e55fbca0", + "x-ms-client-request-id": "96a00c08507e1b9c91ffbb1904188b6c", + "x-ms-correlation-request-id": "a17e4a3f-44d4-4a05-a78a-108406beccda", + "x-ms-ratelimit-remaining-subscription-reads": "11687", + "x-ms-request-id": "09056e08-f6db-477d-a0ed-a16a3651b976", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074108Z:a17e4a3f-44d4-4a05-a78a-108406beccda" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "88afad917386a7c95589473b5c588ecd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "a365f08a-ef15-436c-8ba4-6f1397105ea3", + "x-ms-client-request-id": "88afad917386a7c95589473b5c588ecd", + "x-ms-correlation-request-id": "963baa88-88fb-4c77-9467-041e1f3cf7c4", + "x-ms-ratelimit-remaining-subscription-reads": "11686", + "x-ms-request-id": "3f2d1980-7ade-44db-a59e-e5edd498609a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074109Z:963baa88-88fb-4c77-9467-041e1f3cf7c4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5b6b6f7c9d00727c79071f3c34edf497", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "4b145da7-de6d-45c3-9564-923bdb10f4c1", + "x-ms-client-request-id": "5b6b6f7c9d00727c79071f3c34edf497", + "x-ms-correlation-request-id": "423faf90-0932-4fba-b4be-deb055ca2395", + "x-ms-ratelimit-remaining-subscription-reads": "11685", + "x-ms-request-id": "c7deaec6-6311-4a05-b991-22dbbfa534dd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074110Z:423faf90-0932-4fba-b4be-deb055ca2395" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f765e6ae15c0943342f841f40961bf39", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "63a20512-f5db-44e0-8bfd-33918a2dda39", + "x-ms-client-request-id": "f765e6ae15c0943342f841f40961bf39", + "x-ms-correlation-request-id": "5a0f6fc0-3a85-4f0d-9e55-235fbd674cb5", + "x-ms-ratelimit-remaining-subscription-reads": "11684", + "x-ms-request-id": "af83d650-020f-4264-9651-d29191d0a9d2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074111Z:5a0f6fc0-3a85-4f0d-9e55-235fbd674cb5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "949cee712facf36b303d0f7e548d7268", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "1132653e-882c-4e0e-a009-5bce74102f95", + "x-ms-client-request-id": "949cee712facf36b303d0f7e548d7268", + "x-ms-correlation-request-id": "63bf0bdc-4eff-4337-8f7a-161c7620ee20", + "x-ms-ratelimit-remaining-subscription-reads": "11683", + "x-ms-request-id": "116b283c-c0bf-4175-b121-642fd44d7525", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074113Z:63bf0bdc-4eff-4337-8f7a-161c7620ee20" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "758caf9596f3670c3cd718075c876917", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "9e7ac365-2446-4d6e-b43a-c834c3f5c53e", + "x-ms-client-request-id": "758caf9596f3670c3cd718075c876917", + "x-ms-correlation-request-id": "c01321bd-506f-4045-bd93-b0eec1c7c053", + "x-ms-ratelimit-remaining-subscription-reads": "11682", + "x-ms-request-id": "7b6b9d7f-8e39-4238-89db-642e0a12af1f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074114Z:c01321bd-506f-4045-bd93-b0eec1c7c053" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "46cbe64860507eea7b71c68305b540b5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "52a2e193-0df7-40a0-8bb4-e31bbdc775e2", + "x-ms-client-request-id": "46cbe64860507eea7b71c68305b540b5", + "x-ms-correlation-request-id": "183593d6-1d41-44a7-9625-9441d443521b", + "x-ms-ratelimit-remaining-subscription-reads": "11681", + "x-ms-request-id": "2a507055-4015-4b20-8a51-7e9ce5bcd632", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074115Z:183593d6-1d41-44a7-9625-9441d443521b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "595fd9854ad5da45e23457d5166396a9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7266d813-6a5e-4bc0-80b2-539c52d40285", + "x-ms-client-request-id": "595fd9854ad5da45e23457d5166396a9", + "x-ms-correlation-request-id": "b5103347-dfa3-46ad-9a18-f7b6fefc0884", + "x-ms-ratelimit-remaining-subscription-reads": "11680", + "x-ms-request-id": "d068d374-9896-475b-b66d-b1e058484900", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074117Z:b5103347-dfa3-46ad-9a18-f7b6fefc0884" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6d36f8d32cc23417c40dfa81d0886187", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "31cdc6d1-f18b-494a-acd8-4b02f72af0ca", + "x-ms-client-request-id": "6d36f8d32cc23417c40dfa81d0886187", + "x-ms-correlation-request-id": "71a8e88c-4ac3-4e8c-9ed9-a83125d58ef7", + "x-ms-ratelimit-remaining-subscription-reads": "11679", + "x-ms-request-id": "2d894338-40cd-418b-a6c1-ad311ba659e9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074118Z:71a8e88c-4ac3-4e8c-9ed9-a83125d58ef7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "838263960f28fd41a0f0631c08156717", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "885b2797-dd04-493f-a131-3a0cc5b62fdd", + "x-ms-client-request-id": "838263960f28fd41a0f0631c08156717", + "x-ms-correlation-request-id": "d917b8de-9d77-4459-bee2-973bfd164bd7", + "x-ms-ratelimit-remaining-subscription-reads": "11678", + "x-ms-request-id": "b87f7b55-49ac-48fb-ba0a-e27c5b7d27fd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074119Z:d917b8de-9d77-4459-bee2-973bfd164bd7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0db01ddbd27f58f3c12a95c850c4095a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0ff759ea-a443-4766-befb-08cf114b4a5a", + "x-ms-client-request-id": "0db01ddbd27f58f3c12a95c850c4095a", + "x-ms-correlation-request-id": "a0857ecf-057c-4d77-be01-e048a993a04e", + "x-ms-ratelimit-remaining-subscription-reads": "11677", + "x-ms-request-id": "d0ff9673-d838-4ab9-a41a-b957688e7936", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074121Z:a0857ecf-057c-4d77-be01-e048a993a04e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b33ed0d312e1c381b638ccd1c9fb2caf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "f7d61c4b-a841-414a-af0a-b04962cb9ff3", + "x-ms-client-request-id": "b33ed0d312e1c381b638ccd1c9fb2caf", + "x-ms-correlation-request-id": "a6c76ad2-6411-497b-948f-f2741199835f", + "x-ms-ratelimit-remaining-subscription-reads": "11676", + "x-ms-request-id": "09bbb5ca-8c39-42a0-9028-452d332cd8da", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074122Z:a6c76ad2-6411-497b-948f-f2741199835f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b3a5e2a554d7c3077029c1fd7a79addc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ef0a9495-d8b4-48db-8a88-1559718e901d", + "x-ms-client-request-id": "b3a5e2a554d7c3077029c1fd7a79addc", + "x-ms-correlation-request-id": "e37d8431-d20c-4650-b889-f38e468a5d0c", + "x-ms-ratelimit-remaining-subscription-reads": "11675", + "x-ms-request-id": "a72f0f6f-a803-4d1e-9426-08e5b0162daa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074123Z:e37d8431-d20c-4650-b889-f38e468a5d0c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "374808e7b4d6c9359bec564606218fc6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "dd189794-c0ef-440f-9ce6-4b985ff3eafd", + "x-ms-client-request-id": "374808e7b4d6c9359bec564606218fc6", + "x-ms-correlation-request-id": "ba492568-a361-49fb-b560-f7e74895a12d", + "x-ms-ratelimit-remaining-subscription-reads": "11674", + "x-ms-request-id": "0f17501a-18a6-4b0a-94dc-b439b6464243", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074124Z:ba492568-a361-49fb-b560-f7e74895a12d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6d22e5fe561e7e82c87b42b85084483c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a02fbdb6-c8d8-439f-a2de-072b1ddb3387", + "x-ms-client-request-id": "6d22e5fe561e7e82c87b42b85084483c", + "x-ms-correlation-request-id": "ebeb5890-76e5-4a2f-b17b-b8e06c554916", + "x-ms-ratelimit-remaining-subscription-reads": "11673", + "x-ms-request-id": "86638380-f63e-4f6d-8314-45446838fb3b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074126Z:ebeb5890-76e5-4a2f-b17b-b8e06c554916" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c0eaef8af4b2f0d9addc17eafdc1bd4e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e0417167-7aff-4680-86f8-9f4ec739d1ea", + "x-ms-client-request-id": "c0eaef8af4b2f0d9addc17eafdc1bd4e", + "x-ms-correlation-request-id": "eacb444e-d350-43a3-9f80-9170d0751d41", + "x-ms-ratelimit-remaining-subscription-reads": "11672", + "x-ms-request-id": "35d90cad-df75-41c0-8867-817476ee4701", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074127Z:eacb444e-d350-43a3-9f80-9170d0751d41" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "94fefb9a405790bd86c96f5b727d7817", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "38efcdf4-164b-425f-b3ef-2edb6fad6b86", + "x-ms-client-request-id": "94fefb9a405790bd86c96f5b727d7817", + "x-ms-correlation-request-id": "3d840328-9046-44e1-a467-d7a6007997b5", + "x-ms-ratelimit-remaining-subscription-reads": "11671", + "x-ms-request-id": "bef2301e-1097-4b31-9559-47b2a43049ff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074128Z:3d840328-9046-44e1-a467-d7a6007997b5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "16bb19a4ce370a140c31c0423f978107", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "d0e67521-bc95-4403-9ecd-360e3f72f890", + "x-ms-client-request-id": "16bb19a4ce370a140c31c0423f978107", + "x-ms-correlation-request-id": "8837b861-5e9d-4e86-badb-2af74da72930", + "x-ms-ratelimit-remaining-subscription-reads": "11670", + "x-ms-request-id": "f85f9e65-e1b3-4bbb-b407-9c17f752f5fb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074130Z:8837b861-5e9d-4e86-badb-2af74da72930" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "551ef3bdb4854ae532593ae8857e7e2f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "cc840376-1f9d-4f23-85e5-c447148e1cf6", + "x-ms-client-request-id": "551ef3bdb4854ae532593ae8857e7e2f", + "x-ms-correlation-request-id": "fe89e68d-d406-42c3-802e-fef6e47b9c97", + "x-ms-ratelimit-remaining-subscription-reads": "11669", + "x-ms-request-id": "4175a063-3179-44ee-bd21-402342025303", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074131Z:fe89e68d-d406-42c3-802e-fef6e47b9c97" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e346ff63a605cb17e6f48825807b51ee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8077cc7e-d30f-4b83-a80a-8a74939aef8b", + "x-ms-client-request-id": "e346ff63a605cb17e6f48825807b51ee", + "x-ms-correlation-request-id": "91821cf7-5a66-40c7-a0c6-657602249f62", + "x-ms-ratelimit-remaining-subscription-reads": "11668", + "x-ms-request-id": "51f2eeb2-a14c-4d6c-8480-24b1efc098f7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074132Z:91821cf7-5a66-40c7-a0c6-657602249f62" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7e9d6748235ef0923471e4dd942b848e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "83be0be1-5275-4b07-8c12-60ed128d2c33", + "x-ms-client-request-id": "7e9d6748235ef0923471e4dd942b848e", + "x-ms-correlation-request-id": "fad62537-192d-4139-a119-a40e373fe8b5", + "x-ms-ratelimit-remaining-subscription-reads": "11667", + "x-ms-request-id": "7823c5cd-97fd-4302-a197-67618d6ed613", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074134Z:fad62537-192d-4139-a119-a40e373fe8b5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3fde90b39d511702dc536e902bc0cab7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "ffd310f4-6056-45d1-ad2e-1e4e3cd7c8ac", + "x-ms-client-request-id": "3fde90b39d511702dc536e902bc0cab7", + "x-ms-correlation-request-id": "eeec34a4-5615-49b1-910c-b7f2a91ed8c3", + "x-ms-ratelimit-remaining-subscription-reads": "11666", + "x-ms-request-id": "063625fe-6935-4b76-97d3-1059c433bdf1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074135Z:eeec34a4-5615-49b1-910c-b7f2a91ed8c3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1d9f4c0800e140d06d56af94c13a36ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0ed33b65-5bd8-4c5b-861f-fe266c35c36e", + "x-ms-client-request-id": "1d9f4c0800e140d06d56af94c13a36ba", + "x-ms-correlation-request-id": "d1569aef-2fb4-4ca1-8feb-6372f94bbb88", + "x-ms-ratelimit-remaining-subscription-reads": "11665", + "x-ms-request-id": "81e01f26-c5cf-425f-9c29-2f4bcb6716e8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074136Z:d1569aef-2fb4-4ca1-8feb-6372f94bbb88" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ef72fa6f119cab9d6585a20bb501c474", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ac362f57-150f-4edb-adc9-912b35189981", + "x-ms-client-request-id": "ef72fa6f119cab9d6585a20bb501c474", + "x-ms-correlation-request-id": "9fccc09d-478b-4c0a-bfe8-362a82331ea6", + "x-ms-ratelimit-remaining-subscription-reads": "11664", + "x-ms-request-id": "5799485d-7954-4fe7-ba5d-c5154b4cf93e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074138Z:9fccc09d-478b-4c0a-bfe8-362a82331ea6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "48d42da6678bb2adbf9ed1faed6d56a2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0e5adc4b-a13e-4763-93c8-401e7d28d957", + "x-ms-client-request-id": "48d42da6678bb2adbf9ed1faed6d56a2", + "x-ms-correlation-request-id": "b1e27f88-05d0-4eba-ad08-dd78fa45d250", + "x-ms-ratelimit-remaining-subscription-reads": "11663", + "x-ms-request-id": "d7b23b44-80e9-40a7-b55b-623ef68f2987", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074139Z:b1e27f88-05d0-4eba-ad08-dd78fa45d250" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3121b31cda4df61aaef4b85c5ec48b6c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8a0696b1-9f87-4335-af10-97b0c9467ec3", + "x-ms-client-request-id": "3121b31cda4df61aaef4b85c5ec48b6c", + "x-ms-correlation-request-id": "afeaa830-cbb5-4142-ac38-a293f08d0745", + "x-ms-ratelimit-remaining-subscription-reads": "11662", + "x-ms-request-id": "da4cb98b-ba2e-4b61-999b-3de008798df5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074140Z:afeaa830-cbb5-4142-ac38-a293f08d0745" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "93ed3b92ee65082e4cbf30fd40a2bdf7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5e18d4cb-29d6-4246-bd89-69b43c51986f", + "x-ms-client-request-id": "93ed3b92ee65082e4cbf30fd40a2bdf7", + "x-ms-correlation-request-id": "c06962ad-1158-4349-b59c-a9c59afa313e", + "x-ms-ratelimit-remaining-subscription-reads": "11661", + "x-ms-request-id": "98a95eb5-cfc0-46bb-8d88-56b8cf2d8ef8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074142Z:c06962ad-1158-4349-b59c-a9c59afa313e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "01efff2e92e0cb2612dd9997ae5054fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6a53d1e8-c9ac-403a-97aa-cdc4684a8bd5", + "x-ms-client-request-id": "01efff2e92e0cb2612dd9997ae5054fa", + "x-ms-correlation-request-id": "3714e51e-d837-4781-b5c2-0234ef2d5677", + "x-ms-ratelimit-remaining-subscription-reads": "11660", + "x-ms-request-id": "ab100375-2217-4b03-a9b4-370eb6644ace", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074143Z:3714e51e-d837-4781-b5c2-0234ef2d5677" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b2686413c3802d3c8418e48eaa1db60c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "266114f9-c414-49a8-8b24-f12c4f2fc993", + "x-ms-client-request-id": "b2686413c3802d3c8418e48eaa1db60c", + "x-ms-correlation-request-id": "54683d1c-5c4e-4f45-9020-b22a315f6f5f", + "x-ms-ratelimit-remaining-subscription-reads": "11659", + "x-ms-request-id": "25d1a440-0c61-4606-ab1f-9d4689d28e3c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074144Z:54683d1c-5c4e-4f45-9020-b22a315f6f5f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5e2dc13689d5ff8c14228087559759fb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9e409922-aae7-4494-9711-1773556134bc", + "x-ms-client-request-id": "5e2dc13689d5ff8c14228087559759fb", + "x-ms-correlation-request-id": "46aa5637-f86a-4264-8243-45a5f8fb3370", + "x-ms-ratelimit-remaining-subscription-reads": "11658", + "x-ms-request-id": "7922ac6b-530d-4ae4-bd0a-937b8c55e550", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074146Z:46aa5637-f86a-4264-8243-45a5f8fb3370" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dbe9366b0a3a6b77c3c27cc7ad9821f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1a33d8b3-4739-4059-a239-95c34f592356", + "x-ms-client-request-id": "dbe9366b0a3a6b77c3c27cc7ad9821f5", + "x-ms-correlation-request-id": "e9f4c116-28d2-4c31-a57f-836c66754a68", + "x-ms-ratelimit-remaining-subscription-reads": "11657", + "x-ms-request-id": "6ad4854c-00ed-4af2-a4ff-59475d8572c3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074147Z:e9f4c116-28d2-4c31-a57f-836c66754a68" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ed608c27f5238a25d8689e5d42b5d7ed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "8c8dc9d9-d120-46ca-91d1-895f6081bb94", + "x-ms-client-request-id": "ed608c27f5238a25d8689e5d42b5d7ed", + "x-ms-correlation-request-id": "cc577e28-1767-4304-9995-d6f35d10d3d0", + "x-ms-ratelimit-remaining-subscription-reads": "11656", + "x-ms-request-id": "2deceafe-5419-4faf-abb7-472346d245be", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074148Z:cc577e28-1767-4304-9995-d6f35d10d3d0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7422e8bfda342cd149c19b120dc5517b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c0e3e1d6-026b-4791-8eb1-13d0494273d5", + "x-ms-client-request-id": "7422e8bfda342cd149c19b120dc5517b", + "x-ms-correlation-request-id": "93f10553-7c43-4aa9-9f09-20608078fed9", + "x-ms-ratelimit-remaining-subscription-reads": "11655", + "x-ms-request-id": "ce471206-faf5-4459-989a-2d9a419daf33", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074149Z:93f10553-7c43-4aa9-9f09-20608078fed9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c8608b016c3675d8105f03d26c19290d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "3aa785d1-c088-40f5-8980-a28949133230", + "x-ms-client-request-id": "c8608b016c3675d8105f03d26c19290d", + "x-ms-correlation-request-id": "3f7b0cdc-b25c-421a-8748-1b7246ad8469", + "x-ms-ratelimit-remaining-subscription-reads": "11654", + "x-ms-request-id": "b076fbd8-570b-4d6e-90b9-68265d194d7c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074151Z:3f7b0cdc-b25c-421a-8748-1b7246ad8469" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c5078feaac754cc1bb34a3615a127d13", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "196a2e88-ab1c-4259-9f35-fe154cefba2d", + "x-ms-client-request-id": "c5078feaac754cc1bb34a3615a127d13", + "x-ms-correlation-request-id": "a04d70e9-e0af-401d-bf67-77e1aba168db", + "x-ms-ratelimit-remaining-subscription-reads": "11653", + "x-ms-request-id": "ba73bb40-1f8f-4f23-9622-6eb83c28576d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074152Z:a04d70e9-e0af-401d-bf67-77e1aba168db" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b75c22160f5553b610ad63d4d7ffbf30", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "fbec1f43-6992-4ddb-a39b-359f8302a069", + "x-ms-client-request-id": "b75c22160f5553b610ad63d4d7ffbf30", + "x-ms-correlation-request-id": "95d1a1eb-91c9-4765-a88f-de27f5997c8f", + "x-ms-ratelimit-remaining-subscription-reads": "11652", + "x-ms-request-id": "71e698ee-8821-419f-b440-21d3eed8cd3b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074153Z:95d1a1eb-91c9-4765-a88f-de27f5997c8f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7d278d988cbd5405c9130d01c8761afd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "cd7492ac-8676-4b9d-8def-cf95ae9b119b", + "x-ms-client-request-id": "7d278d988cbd5405c9130d01c8761afd", + "x-ms-correlation-request-id": "6b8e7137-8f3f-4a97-b469-8cb7acbbefa2", + "x-ms-ratelimit-remaining-subscription-reads": "11651", + "x-ms-request-id": "6437fe1d-1e5d-4b2b-a08b-60428b425b6d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074155Z:6b8e7137-8f3f-4a97-b469-8cb7acbbefa2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "49bbefe271bddbb8d8b4b5c848ec74bb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5fd35568-d614-473a-9fe4-c00156ee6090", + "x-ms-client-request-id": "49bbefe271bddbb8d8b4b5c848ec74bb", + "x-ms-correlation-request-id": "fcf998ec-30b5-48c1-9b04-4963e5973d8f", + "x-ms-ratelimit-remaining-subscription-reads": "11650", + "x-ms-request-id": "2bb7a223-adf9-4faf-ad3d-ce594eebeed9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074156Z:fcf998ec-30b5-48c1-9b04-4963e5973d8f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cdc97374ffeb8a561c07ed4101b48a99", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "db184152-6a28-4a32-957b-665c1af2453a", + "x-ms-client-request-id": "cdc97374ffeb8a561c07ed4101b48a99", + "x-ms-correlation-request-id": "4e7aa669-82b0-410d-848f-2e3afe089b51", + "x-ms-ratelimit-remaining-subscription-reads": "11649", + "x-ms-request-id": "661c4620-9488-42e7-a44b-0fd4e31c191a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074157Z:4e7aa669-82b0-410d-848f-2e3afe089b51" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e7f2659276432673d44ba508d73d0bdd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "26c45a56-590e-4a91-90ca-9aa3492907c4", + "x-ms-client-request-id": "e7f2659276432673d44ba508d73d0bdd", + "x-ms-correlation-request-id": "21d922e4-44a2-4bb6-a036-d5c10da0e280", + "x-ms-ratelimit-remaining-subscription-reads": "11648", + "x-ms-request-id": "e052cf25-f73c-430e-975d-837fe0ebb5d4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074158Z:21d922e4-44a2-4bb6-a036-d5c10da0e280" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "548d519e4dade21299312cb58377da23", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "19ed807f-e138-4d36-877c-79a8445389d7", + "x-ms-client-request-id": "548d519e4dade21299312cb58377da23", + "x-ms-correlation-request-id": "a576ed5f-5951-4f68-8ea2-a76942fa92c5", + "x-ms-ratelimit-remaining-subscription-reads": "11647", + "x-ms-request-id": "7c66fab3-d711-4062-b9e4-d4af0e9bb188", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074200Z:a576ed5f-5951-4f68-8ea2-a76942fa92c5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e2361b298df9fe7800a2f89f594db2df", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1fd86e62-598e-49ed-8439-4ffd88f28a5b", + "x-ms-client-request-id": "e2361b298df9fe7800a2f89f594db2df", + "x-ms-correlation-request-id": "4f6bcdb7-c839-444e-8765-28b9902ae80a", + "x-ms-ratelimit-remaining-subscription-reads": "11646", + "x-ms-request-id": "b23dcdb8-52a3-45da-9538-484dafdbe9e3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074201Z:4f6bcdb7-c839-444e-8765-28b9902ae80a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "afa310fb352745ec53104e1149bda35d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0669bbc7-7400-4f4d-9cf8-01f7406e9085", + "x-ms-client-request-id": "afa310fb352745ec53104e1149bda35d", + "x-ms-correlation-request-id": "260cc3c9-a39c-4cf2-8e12-62ca3b6d51e0", + "x-ms-ratelimit-remaining-subscription-reads": "11645", + "x-ms-request-id": "4f645389-fddc-43a1-a270-06605222348d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074202Z:260cc3c9-a39c-4cf2-8e12-62ca3b6d51e0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bcde8271280711e3d98e540a5573894c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "d813002b-4c04-4b60-9c4f-b3ab9048c721", + "x-ms-client-request-id": "bcde8271280711e3d98e540a5573894c", + "x-ms-correlation-request-id": "526087ca-ee8d-475a-99a7-6b15f989e664", + "x-ms-ratelimit-remaining-subscription-reads": "11644", + "x-ms-request-id": "04a3da27-a3da-413b-b0be-4763ab420002", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074204Z:526087ca-ee8d-475a-99a7-6b15f989e664" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "73b94d7f2ad3f3fb2ef08fe93e66b442", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ad0a2220-e1b0-48e7-859e-f0493c4075cc", + "x-ms-client-request-id": "73b94d7f2ad3f3fb2ef08fe93e66b442", + "x-ms-correlation-request-id": "e70b27a6-8e64-473c-bf6a-02a220c255d0", + "x-ms-ratelimit-remaining-subscription-reads": "11643", + "x-ms-request-id": "bb7d4581-600f-4dc5-b8f1-b8a9cceafc93", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074205Z:e70b27a6-8e64-473c-bf6a-02a220c255d0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d72d9afff66fd3d82d91d698e0e1f0e0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "63eef1dc-1f15-4973-8f71-dabbb87ec54f", + "x-ms-client-request-id": "d72d9afff66fd3d82d91d698e0e1f0e0", + "x-ms-correlation-request-id": "b46bda59-6a7c-4759-a357-3269df1ad01d", + "x-ms-ratelimit-remaining-subscription-reads": "11642", + "x-ms-request-id": "34340fda-52c3-4414-804b-ec583c10fb90", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074206Z:b46bda59-6a7c-4759-a357-3269df1ad01d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fc9201873004478986ea8d1699fad272", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "2cc9394c-ffda-412a-ac30-48d4d061de2c", + "x-ms-client-request-id": "fc9201873004478986ea8d1699fad272", + "x-ms-correlation-request-id": "a651335a-93d1-4bbd-87dc-16e022af3a61", + "x-ms-ratelimit-remaining-subscription-reads": "11641", + "x-ms-request-id": "5317f804-adbe-466e-934c-544c26582907", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074208Z:a651335a-93d1-4bbd-87dc-16e022af3a61" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ba0b12dab14588dd74e645425362134c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "55425732-69e5-4828-8773-09deb9e6aa8d", + "x-ms-client-request-id": "ba0b12dab14588dd74e645425362134c", + "x-ms-correlation-request-id": "80e878fb-2acf-4314-b616-ec138c059255", + "x-ms-ratelimit-remaining-subscription-reads": "11640", + "x-ms-request-id": "8ffaea8f-bdc7-4541-b117-189b0e14d721", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074209Z:80e878fb-2acf-4314-b616-ec138c059255" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3c62af00b7d3cf3d10e6508469c13a33", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "03a5f93d-8706-44d7-bc78-c8f9d90b236c", + "x-ms-client-request-id": "3c62af00b7d3cf3d10e6508469c13a33", + "x-ms-correlation-request-id": "368cbb0f-f015-4fd0-9892-5c22e085dceb", + "x-ms-ratelimit-remaining-subscription-reads": "11639", + "x-ms-request-id": "e758052c-3d76-4b6a-bb84-6aa7890fd49b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074210Z:368cbb0f-f015-4fd0-9892-5c22e085dceb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cebe63bf35d6d59b240a871eea47f323", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6d2f64e9-6e50-4a54-8860-f35a1666d4fd", + "x-ms-client-request-id": "cebe63bf35d6d59b240a871eea47f323", + "x-ms-correlation-request-id": "df6954dc-270b-4065-8c4d-c4ba44b0118c", + "x-ms-ratelimit-remaining-subscription-reads": "11638", + "x-ms-request-id": "5dc369e8-e2e0-4167-b380-d9b59d4cf1ce", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074212Z:df6954dc-270b-4065-8c4d-c4ba44b0118c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e91540d79597229fd53ca95e61581fb2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "679e0c2c-d00d-4f94-9ffb-9eb6bca8407f", + "x-ms-client-request-id": "e91540d79597229fd53ca95e61581fb2", + "x-ms-correlation-request-id": "e105e120-e01c-4850-a3bd-36065f207501", + "x-ms-ratelimit-remaining-subscription-reads": "11637", + "x-ms-request-id": "b5c6d3aa-ec27-4bc1-917c-a655ea4aed4c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074213Z:e105e120-e01c-4850-a3bd-36065f207501" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f08312ac44a4cb76138d18c9301fe4c9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f1bcaf62-aea6-442e-a6e5-c682a51afa72", + "x-ms-client-request-id": "f08312ac44a4cb76138d18c9301fe4c9", + "x-ms-correlation-request-id": "0e01a951-ce61-40e9-a4c1-5d437b2dd988", + "x-ms-ratelimit-remaining-subscription-reads": "11636", + "x-ms-request-id": "3e18c709-d800-4c7c-89d8-a31b22fbc241", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074214Z:0e01a951-ce61-40e9-a4c1-5d437b2dd988" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "28ac2df250ac299bc49cf99a8c3c74cc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f72b65b4-b24d-4301-bd5d-ef745368324f", + "x-ms-client-request-id": "28ac2df250ac299bc49cf99a8c3c74cc", + "x-ms-correlation-request-id": "24469c8b-46a7-4350-aabd-e41c97d321ae", + "x-ms-ratelimit-remaining-subscription-reads": "11635", + "x-ms-request-id": "6ac89a6b-ef47-4734-b113-df7bb2bee8ae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074215Z:24469c8b-46a7-4350-aabd-e41c97d321ae" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d771d5ea03c4927fca4ad60a7dd6f2b5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2364834c-e7e9-4ff8-a738-8e5fe01d2eb8", + "x-ms-client-request-id": "d771d5ea03c4927fca4ad60a7dd6f2b5", + "x-ms-correlation-request-id": "5a3cfb98-ed6c-428c-85fa-3c9eb1796fb8", + "x-ms-ratelimit-remaining-subscription-reads": "11634", + "x-ms-request-id": "7b7a8946-4a78-4717-874c-2732968864e4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074217Z:5a3cfb98-ed6c-428c-85fa-3c9eb1796fb8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "336be057f7ab5c0677592b084bdb3ed7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "18c22e4f-f4ec-4d53-ad2f-f499cc46ed79", + "x-ms-client-request-id": "336be057f7ab5c0677592b084bdb3ed7", + "x-ms-correlation-request-id": "f5e995bf-f847-4eac-a69f-15007b8e42a4", + "x-ms-ratelimit-remaining-subscription-reads": "11633", + "x-ms-request-id": "9b8abd70-9653-4518-9e8a-b04923b6a480", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074218Z:f5e995bf-f847-4eac-a69f-15007b8e42a4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5bde4c190dadef04ae1a5d627991acee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4f6c8b7f-18c8-4810-991a-d100a92570f8", + "x-ms-client-request-id": "5bde4c190dadef04ae1a5d627991acee", + "x-ms-correlation-request-id": "49c42e25-a365-4afe-a378-cc23eccb9c0b", + "x-ms-ratelimit-remaining-subscription-reads": "11632", + "x-ms-request-id": "508f9e21-f4f9-47e8-ba0e-b2fe5a71d45e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074219Z:49c42e25-a365-4afe-a378-cc23eccb9c0b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ac4343a940d0f320ce15606ad77646ee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6b141b70-c6a0-457c-80e5-5fab5a54ef7a", + "x-ms-client-request-id": "ac4343a940d0f320ce15606ad77646ee", + "x-ms-correlation-request-id": "e5eea29e-c0c4-4a5f-b5e2-818c0883f461", + "x-ms-ratelimit-remaining-subscription-reads": "11631", + "x-ms-request-id": "c5cb3eb2-0f24-4362-8e9e-eed26ab54630", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074221Z:e5eea29e-c0c4-4a5f-b5e2-818c0883f461" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "31f1fe0b97f74907db7c859199a4e2e6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8bfcd00d-0883-4ad9-bafd-2be060a79fcb", + "x-ms-client-request-id": "31f1fe0b97f74907db7c859199a4e2e6", + "x-ms-correlation-request-id": "4f613157-ff4d-4b02-b8d1-c7e36034a69b", + "x-ms-ratelimit-remaining-subscription-reads": "11630", + "x-ms-request-id": "6ead0a7a-f49f-4154-9ce7-b7ed3bfa5526", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074222Z:4f613157-ff4d-4b02-b8d1-c7e36034a69b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "085e3dad9298d8062bea8c98ac9a1737", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "502eb9d1-a2ac-4c03-a561-ea32facc3747", + "x-ms-client-request-id": "085e3dad9298d8062bea8c98ac9a1737", + "x-ms-correlation-request-id": "9524d738-1ed5-4aa1-aeb7-32a1c8901177", + "x-ms-ratelimit-remaining-subscription-reads": "11629", + "x-ms-request-id": "9680e48f-681b-4f37-9381-ec8ad2855699", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074223Z:9524d738-1ed5-4aa1-aeb7-32a1c8901177" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7b566ed37a9f12f63cf9d054ba8e5a2a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9ab28e60-98e7-4cef-a896-9f5c1098f73c", + "x-ms-client-request-id": "7b566ed37a9f12f63cf9d054ba8e5a2a", + "x-ms-correlation-request-id": "88f5c1b4-22b8-40eb-bad0-9249cdbc5007", + "x-ms-ratelimit-remaining-subscription-reads": "11628", + "x-ms-request-id": "dfb9c5e0-77e8-45db-aae0-88651b81db22", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074225Z:88f5c1b4-22b8-40eb-bad0-9249cdbc5007" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9abc7a333e187855f818050d0a6f9c40", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "74b9d789-810f-4627-b93a-e247c7708690", + "x-ms-client-request-id": "9abc7a333e187855f818050d0a6f9c40", + "x-ms-correlation-request-id": "b8f7a635-702f-4a35-9398-991071bc287e", + "x-ms-ratelimit-remaining-subscription-reads": "11627", + "x-ms-request-id": "d38ee5cc-e772-4b6e-b409-95ff3bcb1f4c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074226Z:b8f7a635-702f-4a35-9398-991071bc287e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2abd4e64674d3246474bcc9fc2b11e9d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d5a9233d-5beb-4a40-8124-e4b36ad6fa93", + "x-ms-client-request-id": "2abd4e64674d3246474bcc9fc2b11e9d", + "x-ms-correlation-request-id": "30faa31b-3d5b-47bf-81e3-9bb160944af3", + "x-ms-ratelimit-remaining-subscription-reads": "11626", + "x-ms-request-id": "2a3033a8-5d86-4798-8892-672af40fb4fe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074227Z:30faa31b-3d5b-47bf-81e3-9bb160944af3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "326461907ddd951f19de828775e908cc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "54a0f9d0-639d-4705-8556-f0e2b5456bc7", + "x-ms-client-request-id": "326461907ddd951f19de828775e908cc", + "x-ms-correlation-request-id": "3b0f8301-2e27-4d44-92bd-8276cfb0e2fd", + "x-ms-ratelimit-remaining-subscription-reads": "11625", + "x-ms-request-id": "f0cd3dbd-f9f5-456d-8fd7-270cb3151edd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074229Z:3b0f8301-2e27-4d44-92bd-8276cfb0e2fd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6bef8f5c2fd1ccdd348952cc72b6b646", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4b04500a-0248-4019-ab87-918314957962", + "x-ms-client-request-id": "6bef8f5c2fd1ccdd348952cc72b6b646", + "x-ms-correlation-request-id": "8ba7dcbf-66d3-4d75-b8eb-a0b4f8a056d8", + "x-ms-ratelimit-remaining-subscription-reads": "11624", + "x-ms-request-id": "b308caac-87e7-4f62-8bdd-d9d7b77fe191", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074230Z:8ba7dcbf-66d3-4d75-b8eb-a0b4f8a056d8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a87c68f96a0ae7632f28116fe4bfbd5d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e7625538-1b03-4513-b894-cc1b1f53f23e", + "x-ms-client-request-id": "a87c68f96a0ae7632f28116fe4bfbd5d", + "x-ms-correlation-request-id": "97b96905-1c19-461a-a5d4-1a881e12bf0a", + "x-ms-ratelimit-remaining-subscription-reads": "11623", + "x-ms-request-id": "ac0d1133-5a4c-4a8a-b12b-99e4020d53fa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074231Z:97b96905-1c19-461a-a5d4-1a881e12bf0a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3242ff43b2c161cc8498fe532a522362", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "51f572ae-efa9-42b9-a92f-fda695b4aee9", + "x-ms-client-request-id": "3242ff43b2c161cc8498fe532a522362", + "x-ms-correlation-request-id": "9da18258-9d51-4576-9843-8ca0daef981a", + "x-ms-ratelimit-remaining-subscription-reads": "11622", + "x-ms-request-id": "83068164-daf0-4f04-8bbe-527402d3f677", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074233Z:9da18258-9d51-4576-9843-8ca0daef981a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0d8d3c275f6cf2c22c083ca81d6de875", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "11bfc2b1-49d0-419a-9ffa-9de3b4746ef0", + "x-ms-client-request-id": "0d8d3c275f6cf2c22c083ca81d6de875", + "x-ms-correlation-request-id": "5f53897a-4d92-46e9-8a1f-1479439c7525", + "x-ms-ratelimit-remaining-subscription-reads": "11621", + "x-ms-request-id": "70376338-f1c8-4fd3-8ac0-98fc672036fb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074234Z:5f53897a-4d92-46e9-8a1f-1479439c7525" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7288f5cc837347849b1b23716b0fbcdc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0df1d8bd-5cb0-4314-a060-e3102e660d5e", + "x-ms-client-request-id": "7288f5cc837347849b1b23716b0fbcdc", + "x-ms-correlation-request-id": "08f088c1-c3e0-448f-b022-08a449b79f9d", + "x-ms-ratelimit-remaining-subscription-reads": "11620", + "x-ms-request-id": "c2d2394e-e932-4023-a760-80d10ebb112e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074235Z:08f088c1-c3e0-448f-b022-08a449b79f9d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a847af05af31e4f03d5005b975234316", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "fa92ead6-dd14-4bec-8687-891174a46a6e", + "x-ms-client-request-id": "a847af05af31e4f03d5005b975234316", + "x-ms-correlation-request-id": "bbd861b9-e53c-4e72-af76-b19e01dbc028", + "x-ms-ratelimit-remaining-subscription-reads": "11619", + "x-ms-request-id": "4bf8f834-2c5f-4902-8553-42b6cd61d1cc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074236Z:bbd861b9-e53c-4e72-af76-b19e01dbc028" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "358689b0b0caa3eeb74671513b50861c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a70c947e-09bd-4a74-9405-e3ab5b195d86", + "x-ms-client-request-id": "358689b0b0caa3eeb74671513b50861c", + "x-ms-correlation-request-id": "8bc3604a-1e29-4ef4-a3b7-8ad0eca3de46", + "x-ms-ratelimit-remaining-subscription-reads": "11618", + "x-ms-request-id": "066d7633-dfce-4d93-92d6-bfc370f17de3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074238Z:8bc3604a-1e29-4ef4-a3b7-8ad0eca3de46" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6ea3604b3f261d4304a435227ecbd178", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4d3bc8fd-4c19-4710-b0a1-f56526f6489a", + "x-ms-client-request-id": "6ea3604b3f261d4304a435227ecbd178", + "x-ms-correlation-request-id": "7df95742-3f3c-4dc5-aea2-8ef83392d659", + "x-ms-ratelimit-remaining-subscription-reads": "11617", + "x-ms-request-id": "2c532abf-2f5b-4e60-94dc-9bbaae7ab70c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074239Z:7df95742-3f3c-4dc5-aea2-8ef83392d659" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e2c00cd887885412c0a3f0eb3d9fa8ec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:42: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": "1e7e6047-6c48-4327-a144-56ab183929c5", + "x-ms-client-request-id": "e2c00cd887885412c0a3f0eb3d9fa8ec", + "x-ms-correlation-request-id": "cd363354-b845-4a1f-9747-2ea7617d2e85", + "x-ms-ratelimit-remaining-subscription-reads": "11616", + "x-ms-request-id": "62109dcb-705a-4689-9b3a-8c939c8cc0f3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074240Z:cd363354-b845-4a1f-9747-2ea7617d2e85" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "156de9cad48070f0466931257bcc25eb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c8b9ed0e-2a08-43ea-91b4-b7bd909c83ce", + "x-ms-client-request-id": "156de9cad48070f0466931257bcc25eb", + "x-ms-correlation-request-id": "b5d23cf6-e1f4-4f87-a992-212d2f2c42fe", + "x-ms-ratelimit-remaining-subscription-reads": "11615", + "x-ms-request-id": "5fdeeeec-4ba8-491f-a4f1-b3099424db5c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074242Z:b5d23cf6-e1f4-4f87-a992-212d2f2c42fe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2e78f975a48fc4944d4eae834f58df64", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "709154fb-5e9a-44c1-83b9-3c955a0b6a7c", + "x-ms-client-request-id": "2e78f975a48fc4944d4eae834f58df64", + "x-ms-correlation-request-id": "600a57ce-48a9-4920-9b4f-9ae7de37f574", + "x-ms-ratelimit-remaining-subscription-reads": "11614", + "x-ms-request-id": "e9a5a0df-3575-4b98-a7d4-10b5daca23e4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074243Z:600a57ce-48a9-4920-9b4f-9ae7de37f574" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "955848fbbb5e04f81c509c1f56ecd9f3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e7535410-c948-4fd0-9388-6d8a2e59f0e9", + "x-ms-client-request-id": "955848fbbb5e04f81c509c1f56ecd9f3", + "x-ms-correlation-request-id": "514db6ca-7126-425e-ac10-ee2048d174a6", + "x-ms-ratelimit-remaining-subscription-reads": "11613", + "x-ms-request-id": "b794027e-9c01-4536-ba40-b06a0ecc96e4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074244Z:514db6ca-7126-425e-ac10-ee2048d174a6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4476057d7a26265c54a8c731256c21ed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "be639505-7ecc-4586-9e05-eeab35009ed8", + "x-ms-client-request-id": "4476057d7a26265c54a8c731256c21ed", + "x-ms-correlation-request-id": "1c92b486-d9c8-4b55-8ac7-7813da6bcc67", + "x-ms-ratelimit-remaining-subscription-reads": "11612", + "x-ms-request-id": "1989bf04-d348-4733-8060-e6d70f431a85", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074246Z:1c92b486-d9c8-4b55-8ac7-7813da6bcc67" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "322acc8a9074b98d0074123f08756e61", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8c6dc083-cd8e-4111-880b-2cc05df1e5f4", + "x-ms-client-request-id": "322acc8a9074b98d0074123f08756e61", + "x-ms-correlation-request-id": "f11fe909-fe09-4afe-a234-598812f3b91a", + "x-ms-ratelimit-remaining-subscription-reads": "11611", + "x-ms-request-id": "d480cd78-c63b-4ce6-8f20-4811ae41a974", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074247Z:f11fe909-fe09-4afe-a234-598812f3b91a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4905ba759ae1813eec3140b5f3c7deaf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "415a1416-5abf-4816-ab81-3660aeea02f7", + "x-ms-client-request-id": "4905ba759ae1813eec3140b5f3c7deaf", + "x-ms-correlation-request-id": "21d6b215-ca14-40a8-a379-fad596703aad", + "x-ms-ratelimit-remaining-subscription-reads": "11610", + "x-ms-request-id": "5ab343ce-5f92-4405-8e35-a34af02376e0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074248Z:21d6b215-ca14-40a8-a379-fad596703aad" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8994ae2ea6c2ec7f77bc43b1681d1edf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "16a49b4a-3853-409f-bad0-130f9e2e4ee1", + "x-ms-client-request-id": "8994ae2ea6c2ec7f77bc43b1681d1edf", + "x-ms-correlation-request-id": "15e23256-1fe5-4125-a446-52de0a47135e", + "x-ms-ratelimit-remaining-subscription-reads": "11609", + "x-ms-request-id": "de478508-f405-4f8f-8b87-1f6113c67708", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074249Z:15e23256-1fe5-4125-a446-52de0a47135e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6abb663ad766ef0b8ea9464250d7c539", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2b539694-1259-42c9-b51f-1b444a8b6266", + "x-ms-client-request-id": "6abb663ad766ef0b8ea9464250d7c539", + "x-ms-correlation-request-id": "22e09a8a-72b8-4e80-a37d-8556d4eaad86", + "x-ms-ratelimit-remaining-subscription-reads": "11608", + "x-ms-request-id": "9d6c722f-5782-4be8-ac8b-dfaa119712d5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074251Z:22e09a8a-72b8-4e80-a37d-8556d4eaad86" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "59106296e4e0cf9f3b19d225568c18cf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b067939a-611f-467d-8a80-9fa8276e947a", + "x-ms-client-request-id": "59106296e4e0cf9f3b19d225568c18cf", + "x-ms-correlation-request-id": "1203d64a-39ea-4254-927e-c7b5547c929c", + "x-ms-ratelimit-remaining-subscription-reads": "11607", + "x-ms-request-id": "c05e5331-6809-4c21-bf0e-f7ff99079eb9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074252Z:1203d64a-39ea-4254-927e-c7b5547c929c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8d7b6013730b5748a2a5fb18603d9ba0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "fe60feab-b287-465c-ac71-b189ed4b8147", + "x-ms-client-request-id": "8d7b6013730b5748a2a5fb18603d9ba0", + "x-ms-correlation-request-id": "2f999b84-cfa1-4fe8-95a2-1f560edbc654", + "x-ms-ratelimit-remaining-subscription-reads": "11606", + "x-ms-request-id": "5b6a5525-d701-49c7-b3ce-297711594c10", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074253Z:2f999b84-cfa1-4fe8-95a2-1f560edbc654" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "051b0af7c40c55ffc6ec2f4d05e69801", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0baeace1-50f9-4c66-b432-047190468f37", + "x-ms-client-request-id": "051b0af7c40c55ffc6ec2f4d05e69801", + "x-ms-correlation-request-id": "e8eeb40d-fb09-42fd-8c24-6d88fad1ded2", + "x-ms-ratelimit-remaining-subscription-reads": "11605", + "x-ms-request-id": "d6ae38f1-a6d8-46f5-a4ca-141a0f004413", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074255Z:e8eeb40d-fb09-42fd-8c24-6d88fad1ded2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f02e7790385c222e19b9b73ae9866efd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "24973239-4126-4165-b944-ec7d241f54ee", + "x-ms-client-request-id": "f02e7790385c222e19b9b73ae9866efd", + "x-ms-correlation-request-id": "119285df-281a-470a-b1da-119d8dff8f69", + "x-ms-ratelimit-remaining-subscription-reads": "11604", + "x-ms-request-id": "13be4bdb-7325-4adc-a95e-38d80986f44e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074256Z:119285df-281a-470a-b1da-119d8dff8f69" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4c2e327d13714fc26125c61e44fb51bb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e823ccbe-0390-4135-a0d1-1ff17a070aae", + "x-ms-client-request-id": "4c2e327d13714fc26125c61e44fb51bb", + "x-ms-correlation-request-id": "6b6f6bc3-c4b7-47f5-8aa6-30e16b70c484", + "x-ms-ratelimit-remaining-subscription-reads": "11603", + "x-ms-request-id": "14fd1b70-449f-4e87-8d3a-5e04fa9dd862", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074257Z:6b6f6bc3-c4b7-47f5-8aa6-30e16b70c484" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e888f90cab0fbe43dbf8eb520cc46b40", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b31336b8-7bff-4838-b67c-7077276149c2", + "x-ms-client-request-id": "e888f90cab0fbe43dbf8eb520cc46b40", + "x-ms-correlation-request-id": "b05ed006-4988-495c-b3bb-a68ed10c9490", + "x-ms-ratelimit-remaining-subscription-reads": "11602", + "x-ms-request-id": "06c40e1e-f048-46af-b859-f74c5261561e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074258Z:b05ed006-4988-495c-b3bb-a68ed10c9490" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d3cf327d4bb87d90b4de8e36710fde1e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9c0473c3-ebc3-4a94-b064-db436fab01d4", + "x-ms-client-request-id": "d3cf327d4bb87d90b4de8e36710fde1e", + "x-ms-correlation-request-id": "374acf45-81a6-49cc-b502-04fa76a67c83", + "x-ms-ratelimit-remaining-subscription-reads": "11601", + "x-ms-request-id": "636f40ac-9af7-4c53-8606-9d45f086e090", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074300Z:374acf45-81a6-49cc-b502-04fa76a67c83" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f02dfc6786fed1eeee6f7078276f439d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2a26d4d6-d337-4e3a-9ad5-e67b195fcd2b", + "x-ms-client-request-id": "f02dfc6786fed1eeee6f7078276f439d", + "x-ms-correlation-request-id": "b9dbad80-5b03-41ed-a66f-e310fff56ba2", + "x-ms-ratelimit-remaining-subscription-reads": "11600", + "x-ms-request-id": "59cd8269-ee0e-4502-956b-7d9933fdd3b7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074301Z:b9dbad80-5b03-41ed-a66f-e310fff56ba2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "11a086b97e2bc102680b34301d0c4dcc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "da7e6f79-df57-47e6-9241-c23b54a6c7ae", + "x-ms-client-request-id": "11a086b97e2bc102680b34301d0c4dcc", + "x-ms-correlation-request-id": "38870d28-a45a-4bf0-8bfd-df5f379f3620", + "x-ms-ratelimit-remaining-subscription-reads": "11599", + "x-ms-request-id": "f3b86c18-4849-4d61-bc30-67f4f974eb39", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074302Z:38870d28-a45a-4bf0-8bfd-df5f379f3620" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "10ebcc197b96f74243fee449db185545", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "3780dfe9-1ce4-4207-99e8-0349e94751a0", + "x-ms-client-request-id": "10ebcc197b96f74243fee449db185545", + "x-ms-correlation-request-id": "49a1ae8f-184c-4ae2-b462-89a3c2ba6e5a", + "x-ms-ratelimit-remaining-subscription-reads": "11598", + "x-ms-request-id": "82e2c82f-fe38-45cb-adf8-b3cf42f4f383", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074304Z:49a1ae8f-184c-4ae2-b462-89a3c2ba6e5a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eb7cf19bcc6ee9f3f96c87f251bdb4e1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ccb98011-cfcd-4c0a-8f23-035f0a16ecaa", + "x-ms-client-request-id": "eb7cf19bcc6ee9f3f96c87f251bdb4e1", + "x-ms-correlation-request-id": "f2daf1e0-8bdd-4016-ab8c-c696e7bd621a", + "x-ms-ratelimit-remaining-subscription-reads": "11597", + "x-ms-request-id": "267f11d3-619a-4604-8f5e-02426864b309", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074305Z:f2daf1e0-8bdd-4016-ab8c-c696e7bd621a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5a5ea42133843e0644a8cd2d9ab9e550", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "fd4adc19-7d08-4716-8a8e-9502a827659d", + "x-ms-client-request-id": "5a5ea42133843e0644a8cd2d9ab9e550", + "x-ms-correlation-request-id": "9eb13735-1c41-4e4f-b62c-883da8d7d5e7", + "x-ms-ratelimit-remaining-subscription-reads": "11596", + "x-ms-request-id": "1aecfe80-9e94-4fc3-944b-c5e5be6699ad", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074306Z:9eb13735-1c41-4e4f-b62c-883da8d7d5e7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2b95efb562904d5dd9021629f34fa586", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b39b186b-2aa9-4f71-8dda-4017eeb841ca", + "x-ms-client-request-id": "2b95efb562904d5dd9021629f34fa586", + "x-ms-correlation-request-id": "f275a6b4-f681-4602-8f96-0c012edaf298", + "x-ms-ratelimit-remaining-subscription-reads": "11595", + "x-ms-request-id": "75c1df5d-afd6-4540-aeb3-c28e901c64d8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074308Z:f275a6b4-f681-4602-8f96-0c012edaf298" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "36270249fab968c0ea3ea6c6fec64e3f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a898eacd-f850-4dbe-812a-577c3535d46b", + "x-ms-client-request-id": "36270249fab968c0ea3ea6c6fec64e3f", + "x-ms-correlation-request-id": "57a1cfd0-e059-4e30-901a-dd673c15687e", + "x-ms-ratelimit-remaining-subscription-reads": "11594", + "x-ms-request-id": "64dbe711-89cc-4269-be31-abc87798db44", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074309Z:57a1cfd0-e059-4e30-901a-dd673c15687e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "623d37868928bf51471181821cdd4af5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e9bcf2dc-3d3a-4152-a3e8-e4b749a793a5", + "x-ms-client-request-id": "623d37868928bf51471181821cdd4af5", + "x-ms-correlation-request-id": "96a6f952-e66f-420c-91d0-b834010dd7eb", + "x-ms-ratelimit-remaining-subscription-reads": "11593", + "x-ms-request-id": "be7cff4b-f6ed-42b6-94c9-281e0d45c78a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074310Z:96a6f952-e66f-420c-91d0-b834010dd7eb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "97e34703af92ba962e2c4051bb974e12", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "93389628-6284-467f-9085-d10a8e7c1c5f", + "x-ms-client-request-id": "97e34703af92ba962e2c4051bb974e12", + "x-ms-correlation-request-id": "7e5b8b3c-2ef4-42af-a0a2-d0da72dd311d", + "x-ms-ratelimit-remaining-subscription-reads": "11592", + "x-ms-request-id": "81270b98-9cb1-42a9-89ba-592dddfb876a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074311Z:7e5b8b3c-2ef4-42af-a0a2-d0da72dd311d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bca2d6b34311c05db168eea8793d4b0d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "93d7078d-2664-4c66-b188-2d0010e5c640", + "x-ms-client-request-id": "bca2d6b34311c05db168eea8793d4b0d", + "x-ms-correlation-request-id": "d5566ee5-31a6-4795-892e-4a3d60027061", + "x-ms-ratelimit-remaining-subscription-reads": "11591", + "x-ms-request-id": "f0b245c6-a943-4a09-a321-717aea6d1e1b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074313Z:d5566ee5-31a6-4795-892e-4a3d60027061" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b7c2b1f4b7e2d7ada18234fc48ff03b0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c7e596fe-7386-449b-8a4c-cdecfa2ad5fe", + "x-ms-client-request-id": "b7c2b1f4b7e2d7ada18234fc48ff03b0", + "x-ms-correlation-request-id": "f61f1571-117f-43d3-a9c4-c94da3ddde24", + "x-ms-ratelimit-remaining-subscription-reads": "11590", + "x-ms-request-id": "047fd1cc-0caa-4fed-b834-e5d73d0aa3b9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074314Z:f61f1571-117f-43d3-a9c4-c94da3ddde24" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "45cf6ec28e3ac0e3ea23e629c1ed41f0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "05695bea-abcd-423e-89b7-6d1d8c4c5a8d", + "x-ms-client-request-id": "45cf6ec28e3ac0e3ea23e629c1ed41f0", + "x-ms-correlation-request-id": "e6f7d392-db14-4c44-8872-4bd90ef65a05", + "x-ms-ratelimit-remaining-subscription-reads": "11589", + "x-ms-request-id": "0ee8ec68-f446-42fb-a18a-beef45ec7c31", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074315Z:e6f7d392-db14-4c44-8872-4bd90ef65a05" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0a5d33e097d4fb2f28cb1a8f0e6178b1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6f854257-cfac-4ee8-8e09-b69d518cfb69", + "x-ms-client-request-id": "0a5d33e097d4fb2f28cb1a8f0e6178b1", + "x-ms-correlation-request-id": "daa27b25-7563-4ed2-a38b-796c147499f9", + "x-ms-ratelimit-remaining-subscription-reads": "11588", + "x-ms-request-id": "7b6c891a-57d0-4439-93a5-2d40357decda", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074317Z:daa27b25-7563-4ed2-a38b-796c147499f9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0be53d64056e65d2ce02cdbfd18415b4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "7a060c56-aad7-4c28-a074-87350962b1e2", + "x-ms-client-request-id": "0be53d64056e65d2ce02cdbfd18415b4", + "x-ms-correlation-request-id": "4d91ace5-7c8e-4cd4-a832-5c3bda1bd54a", + "x-ms-ratelimit-remaining-subscription-reads": "11587", + "x-ms-request-id": "b74e4022-5cde-49ed-84b2-ef3373fd7e6a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074318Z:4d91ace5-7c8e-4cd4-a832-5c3bda1bd54a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "151b4341f9a12bdc3ed31d6f7354b188", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3617c655-8814-4f2f-8200-b38c43a8397a", + "x-ms-client-request-id": "151b4341f9a12bdc3ed31d6f7354b188", + "x-ms-correlation-request-id": "b1b9b7de-16c4-42a2-9991-8fb28406b546", + "x-ms-ratelimit-remaining-subscription-reads": "11586", + "x-ms-request-id": "20c5fc2c-1d14-4941-a3e6-9da4856fccf5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074319Z:b1b9b7de-16c4-42a2-9991-8fb28406b546" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "83c535ab3608da8260f73bd1ca6f2aa4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f725d3a2-092e-472c-81ab-726de3a002f9", + "x-ms-client-request-id": "83c535ab3608da8260f73bd1ca6f2aa4", + "x-ms-correlation-request-id": "fea31a92-82dc-426c-ba18-b557e8a71a6f", + "x-ms-ratelimit-remaining-subscription-reads": "11585", + "x-ms-request-id": "64bd6f39-f210-44c6-957d-2c95bc72fa8e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074320Z:fea31a92-82dc-426c-ba18-b557e8a71a6f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cb4d66b563466a0f61b9cc9be863f27a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "436c7dff-525b-48f4-876b-691c4da70134", + "x-ms-client-request-id": "cb4d66b563466a0f61b9cc9be863f27a", + "x-ms-correlation-request-id": "78926cfb-380c-4338-8696-928eeecfe9b9", + "x-ms-ratelimit-remaining-subscription-reads": "11584", + "x-ms-request-id": "0d9178f2-b099-4062-b3f7-bd08bb41191e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074322Z:78926cfb-380c-4338-8696-928eeecfe9b9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9c14445192bf0babc140b4a9bd0b61ce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "99d01a84-b2a7-489d-be44-20594e6d3ad9", + "x-ms-client-request-id": "9c14445192bf0babc140b4a9bd0b61ce", + "x-ms-correlation-request-id": "9bf459f4-8aad-40fd-a9a7-5d53038f6aa8", + "x-ms-ratelimit-remaining-subscription-reads": "11583", + "x-ms-request-id": "165b911b-889f-4e84-8e66-b8c403cd03e9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074323Z:9bf459f4-8aad-40fd-a9a7-5d53038f6aa8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0cba78a8e5064842255a224e69e7f1fd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f2140279-45ad-448b-93b4-e3a0bf4e7635", + "x-ms-client-request-id": "0cba78a8e5064842255a224e69e7f1fd", + "x-ms-correlation-request-id": "1356e750-37fe-4e48-8607-9223008d5365", + "x-ms-ratelimit-remaining-subscription-reads": "11582", + "x-ms-request-id": "eff092b0-3c0c-46bd-9487-71d5f46f1be9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074324Z:1356e750-37fe-4e48-8607-9223008d5365" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "857fc1058e5b23e5ba420a05ae65ad55", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4d070b5c-2229-475c-bc8e-a01ffd2a5a18", + "x-ms-client-request-id": "857fc1058e5b23e5ba420a05ae65ad55", + "x-ms-correlation-request-id": "9b1f2ef9-c2fd-4689-a043-10ee9128d676", + "x-ms-ratelimit-remaining-subscription-reads": "11581", + "x-ms-request-id": "b06b68c9-cfbc-4717-8bf8-f90028acf2be", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074326Z:9b1f2ef9-c2fd-4689-a043-10ee9128d676" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "70f2fd57e5a96b7302cc76646f5da1da", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "94b4f05b-0d9d-4c6a-a0fc-63fb3c31ba1f", + "x-ms-client-request-id": "70f2fd57e5a96b7302cc76646f5da1da", + "x-ms-correlation-request-id": "907199c2-f6c7-45e3-ad71-8ee01fa0fd9f", + "x-ms-ratelimit-remaining-subscription-reads": "11580", + "x-ms-request-id": "a21a495f-6841-4a53-8523-b297c5101809", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074327Z:907199c2-f6c7-45e3-ad71-8ee01fa0fd9f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fca4b74edc8b1a73939652c4db3c99c0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "fbfd70d1-5b5d-42b4-a96d-40dfc93a8d50", + "x-ms-client-request-id": "fca4b74edc8b1a73939652c4db3c99c0", + "x-ms-correlation-request-id": "34c4c32c-c085-494b-b7e6-d7fd2c07ad1e", + "x-ms-ratelimit-remaining-subscription-reads": "11579", + "x-ms-request-id": "fd4c3094-80a0-4a0f-aa63-dcf47ae88a6a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074328Z:34c4c32c-c085-494b-b7e6-d7fd2c07ad1e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6cf6ccad81f520544d13838e1880b35c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0656abd6-7142-4c0e-937b-0b8a28e268cf", + "x-ms-client-request-id": "6cf6ccad81f520544d13838e1880b35c", + "x-ms-correlation-request-id": "6779166b-5239-4e01-9ac0-2abe76d052c0", + "x-ms-ratelimit-remaining-subscription-reads": "11578", + "x-ms-request-id": "c0bdb0e2-d3b6-49ff-a7e8-56f326cdf6e7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074330Z:6779166b-5239-4e01-9ac0-2abe76d052c0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f7b630a0b0c17bca89d7dd1293af8fc5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1abd0619-ce81-4e14-a746-d6cd4a91a52e", + "x-ms-client-request-id": "f7b630a0b0c17bca89d7dd1293af8fc5", + "x-ms-correlation-request-id": "611389f0-cd13-4038-b1b3-b5b24a0e4baa", + "x-ms-ratelimit-remaining-subscription-reads": "11577", + "x-ms-request-id": "a73339de-4585-41ab-be96-37e68bcaebe6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074331Z:611389f0-cd13-4038-b1b3-b5b24a0e4baa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a2b7b6333567cce46284ae7759e40112", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "8f0b86b2-886b-43d3-a511-9a75152bf2b3", + "x-ms-client-request-id": "a2b7b6333567cce46284ae7759e40112", + "x-ms-correlation-request-id": "90247a48-3dc5-4703-9f87-803d861c2164", + "x-ms-ratelimit-remaining-subscription-reads": "11576", + "x-ms-request-id": "447c5283-4cd6-4c76-827d-b307464f2313", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074332Z:90247a48-3dc5-4703-9f87-803d861c2164" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ab23f5e3a286fcff027ae21da4418d9e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2416bd65-b694-4eb1-8383-a5bda2a37ead", + "x-ms-client-request-id": "ab23f5e3a286fcff027ae21da4418d9e", + "x-ms-correlation-request-id": "5844b883-8fac-4b88-b403-240b85bb52a0", + "x-ms-ratelimit-remaining-subscription-reads": "11575", + "x-ms-request-id": "fe4d9005-f235-4211-a319-f18ff612564e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074333Z:5844b883-8fac-4b88-b403-240b85bb52a0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "625bbd8410c86bf54bea943c025222a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a408c4be-a439-4ee5-8ae3-8fe61c3f7d5a", + "x-ms-client-request-id": "625bbd8410c86bf54bea943c025222a4", + "x-ms-correlation-request-id": "faf015cb-a2b5-40d2-90cd-6b42de9b435f", + "x-ms-ratelimit-remaining-subscription-reads": "11574", + "x-ms-request-id": "07fc971c-7c4c-45ff-b716-20c953dace5e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074335Z:faf015cb-a2b5-40d2-90cd-6b42de9b435f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9d2fcad6e48c913fb6bb9fec52c72821", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "df47ad14-d057-4e24-8594-a8a5f345f26f", + "x-ms-client-request-id": "9d2fcad6e48c913fb6bb9fec52c72821", + "x-ms-correlation-request-id": "1176d96f-b233-409b-b13a-5125a98670a9", + "x-ms-ratelimit-remaining-subscription-reads": "11573", + "x-ms-request-id": "47406372-27dc-4728-94bc-428e856603b1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074336Z:1176d96f-b233-409b-b13a-5125a98670a9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9bf310f69f89d249ffb7609c0dc2fab0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d18bea01-4c25-4968-8b21-c3c491e0a32d", + "x-ms-client-request-id": "9bf310f69f89d249ffb7609c0dc2fab0", + "x-ms-correlation-request-id": "279a9d38-807c-48f3-a43d-9aa9e6d0ec3d", + "x-ms-ratelimit-remaining-subscription-reads": "11572", + "x-ms-request-id": "84daa28e-09b7-4de1-b2a9-726f77c50790", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074337Z:279a9d38-807c-48f3-a43d-9aa9e6d0ec3d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d9473d58ef129f117ecaab0d70081983", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c4fe0dbc-f452-4818-ab68-69d7744b2224", + "x-ms-client-request-id": "d9473d58ef129f117ecaab0d70081983", + "x-ms-correlation-request-id": "773047ad-a9be-4f30-89a2-5c08bd1ff51f", + "x-ms-ratelimit-remaining-subscription-reads": "11571", + "x-ms-request-id": "f962c830-c33b-4b7e-ae4c-8f2920ed2062", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074339Z:773047ad-a9be-4f30-89a2-5c08bd1ff51f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f14673c1865e361b815c9dd583a383f4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b3cc8904-3365-44f6-b1ad-5893cfbe4b15", + "x-ms-client-request-id": "f14673c1865e361b815c9dd583a383f4", + "x-ms-correlation-request-id": "f401c8cc-f3f9-4e2e-999b-e6ccc60eaecc", + "x-ms-ratelimit-remaining-subscription-reads": "11570", + "x-ms-request-id": "9c62ce0c-ebcd-43e3-824b-8349a1d39236", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074340Z:f401c8cc-f3f9-4e2e-999b-e6ccc60eaecc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1494efc14e80070efe541cbef43c61f6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "c300a383-f5cc-411b-ba07-f99c1cf1e379", + "x-ms-client-request-id": "1494efc14e80070efe541cbef43c61f6", + "x-ms-correlation-request-id": "44bd1510-fa98-4df9-9aed-0c4f3967837b", + "x-ms-ratelimit-remaining-subscription-reads": "11569", + "x-ms-request-id": "2e376082-416b-4372-a382-ffdc8a1864c5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074341Z:44bd1510-fa98-4df9-9aed-0c4f3967837b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9adadd9d087cd151211058b6513c1bdb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "fc1dde39-46aa-4c11-aa50-37dc996c83f5", + "x-ms-client-request-id": "9adadd9d087cd151211058b6513c1bdb", + "x-ms-correlation-request-id": "8a0f5c3b-5003-4e8e-bf5b-9a80f76b8203", + "x-ms-ratelimit-remaining-subscription-reads": "11568", + "x-ms-request-id": "c614926b-3266-432f-9898-0a1c78381754", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074343Z:8a0f5c3b-5003-4e8e-bf5b-9a80f76b8203" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "814cb74705747302643ef30a695d4245", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "56a2fc40-e333-49f2-a788-ee3335577334", + "x-ms-client-request-id": "814cb74705747302643ef30a695d4245", + "x-ms-correlation-request-id": "35c940ba-409a-4f3b-9571-d83b154a0c9b", + "x-ms-ratelimit-remaining-subscription-reads": "11567", + "x-ms-request-id": "5a970ebf-a1f2-4af2-99ba-81cc30bc559c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074344Z:35c940ba-409a-4f3b-9571-d83b154a0c9b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a637a6fae9c9b9789dc2f270f558b5c2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "680e9325-173c-4428-84c8-47735f707ad3", + "x-ms-client-request-id": "a637a6fae9c9b9789dc2f270f558b5c2", + "x-ms-correlation-request-id": "1091b6fb-235c-45da-a211-a7ea492be5b1", + "x-ms-ratelimit-remaining-subscription-reads": "11566", + "x-ms-request-id": "a84a5323-70d4-41e8-ba4f-4142ff39b0e6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074345Z:1091b6fb-235c-45da-a211-a7ea492be5b1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3c774138e0ef9882da66353d144767c4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0bc6faef-1961-4109-8dd9-a78d166414ea", + "x-ms-client-request-id": "3c774138e0ef9882da66353d144767c4", + "x-ms-correlation-request-id": "4f63c14c-77e3-4c99-a3e6-952f28fcf8f6", + "x-ms-ratelimit-remaining-subscription-reads": "11565", + "x-ms-request-id": "d87481f5-82a4-411d-a5b3-f99ce3e7b6c6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074346Z:4f63c14c-77e3-4c99-a3e6-952f28fcf8f6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aabb13ce74055d123f92e3b212927d0c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "46f1de50-025d-4058-bd3f-b66727264f8f", + "x-ms-client-request-id": "aabb13ce74055d123f92e3b212927d0c", + "x-ms-correlation-request-id": "f686bda5-c83d-48ca-8015-5175a5a03fb5", + "x-ms-ratelimit-remaining-subscription-reads": "11564", + "x-ms-request-id": "6b456780-0713-4bb0-a298-501d439c7b61", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074348Z:f686bda5-c83d-48ca-8015-5175a5a03fb5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "28d2318905e61a55249ecc62b43aa456", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3c64b259-ee0b-4180-b9f2-c121d1d7719a", + "x-ms-client-request-id": "28d2318905e61a55249ecc62b43aa456", + "x-ms-correlation-request-id": "acf9b8ff-323e-4cbe-a6d5-ab91f38f7ad2", + "x-ms-ratelimit-remaining-subscription-reads": "11563", + "x-ms-request-id": "5bbaec8e-4085-4198-b2e7-d8814be8cf28", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074350Z:acf9b8ff-323e-4cbe-a6d5-ab91f38f7ad2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e2a22e5a0a9cc3bc2f19fd5dfccf8648", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "50270c4a-f420-4a70-b514-1e13dcac0b1b", + "x-ms-client-request-id": "e2a22e5a0a9cc3bc2f19fd5dfccf8648", + "x-ms-correlation-request-id": "2bc40b5b-8089-48b8-9ce4-e16d2d2b3f5c", + "x-ms-ratelimit-remaining-subscription-reads": "11562", + "x-ms-request-id": "27299a9a-de58-4ff1-8b97-798a1752cc31", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074351Z:2bc40b5b-8089-48b8-9ce4-e16d2d2b3f5c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e3b428e83f75c8ddbda18667a8afa904", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7baee148-7c3f-408e-b112-3e450fa683f3", + "x-ms-client-request-id": "e3b428e83f75c8ddbda18667a8afa904", + "x-ms-correlation-request-id": "b24ae003-5c9e-4f53-b5e4-9b53e292ad47", + "x-ms-ratelimit-remaining-subscription-reads": "11561", + "x-ms-request-id": "cc5140c0-c283-4d5a-b0ba-a3719943a2cb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074352Z:b24ae003-5c9e-4f53-b5e4-9b53e292ad47" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e3578dee9bef7e6f740ef8cd07f81d54", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a0c932d8-07ef-487b-85bf-a2afc536c6c3", + "x-ms-client-request-id": "e3578dee9bef7e6f740ef8cd07f81d54", + "x-ms-correlation-request-id": "a25f2994-a58e-40f2-9284-f99b042f7981", + "x-ms-ratelimit-remaining-subscription-reads": "11560", + "x-ms-request-id": "32980466-d74e-4eb4-9135-43d9c7832e8e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074353Z:a25f2994-a58e-40f2-9284-f99b042f7981" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8b798317c0861be051d924fb84551a80", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ab5d514c-287c-4ad8-ada2-2a1eeb3cfc7f", + "x-ms-client-request-id": "8b798317c0861be051d924fb84551a80", + "x-ms-correlation-request-id": "74edb26c-c99e-4358-8891-ada096d4290d", + "x-ms-ratelimit-remaining-subscription-reads": "11559", + "x-ms-request-id": "0ea86cb4-f3af-4204-8aaf-5f2e08dbc29d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074355Z:74edb26c-c99e-4358-8891-ada096d4290d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6e6ef96fa2784d58b9356e664610c0c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "dee84ea9-ecfc-48ed-9de1-f5b00d7387db", + "x-ms-client-request-id": "6e6ef96fa2784d58b9356e664610c0c5", + "x-ms-correlation-request-id": "b45c579c-fb09-4e65-bfcf-67622e0cb9d5", + "x-ms-ratelimit-remaining-subscription-reads": "11558", + "x-ms-request-id": "327e4ec5-d8c3-4b25-8ed7-4e5706c5a5c6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074356Z:b45c579c-fb09-4e65-bfcf-67622e0cb9d5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "254f31831e352d7dac3b92167673f91f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "90b2d075-45e4-404d-a4be-fe8638646571", + "x-ms-client-request-id": "254f31831e352d7dac3b92167673f91f", + "x-ms-correlation-request-id": "9b10fa84-0602-41ba-bf5e-da1b3f8a72e9", + "x-ms-ratelimit-remaining-subscription-reads": "11557", + "x-ms-request-id": "9ee0998b-28f4-4b64-a550-dec497f98edd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074357Z:9b10fa84-0602-41ba-bf5e-da1b3f8a72e9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0e5e78f3ae8975db2a2cd250527ad441", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "3f0d64ad-ab7b-4640-9af9-bd15fc16d2d7", + "x-ms-client-request-id": "0e5e78f3ae8975db2a2cd250527ad441", + "x-ms-correlation-request-id": "8b5f268d-d87e-4b0d-b57f-c51a14b0ab59", + "x-ms-ratelimit-remaining-subscription-reads": "11556", + "x-ms-request-id": "6f187c33-e9cb-429d-bfcd-324522504fcd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074359Z:8b5f268d-d87e-4b0d-b57f-c51a14b0ab59" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "53785e18f506504a7b41c13d1042d645", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8705a5e6-bfc2-405c-8a64-f106ccea32f4", + "x-ms-client-request-id": "53785e18f506504a7b41c13d1042d645", + "x-ms-correlation-request-id": "4f1680cd-e3d6-4e1c-ac7a-f54ffaf1a459", + "x-ms-ratelimit-remaining-subscription-reads": "11555", + "x-ms-request-id": "e2ac6ef1-8145-448e-bd06-206c5c5f7638", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074400Z:4f1680cd-e3d6-4e1c-ac7a-f54ffaf1a459" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ce724f3cb2b1d43c55dafb094c2cdb32", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "feca7cf3-9d0e-4c85-89e9-fdcd2778e7cb", + "x-ms-client-request-id": "ce724f3cb2b1d43c55dafb094c2cdb32", + "x-ms-correlation-request-id": "37a98640-5f08-4dbc-bcc0-5adfbe0d2bcf", + "x-ms-ratelimit-remaining-subscription-reads": "11554", + "x-ms-request-id": "dc2ae25a-f220-4cb1-b85c-bf883324bb60", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074401Z:37a98640-5f08-4dbc-bcc0-5adfbe0d2bcf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "18fd5166a6fbfe182e0d9247ed9e64e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "bf1ee974-b4b3-42c9-bd45-d81ff8c67471", + "x-ms-client-request-id": "18fd5166a6fbfe182e0d9247ed9e64e7", + "x-ms-correlation-request-id": "79027705-3d0e-4923-90ab-08f6b76ac30e", + "x-ms-ratelimit-remaining-subscription-reads": "11553", + "x-ms-request-id": "cb1fa93b-4cae-4faa-89e1-9dba2014b44c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074402Z:79027705-3d0e-4923-90ab-08f6b76ac30e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "02148c550607668f21a3fd2cfa40044f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "f3babd30-9047-448c-8d24-661b88c3fe21", + "x-ms-client-request-id": "02148c550607668f21a3fd2cfa40044f", + "x-ms-correlation-request-id": "f5797ec3-54c3-404c-8399-3e943e1d9e2d", + "x-ms-ratelimit-remaining-subscription-reads": "11552", + "x-ms-request-id": "5d200e99-2065-46b2-8049-1f6c9773a0fa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074404Z:f5797ec3-54c3-404c-8399-3e943e1d9e2d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bed68f66be4595493774a0a420f5e7b7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "80b05874-ab29-4c8c-9da2-28ff8703a234", + "x-ms-client-request-id": "bed68f66be4595493774a0a420f5e7b7", + "x-ms-correlation-request-id": "721b5924-2e6b-44dc-9eba-0ac40da9d9be", + "x-ms-ratelimit-remaining-subscription-reads": "11551", + "x-ms-request-id": "2cb082b4-9162-4935-8584-0bb7c4d6da5b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074405Z:721b5924-2e6b-44dc-9eba-0ac40da9d9be" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bfb41375d818602ac297f657a9ec04ed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ff7bd056-b071-474e-a037-3936ed81e133", + "x-ms-client-request-id": "bfb41375d818602ac297f657a9ec04ed", + "x-ms-correlation-request-id": "86a10c40-c6e5-4ef1-8afe-b0846aebb892", + "x-ms-ratelimit-remaining-subscription-reads": "11550", + "x-ms-request-id": "71b9e0c7-e6fb-4a34-8694-134886b67fcb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074406Z:86a10c40-c6e5-4ef1-8afe-b0846aebb892" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a51a87a-a43d-4d5f-9734-9f1ea5a7d03b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5de14309a6c896a2437fcb9365ea462c", + "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, 08 Sep 2021 07:44: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": "adc32a10-8d3f-4bb4-8eaa-b912f5e83bcc", + "x-ms-client-request-id": "5de14309a6c896a2437fcb9365ea462c", + "x-ms-correlation-request-id": "63113e85-621c-4a16-9d5d-ef3715465da9", + "x-ms-ratelimit-remaining-subscription-reads": "11549", + "x-ms-request-id": "bda36da2-7490-4681-b466-e6ec9c6a9cce", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074408Z:63113e85-621c-4a16-9d5d-ef3715465da9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e6b646bc448b8d366575fcadc8f1eb4a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "19", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:44: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": "519f9f09-8196-46f4-8e73-394282449310", + "x-ms-client-request-id": "e6b646bc448b8d366575fcadc8f1eb4a", + "x-ms-correlation-request-id": "ea726643-ba31-40e8-b38a-4d94022e2034", + "x-ms-ratelimit-remaining-subscription-reads": "11548", + "x-ms-request-id": "15bc8438-05d2-47d8-a434-93cc92fc4a96", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074408Z:ea726643-ba31-40e8-b38a-4d94022e2034" + }, + "ResponseBody": [ + "{\r\n", + " \u0022value\u0022: []\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dc9bb26f8a13ceee701d7c980d96fbd7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "19", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:44: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": "d44494de-264e-482c-91f5-5f51c6742aa0", + "x-ms-client-request-id": "dc9bb26f8a13ceee701d7c980d96fbd7", + "x-ms-correlation-request-id": "70bf023e-e0a1-48d9-b6d3-58c8d21e9540", + "x-ms-ratelimit-remaining-subscription-reads": "11547", + "x-ms-request-id": "30a86ffc-f068-4fbb-b37c-bba02b0329aa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074408Z:70bf023e-e0a1-48d9-b6d3-58c8d21e9540" + }, + "ResponseBody": [ + "{\r\n", + " \u0022value\u0022: []\r\n", + "}" + ] + } + ], + "Variables": { + "LOCATION": "westus2", + "RandomSeed": "1740481645", + "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/BastionHostContainerTests/Get.json b/sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/BastionHostContainerTests/Get.json new file mode 100644 index 0000000000000..9a13be57a8644 --- /dev/null +++ b/sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/BastionHostContainerTests/Get.json @@ -0,0 +1,17158 @@ +{ + "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-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1c97d72ce5cd9478061ba0ee7ba57c15", + "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, 08 Sep 2021 06:57:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "556bd1a4-f711-457c-91b0-3c8d731831c1", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "556bd1a4-f711-457c-91b0-3c8d731831c1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065743Z:556bd1a4-f711-457c-91b0-3c8d731831c1" + }, + "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/bastionrg-5755?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-20428abdc9f4b04aa811fe402af8af8f-026c0ddafa67304d-00", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b85ebb7fa678fa652341f210877dd5ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "226", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:57:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ba41eafa-a1ae-43c5-8b3f-5bc2d54f7fd9", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "ba41eafa-a1ae-43c5-8b3f-5bc2d54f7fd9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065743Z:ba41eafa-a1ae-43c5-8b3f-5bc2d54f7fd9" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755", + "name": "bastionrg-5755", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7e1b6c827edd41ab3d1f9b43de4b7cd5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1246", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:57:43 GMT", + "ETag": "W/\u002225f5657f-76a1-4ade-b578-c4385b88bf91\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": "a2b7d4e1-ec7c-456b-a0fb-52b84c4ced61", + "x-ms-client-request-id": "7e1b6c827edd41ab3d1f9b43de4b7cd5", + "x-ms-correlation-request-id": "eb4ae260-574b-4e54-a5e3-b76cb7cb107a", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "608ce3ab-0be8-4d93-83cd-778f1937607d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065743Z:eb4ae260-574b-4e54-a5e3-b76cb7cb107a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022vnet-166\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002225f5657f-76a1-4ade-b578-c4385b88bf91\\\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: \u00229692cf54-c17f-418b-8261-5e5404984cd4\u0022,\r\n", + " \u0022addressSpace\u0022: {\r\n", + " \u0022addressPrefixes\u0022: [\r\n", + " \u002210.0.0.0/16\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022subnets\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022AzureBastionSubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166/subnets/AzureBastionSubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002225f5657f-76a1-4ade-b578-c4385b88bf91\\\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/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166/subnets/AzureBastionSubnet?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e56f0944a501867d729cf98bf3670c89", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "550", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:57:43 GMT", + "ETag": "W/\u002225f5657f-76a1-4ade-b578-c4385b88bf91\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": "7773c690-2873-407b-85e2-7326e0c73044", + "x-ms-client-request-id": "e56f0944a501867d729cf98bf3670c89", + "x-ms-correlation-request-id": "3f61415d-8092-482a-9089-ac01554aa328", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "3bc5fc85-abf8-4e6a-a331-888829ea6cdc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065743Z:3f61415d-8092-482a-9089-ac01554aa328" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022AzureBastionSubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166/subnets/AzureBastionSubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002225f5657f-76a1-4ade-b578-c4385b88bf91\\\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/bastionrg-5755/providers/Microsoft.Network/publicIPAddresses/ip-7939?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0e6bf546fd890138101d7b580a211bd7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "665", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:57:44 GMT", + "ETag": "W/\u0022d30e87c7-becd-4931-a4ae-fe9d6151f776\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": "195f5fc4-d515-437f-b727-5384c597d908", + "x-ms-client-request-id": "0e6bf546fd890138101d7b580a211bd7", + "x-ms-correlation-request-id": "1fb195cd-a585-4368-9b3d-65f33242cc3c", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "ce5b1b5c-9bf7-41cd-9b3b-908059f3eadb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065744Z:1fb195cd-a585-4368-9b3d-65f33242cc3c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022ip-7939\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/publicIPAddresses/ip-7939\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022d30e87c7-becd-4931-a4ae-fe9d6151f776\\\u0022\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022452cc13c-6c20-4dcf-9d83-4519820eb94f\u0022,\r\n", + " \u0022ipAddress\u0022: \u002252.151.15.185\u0022,\r\n", + " \u0022publicIPAddressVersion\u0022: \u0022IPv4\u0022,\r\n", + " \u0022publicIPAllocationMethod\u0022: \u0022Static\u0022,\r\n", + " \u0022idleTimeoutInMinutes\u0022: 4,\r\n", + " \u0022ipTags\u0022: []\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/publicIPAddresses\u0022,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Standard\u0022,\r\n", + " \u0022tier\u0022: \u0022Regional\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-5395?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "468", + "Content-Type": "application/json", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0e7ecb1caaf0eedd950c4084204ed612", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "id": null, + "properties": { + "ipConfigurations": [ + { + "name": "bastionIPConfig-1332", + "id": null, + "properties": { + "subnet": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166/subnets/AzureBastionSubnet" + }, + "publicIPAddress": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/publicIPAddresses/ip-7939" + } + } + } + ] + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "1455", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:57:52 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": "41f4b47a-eab6-4c84-b443-96dcf6ee69df", + "x-ms-client-request-id": "0e7ecb1caaf0eedd950c4084204ed612", + "x-ms-correlation-request-id": "86af5be6-67b7-4154-bbbf-74ffc4aa81ca", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "67ba06b4-cf41-46c2-8a14-bd9e51846ba3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065752Z:86af5be6-67b7-4154-bbbf-74ffc4aa81ca" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022bastion-5395\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-5395\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00228d0ea484-27e5-4634-a078-e50ded1f72c3\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022scaleUnits\u0022: 2,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022bastionIPConfig-1332\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-5395/bastionHostIpConfigurations/bastionIPConfig-1332\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00228d0ea484-27e5-4634-a078-e50ded1f72c3\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts/bastionHostIpConfigurations\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/bastionrg-5755/providers/Microsoft.Network/publicIPAddresses/ip-7939\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166/subnets/AzureBastionSubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022bastionShareableLinks\u0022: {}\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9bd6c6227b8e4b558e1ff4f1f77cefce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:57:52 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": "360041e0-f19f-43f2-8802-e86dd9b84623", + "x-ms-client-request-id": "9bd6c6227b8e4b558e1ff4f1f77cefce", + "x-ms-correlation-request-id": "ab42ef96-d660-4dce-bae8-969ee6a11b38", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "8ebe78b6-9bc9-4927-a26b-4f4de07cb265", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065752Z:ab42ef96-d660-4dce-bae8-969ee6a11b38" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "23f746a5f732d05784ac9f1bc6b2ca19", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:57: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": "58b1f7e0-9412-42eb-a33d-3437baa36c83", + "x-ms-client-request-id": "23f746a5f732d05784ac9f1bc6b2ca19", + "x-ms-correlation-request-id": "0393cc66-7fa9-4168-a4eb-eaf8f11e68e3", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "043c7b55-c365-4225-b71a-f5c62ea33290", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065753Z:0393cc66-7fa9-4168-a4eb-eaf8f11e68e3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5962bfbb3a779784a89e514e5755d9f1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:57:55 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": "16706f99-60d2-4f5f-a21a-15a5a52be698", + "x-ms-client-request-id": "5962bfbb3a779784a89e514e5755d9f1", + "x-ms-correlation-request-id": "e628b742-eab4-4cdd-9f38-c17b6995f8d3", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "5c24228f-8f14-4402-9c2e-53358b724e28", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065755Z:e628b742-eab4-4cdd-9f38-c17b6995f8d3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "de8514e52c832a4f6f0516e1db3a84db", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:57: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": "6dc40459-b71e-41a8-878b-32ac5926bad4", + "x-ms-client-request-id": "de8514e52c832a4f6f0516e1db3a84db", + "x-ms-correlation-request-id": "c5f29b14-4de7-4b2f-b880-d7d743bd8c46", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "d0d3db6b-9d13-4b50-bdc1-df37605c2745", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065756Z:c5f29b14-4de7-4b2f-b880-d7d743bd8c46" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3835db5596196a56c1607b93a609792f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:57:57 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": "362f0955-0ad2-4be1-88e4-a3aa4e01c8e0", + "x-ms-client-request-id": "3835db5596196a56c1607b93a609792f", + "x-ms-correlation-request-id": "ed74cdf3-f12d-4e3a-866b-818431aaf92f", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "e1092216-7560-4875-944e-0a86cf1e09cb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065757Z:ed74cdf3-f12d-4e3a-866b-818431aaf92f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b136add3ec2c8f957038ea7223a2bb6d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:57: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": "b6ccb428-76d6-4b4b-a088-e7f2ff933c3b", + "x-ms-client-request-id": "b136add3ec2c8f957038ea7223a2bb6d", + "x-ms-correlation-request-id": "bc2eb1e6-7efb-4470-95fb-167ac5dd7da2", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "dc537129-6b98-4fbc-bee6-ba0b076e7895", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065759Z:bc2eb1e6-7efb-4470-95fb-167ac5dd7da2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7cf87519a11f4fd8bd1a1c23b0bb8466", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:58:00 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": "f3050410-0077-4ce9-8a4f-3727abf48db6", + "x-ms-client-request-id": "7cf87519a11f4fd8bd1a1c23b0bb8466", + "x-ms-correlation-request-id": "1b7fa3c9-267e-42fc-bf2f-c339cf92aa09", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "0eac1492-cdb9-4eea-bbfe-6c62df858572", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065800Z:1b7fa3c9-267e-42fc-bf2f-c339cf92aa09" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2d0ee68bd30469af46a6c8e1abe4471f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:58:02 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": "be1f65e7-fc8f-4f55-90bf-90635b41edc7", + "x-ms-client-request-id": "2d0ee68bd30469af46a6c8e1abe4471f", + "x-ms-correlation-request-id": "f5cdd478-9bf0-4c64-aa60-c9f79759b81b", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "b67416bc-0706-40ca-9fe0-ef842bbfa023", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065802Z:f5cdd478-9bf0-4c64-aa60-c9f79759b81b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "30790ea5fd103210d5e7f311d071deb4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:58:03 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": "f5e7df32-9f1e-4a43-9bdf-fd261562e20f", + "x-ms-client-request-id": "30790ea5fd103210d5e7f311d071deb4", + "x-ms-correlation-request-id": "701e320e-297d-4638-96b7-7c2331ed20aa", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "318836c6-962f-479c-a5e7-4ca0205e1897", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065803Z:701e320e-297d-4638-96b7-7c2331ed20aa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3ce684b38d934668c68f3678d8f7a3d9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2f5b0c96-a585-4dad-b6e5-37aaf0ab937a", + "x-ms-client-request-id": "3ce684b38d934668c68f3678d8f7a3d9", + "x-ms-correlation-request-id": "e269e009-6ec0-4f32-89cd-26ee5355f12e", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "ef234e7d-2b68-4861-a680-1b71b9fde8e3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065805Z:e269e009-6ec0-4f32-89cd-26ee5355f12e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a27efcd353428e55d6dc581ddf9d99d4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "18ddd4a5-5a16-4aba-8736-7d7989327b7c", + "x-ms-client-request-id": "a27efcd353428e55d6dc581ddf9d99d4", + "x-ms-correlation-request-id": "0970550d-1649-4569-bca8-9537d77472eb", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "4ac18304-203c-4a2f-bff3-e4c09b054ee7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065806Z:0970550d-1649-4569-bca8-9537d77472eb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "272d13c70bfd178ba5326a81c79859de", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2b406042-04e8-46c8-baaa-cfee3d71e03f", + "x-ms-client-request-id": "272d13c70bfd178ba5326a81c79859de", + "x-ms-correlation-request-id": "25b8ac7d-0a09-414e-947d-fa08a69e32ec", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "4524e3ac-aef8-4da2-b985-471d12a87b16", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065807Z:25b8ac7d-0a09-414e-947d-fa08a69e32ec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d33e19433cf360722f5866b7354b6628", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d6d6f9bb-8fce-48d9-8021-eeac31a87e0b", + "x-ms-client-request-id": "d33e19433cf360722f5866b7354b6628", + "x-ms-correlation-request-id": "89f40025-ec78-4d73-867d-f2a8cc355b41", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "c114c309-4043-4b0f-83ae-1856c95e7c3f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065808Z:89f40025-ec78-4d73-867d-f2a8cc355b41" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c5b061f67cc9c8dc7066fc0fe9d4c63d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ac370893-9fc1-4379-8f6e-7ab36ddab07c", + "x-ms-client-request-id": "c5b061f67cc9c8dc7066fc0fe9d4c63d", + "x-ms-correlation-request-id": "ea6dd3b9-78a8-443f-97bc-4cca6f6d5b92", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "f8dff704-67a7-4fb7-a85f-7e28639a8f63", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065810Z:ea6dd3b9-78a8-443f-97bc-4cca6f6d5b92" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c5d97a83c55e8be0a1cdf7a4a5d4e15a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:58: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": "ba787f20-4f1c-4b04-968f-11628381dafd", + "x-ms-client-request-id": "c5d97a83c55e8be0a1cdf7a4a5d4e15a", + "x-ms-correlation-request-id": "4200c798-8d5f-4501-ac0b-11d15b2b026b", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "5d1d2b39-11e7-43b9-a2f1-246431d6705d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065811Z:4200c798-8d5f-4501-ac0b-11d15b2b026b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "658b41cc93e7c7143d76628c4063765b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6da4aa89-c113-4a01-9d8a-f0ecd824eebd", + "x-ms-client-request-id": "658b41cc93e7c7143d76628c4063765b", + "x-ms-correlation-request-id": "375b283e-e062-45b6-afea-ed2e34676bc8", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "0efc01e6-8c3d-41f5-9b82-6be1d28025e0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065812Z:375b283e-e062-45b6-afea-ed2e34676bc8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bb332891a07130c9812523fc8437239b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e00068c7-437a-439c-92a4-b6f091a05aef", + "x-ms-client-request-id": "bb332891a07130c9812523fc8437239b", + "x-ms-correlation-request-id": "1147db88-82b8-4e7d-b7a3-d5f78eb5ecea", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "cd7b9ceb-bdff-4122-b7c2-3018b2d22d97", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065814Z:1147db88-82b8-4e7d-b7a3-d5f78eb5ecea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a843a2846148ef56651287e863534a3e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "35cf2ae6-403f-4d7e-978c-e1699fa65537", + "x-ms-client-request-id": "a843a2846148ef56651287e863534a3e", + "x-ms-correlation-request-id": "cd542ade-8b0e-4c27-927e-5e36fa496db0", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "986262e6-9ace-4f45-b63f-b36df3c6c853", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065815Z:cd542ade-8b0e-4c27-927e-5e36fa496db0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7c129c5726a02be8775be3c170174206", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:58: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": "973a6e25-cbf2-402e-bfa5-a54850f3261f", + "x-ms-client-request-id": "7c129c5726a02be8775be3c170174206", + "x-ms-correlation-request-id": "bae495a9-e13c-437f-8b20-5c8237966fea", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "cea9e8a9-a750-43e7-914f-fdac42a43d96", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065816Z:bae495a9-e13c-437f-8b20-5c8237966fea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9d08c653cd203012d244555e18e1cd2e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "82093fc1-7f8a-40cd-9fe9-39ccf5d41808", + "x-ms-client-request-id": "9d08c653cd203012d244555e18e1cd2e", + "x-ms-correlation-request-id": "53c6a328-6829-4dc4-96ae-f1bdea614a4b", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "a6708258-517c-40d2-8303-765095640708", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065817Z:53c6a328-6829-4dc4-96ae-f1bdea614a4b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e7a5e5daa6245efab91731ed7d947f4d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "7512922a-d32a-444c-a81c-a4fcdfdc9a86", + "x-ms-client-request-id": "e7a5e5daa6245efab91731ed7d947f4d", + "x-ms-correlation-request-id": "7ff72a09-5a67-4440-8bbf-e803fcdd398d", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "c470dc60-c783-4b95-ad86-dd9810b3a333", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065819Z:7ff72a09-5a67-4440-8bbf-e803fcdd398d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9c9581d0ac4b891e8ae2aa5cd18a1295", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "9d225cb8-56e1-46e9-ad59-66892f67fbfc", + "x-ms-client-request-id": "9c9581d0ac4b891e8ae2aa5cd18a1295", + "x-ms-correlation-request-id": "8c115268-5246-4302-b0dc-fcd9ff1a947c", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "18141543-6de6-47dc-8dbf-58c6383742c6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065820Z:8c115268-5246-4302-b0dc-fcd9ff1a947c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8ae6b58d5a72ade2cba9e4089c24b33d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:58: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": "aa1bdcce-36dc-4c9d-ac73-6366a6a7546e", + "x-ms-client-request-id": "8ae6b58d5a72ade2cba9e4089c24b33d", + "x-ms-correlation-request-id": "2db46e26-5e97-4a8a-93b8-e07e0f6a176a", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "d2e81098-c9d8-430c-bdcb-1f55c5a00b15", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065821Z:2db46e26-5e97-4a8a-93b8-e07e0f6a176a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "978e07c5304c2ee2c71c5d41fb9e8d2f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "598fd803-d7d1-4fec-a2f6-5d8732c67b83", + "x-ms-client-request-id": "978e07c5304c2ee2c71c5d41fb9e8d2f", + "x-ms-correlation-request-id": "3a4d235f-f380-4edc-a7c4-4659d44a4613", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "8a97d8d6-2e1f-4905-aa3c-10ca8a7f23b1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065822Z:3a4d235f-f380-4edc-a7c4-4659d44a4613" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c75f9b05f4ad75db9fe8d0a1c815ed66", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "8a0cdf4b-8865-460d-bad9-8a9daddaa696", + "x-ms-client-request-id": "c75f9b05f4ad75db9fe8d0a1c815ed66", + "x-ms-correlation-request-id": "02fe83af-88c4-4952-8148-518d3ba959c1", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "c530c94e-dea4-4bcf-afa4-18ff92c6cf7a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065824Z:02fe83af-88c4-4952-8148-518d3ba959c1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c9976d2f7afc5d49d2b8c256fda0b12d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "8d685604-0d6a-4f76-98b5-d28ed0456f4b", + "x-ms-client-request-id": "c9976d2f7afc5d49d2b8c256fda0b12d", + "x-ms-correlation-request-id": "8a5b092b-e421-42b4-a38d-71c3b10ff927", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "0f21ef47-df27-41e5-84db-db7a54c8c218", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065825Z:8a5b092b-e421-42b4-a38d-71c3b10ff927" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0002b51cebc4d0902c18f864604165b1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:58: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": "f699042a-7a4b-4025-8cf7-29f83c56d888", + "x-ms-client-request-id": "0002b51cebc4d0902c18f864604165b1", + "x-ms-correlation-request-id": "8e08bc3d-7f07-4a4f-8e3b-12a67658a058", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "0075606a-f6af-46f8-b977-cf4ef254adb4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065827Z:8e08bc3d-7f07-4a4f-8e3b-12a67658a058" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8e12f72ec4068a335202f5f4328477ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "0cc2d3cc-acb1-410d-8da7-d1b9bf462da9", + "x-ms-client-request-id": "8e12f72ec4068a335202f5f4328477ff", + "x-ms-correlation-request-id": "47b6ac1b-799e-4445-9707-11734117beab", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "aa273f33-7892-4d40-99db-fc5fd030c62d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065828Z:47b6ac1b-799e-4445-9707-11734117beab" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1385a336ec1243a1dcc79ce382e5fd91", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "e4a1cd4a-0355-4ad7-9556-ed2dac1bb942", + "x-ms-client-request-id": "1385a336ec1243a1dcc79ce382e5fd91", + "x-ms-correlation-request-id": "7e158762-2705-4d86-bfd2-dfcbf9c01083", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "d707c695-3fbb-464a-9f55-b2606428964e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065829Z:7e158762-2705-4d86-bfd2-dfcbf9c01083" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "06271053238d58268278aec2f69b9da7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:58: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": "e76226c9-41f5-4735-ab5b-62e52bfe9784", + "x-ms-client-request-id": "06271053238d58268278aec2f69b9da7", + "x-ms-correlation-request-id": "71dd9d9f-73b7-4def-8a57-8c486a4cf835", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "612ff49e-3d3a-45f6-81ef-63c1c861cd75", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065831Z:71dd9d9f-73b7-4def-8a57-8c486a4cf835" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bc2df8a052bc429e55ceb13f274f076c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "ad40dbd1-c51a-4ba6-8d27-069c12b1d893", + "x-ms-client-request-id": "bc2df8a052bc429e55ceb13f274f076c", + "x-ms-correlation-request-id": "a8680018-38ef-4150-afb1-069b11825018", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "692ce5a9-b55a-4ffd-b62c-15a1af7a94d8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065832Z:a8680018-38ef-4150-afb1-069b11825018" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "21a16305715d13717c2c919a3ede4d41", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "60a6e802-fea1-49df-8d8c-f0b5752e46ba", + "x-ms-client-request-id": "21a16305715d13717c2c919a3ede4d41", + "x-ms-correlation-request-id": "f02282fa-91d5-4673-81c9-af58939e2765", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "c9a0c20a-5ff9-4ceb-9a26-73ff53a027ac", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065833Z:f02282fa-91d5-4673-81c9-af58939e2765" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8942f42940b700d571e5b0be71e63032", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2e43e6fc-bbde-449b-afad-16e42c4bd805", + "x-ms-client-request-id": "8942f42940b700d571e5b0be71e63032", + "x-ms-correlation-request-id": "7fa383ff-9352-4134-b778-7d1e7c96681a", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "8913ff31-cf97-42d1-8604-a34a89491b92", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065835Z:7fa383ff-9352-4134-b778-7d1e7c96681a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "92bc42707cfa2f4a871a3f8fc1040477", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:58: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": "e182a98d-abe9-4a2b-8a3f-d2c617f31019", + "x-ms-client-request-id": "92bc42707cfa2f4a871a3f8fc1040477", + "x-ms-correlation-request-id": "6845b607-c671-4872-bfdc-b0c596a75a9e", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "9488851f-d467-416d-973d-46c31cd7df8c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065836Z:6845b607-c671-4872-bfdc-b0c596a75a9e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "331570817d0cc5b58ea0af77c0b3a195", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "13164688-da49-4c2b-beaa-d0c0e9f1dc93", + "x-ms-client-request-id": "331570817d0cc5b58ea0af77c0b3a195", + "x-ms-correlation-request-id": "156062fe-9f1c-4a4a-9e29-9e0aabd58913", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "956f8b6a-7410-4d5d-8a58-9d6446ff98ae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065837Z:156062fe-9f1c-4a4a-9e29-9e0aabd58913" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fc295efcbb21ad46aa13029c00453f6d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "fae5e4ee-daf4-4ac8-9c83-0a554ebe9634", + "x-ms-client-request-id": "fc295efcbb21ad46aa13029c00453f6d", + "x-ms-correlation-request-id": "0f5d54f4-4154-4fbe-9938-8f4947bd7060", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "a9767214-f7f8-4d88-b233-27ce6bc2290a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065838Z:0f5d54f4-4154-4fbe-9938-8f4947bd7060" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "013d39e1fdd1f2258cf7045accd26ed4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:58: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": "bbcd493e-167f-4d9c-8e26-b09770f38eb4", + "x-ms-client-request-id": "013d39e1fdd1f2258cf7045accd26ed4", + "x-ms-correlation-request-id": "be6f961b-c1e4-4403-bbe4-9df1df5ddc39", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "2befa4c6-badc-4516-9c7e-5950038ec0d8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065840Z:be6f961b-c1e4-4403-bbe4-9df1df5ddc39" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6293aa7908dac655296889f97b18c448", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e0e681ee-f0ca-447d-8a3a-2004b7c4141c", + "x-ms-client-request-id": "6293aa7908dac655296889f97b18c448", + "x-ms-correlation-request-id": "f579c450-36cc-4569-9e18-51db0cb80330", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "17b71186-81bf-467b-9e51-d49b336c7028", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065841Z:f579c450-36cc-4569-9e18-51db0cb80330" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "879642609f75fec438366f2ab6ece1d7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3469ba88-21d0-4b1b-bddb-07f68d6832f5", + "x-ms-client-request-id": "879642609f75fec438366f2ab6ece1d7", + "x-ms-correlation-request-id": "c324ed2d-6211-4ec5-975f-4b0e770332c9", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "5a19d5ad-eee7-4b3a-98fd-eeaeb7a864c0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065842Z:c324ed2d-6211-4ec5-975f-4b0e770332c9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "56232ea4ddb2d992e477d768742b7774", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2c0cea39-a392-4c5d-89a1-47cac196740c", + "x-ms-client-request-id": "56232ea4ddb2d992e477d768742b7774", + "x-ms-correlation-request-id": "2b41daac-a2e7-4d60-a462-2f821835c169", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "0b26ff58-d6bd-4541-be18-b2c3c6700ef9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065844Z:2b41daac-a2e7-4d60-a462-2f821835c169" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "89f9bb33e73cd95ee59429a3982b0f3d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0ff7cbd9-d247-464d-bd37-5c040357ca69", + "x-ms-client-request-id": "89f9bb33e73cd95ee59429a3982b0f3d", + "x-ms-correlation-request-id": "a8e5c602-214c-4994-b41d-501607aa5216", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "75518f00-20ac-4a98-8005-3ea184399a0a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065845Z:a8e5c602-214c-4994-b41d-501607aa5216" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4c55b1866ef58395b0bda2fec85b890d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "67c96bb9-6eef-4e2f-9b97-db17f6f8d876", + "x-ms-client-request-id": "4c55b1866ef58395b0bda2fec85b890d", + "x-ms-correlation-request-id": "73bb81bc-61e3-4745-86ae-f03de8eab69e", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "b86b1960-900a-46fb-988c-7ade3448cb21", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065846Z:73bb81bc-61e3-4745-86ae-f03de8eab69e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fbf6fabf57f2bc9acf49701db3ee40b9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f01becbf-d8bf-4b82-831e-ec5dd9f47f51", + "x-ms-client-request-id": "fbf6fabf57f2bc9acf49701db3ee40b9", + "x-ms-correlation-request-id": "1ed708ac-47e5-4b24-afd1-1b9a10840928", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "95a70f93-2589-4070-995e-9e471f29dd53", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065848Z:1ed708ac-47e5-4b24-afd1-1b9a10840928" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c2e29a682ad5c57f2676d97f44601189", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f25159be-4a71-4a6e-a884-e6e9c60fde29", + "x-ms-client-request-id": "c2e29a682ad5c57f2676d97f44601189", + "x-ms-correlation-request-id": "5a744e94-0ff3-46ed-9593-72066950ef96", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "367f548d-ff36-4a81-adbd-85919023783d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065849Z:5a744e94-0ff3-46ed-9593-72066950ef96" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9ee41c0a14342e4a16997dabfd77d0c1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7735015d-3d56-4c6d-b892-80844aa9230b", + "x-ms-client-request-id": "9ee41c0a14342e4a16997dabfd77d0c1", + "x-ms-correlation-request-id": "9096073c-1b5e-4f99-a233-55ba6af656f3", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "cc2aae43-1318-4721-92dd-4172e0669f13", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065850Z:9096073c-1b5e-4f99-a233-55ba6af656f3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2e95e97cc67994377a31d57c7e1b776f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8a8335f9-6111-4788-b4f6-26b64922f768", + "x-ms-client-request-id": "2e95e97cc67994377a31d57c7e1b776f", + "x-ms-correlation-request-id": "731a051a-98fd-4bb2-9f2d-073eabcdc686", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "71cc6bd2-2a39-40e8-b113-fc82be7478a5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065851Z:731a051a-98fd-4bb2-9f2d-073eabcdc686" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9712e738a10954844fb3ac3cadd3c7ae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1a27dccc-5d09-42e0-9dcb-8eae1c49c333", + "x-ms-client-request-id": "9712e738a10954844fb3ac3cadd3c7ae", + "x-ms-correlation-request-id": "aa0c8a45-4467-43ec-946d-570ea2690216", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "8b89eda2-9ec9-4679-89b3-5903eddeb0c8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065853Z:aa0c8a45-4467-43ec-946d-570ea2690216" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5b0217a5e2ca4310e45023023ecdb0fb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "72ef3950-882b-46dc-8ee5-8245cf032f0d", + "x-ms-client-request-id": "5b0217a5e2ca4310e45023023ecdb0fb", + "x-ms-correlation-request-id": "6e9bb063-a02b-4314-8c13-76b1f3a7b8f3", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "c589de66-752f-4874-bf37-b91f431787ee", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065854Z:6e9bb063-a02b-4314-8c13-76b1f3a7b8f3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "15730d223964dab76441dec61afbe6a7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "96ff3d9e-2dc1-4507-a055-865001457f5a", + "x-ms-client-request-id": "15730d223964dab76441dec61afbe6a7", + "x-ms-correlation-request-id": "ef00b35b-a3fb-49e1-bf85-0db669aefd0d", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-request-id": "d4351a27-77d7-46e9-b274-2e81643054e1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065855Z:ef00b35b-a3fb-49e1-bf85-0db669aefd0d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "66d726691b1955a4d7ceb2b97e821582", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "891219f8-b100-4a62-bfe2-dc4b8447e30f", + "x-ms-client-request-id": "66d726691b1955a4d7ceb2b97e821582", + "x-ms-correlation-request-id": "269fce57-3aa2-4779-91d1-80e76a028f17", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "1d78bd5f-2831-49b1-8f61-1db4c101f906", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065857Z:269fce57-3aa2-4779-91d1-80e76a028f17" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9f1ab003b1606c495f27f789044929e9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "5b2b5429-24fc-4607-aac9-71bd719f6135", + "x-ms-client-request-id": "9f1ab003b1606c495f27f789044929e9", + "x-ms-correlation-request-id": "85213666-39e6-44dc-a3dc-49000d5d9caf", + "x-ms-ratelimit-remaining-subscription-reads": "11788", + "x-ms-request-id": "280bb3b8-761b-4001-ae8a-f6ded6a3c54f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065858Z:85213666-39e6-44dc-a3dc-49000d5d9caf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "18997c6949f606e2691d3e9586fe5ce2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c319f01b-c17b-4d85-a532-fb0b2fa91450", + "x-ms-client-request-id": "18997c6949f606e2691d3e9586fe5ce2", + "x-ms-correlation-request-id": "d090af6b-e725-4255-86da-8e6bc9273976", + "x-ms-ratelimit-remaining-subscription-reads": "11787", + "x-ms-request-id": "0c7c5a84-e27c-4a77-9dd1-961615f1efda", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065900Z:d090af6b-e725-4255-86da-8e6bc9273976" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "69c35c2c47e0b746dd6a06f1241a518d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "134e00f9-8e11-4d90-b705-f7c4299020c3", + "x-ms-client-request-id": "69c35c2c47e0b746dd6a06f1241a518d", + "x-ms-correlation-request-id": "ed7b9c18-c8a6-486b-9afd-dec24dc3759f", + "x-ms-ratelimit-remaining-subscription-reads": "11786", + "x-ms-request-id": "40785fdc-c8f9-4551-9cfd-e7e5c0de2156", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065901Z:ed7b9c18-c8a6-486b-9afd-dec24dc3759f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "014fc8a5fde9b98cce14354273b3e561", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a55c72e6-6061-467e-bfc4-c7cb58fe5d00", + "x-ms-client-request-id": "014fc8a5fde9b98cce14354273b3e561", + "x-ms-correlation-request-id": "0bcac1cf-5272-4f6f-a251-d79277487380", + "x-ms-ratelimit-remaining-subscription-reads": "11785", + "x-ms-request-id": "8fb80516-74fb-4547-b426-a6a0d78ec542", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065902Z:0bcac1cf-5272-4f6f-a251-d79277487380" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a75d14cabf86220836e13b8c42f0e14e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1ce9c586-fe2f-4a28-982d-2da0e925894e", + "x-ms-client-request-id": "a75d14cabf86220836e13b8c42f0e14e", + "x-ms-correlation-request-id": "2d85a32a-14c5-48d4-bbe7-fdb8c60480ff", + "x-ms-ratelimit-remaining-subscription-reads": "11784", + "x-ms-request-id": "86acf1cd-62de-429f-a3cc-bf66ca9892ca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065903Z:2d85a32a-14c5-48d4-bbe7-fdb8c60480ff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "beefb1cb5bae2ef9d0099bcc11034429", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "dad5150c-16bc-485c-a82c-f929c4c57dda", + "x-ms-client-request-id": "beefb1cb5bae2ef9d0099bcc11034429", + "x-ms-correlation-request-id": "57c28553-ed63-4338-b68b-14870f81be26", + "x-ms-ratelimit-remaining-subscription-reads": "11783", + "x-ms-request-id": "30b7cc8b-2a4b-4695-8f86-4cf5f04450b0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065905Z:57c28553-ed63-4338-b68b-14870f81be26" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0f26a584a9bde606bf2ccb07c2ff77de", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7653930a-d1ef-40f0-9a5d-2ac83179d74f", + "x-ms-client-request-id": "0f26a584a9bde606bf2ccb07c2ff77de", + "x-ms-correlation-request-id": "7c0f04c4-2acc-4f76-a1fd-491b5dfa4aab", + "x-ms-ratelimit-remaining-subscription-reads": "11782", + "x-ms-request-id": "2bf85bfa-bc15-4b37-a134-90b332e4ff7c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065906Z:7c0f04c4-2acc-4f76-a1fd-491b5dfa4aab" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c177e73227c36fb21b2ed77c243c1132", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4fd23ce5-c9c3-4563-88cb-1fb28e2388a6", + "x-ms-client-request-id": "c177e73227c36fb21b2ed77c243c1132", + "x-ms-correlation-request-id": "587fceaa-717d-4a19-80ff-8c82605729b2", + "x-ms-ratelimit-remaining-subscription-reads": "11781", + "x-ms-request-id": "b6894cab-6232-4035-861b-cef88419ae3c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065907Z:587fceaa-717d-4a19-80ff-8c82605729b2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9c07119cd1c92291aa09ff8290f16cd0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2a3793bd-b78d-4737-b28c-f61b76f4c592", + "x-ms-client-request-id": "9c07119cd1c92291aa09ff8290f16cd0", + "x-ms-correlation-request-id": "3f32a417-d0a1-4846-bf07-a59fd316a176", + "x-ms-ratelimit-remaining-subscription-reads": "11780", + "x-ms-request-id": "8d071640-24bd-4c66-b4b6-00fdb47ded35", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065909Z:3f32a417-d0a1-4846-bf07-a59fd316a176" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2999bc92828c5c65f3b7f48ed289c283", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "167d9209-ec60-4773-be6a-2bbad1263d81", + "x-ms-client-request-id": "2999bc92828c5c65f3b7f48ed289c283", + "x-ms-correlation-request-id": "34fbe1b5-29fc-4de1-b364-693f2e31606a", + "x-ms-ratelimit-remaining-subscription-reads": "11779", + "x-ms-request-id": "dd366802-ef26-4e24-bc27-c5c268e03b87", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065910Z:34fbe1b5-29fc-4de1-b364-693f2e31606a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b06b981bdaf76114555517ba2830df2a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4022b2f4-2763-4fed-ae18-c4644d3ece2a", + "x-ms-client-request-id": "b06b981bdaf76114555517ba2830df2a", + "x-ms-correlation-request-id": "03f3ef1d-13ac-431d-91a0-618c77f2d5b7", + "x-ms-ratelimit-remaining-subscription-reads": "11778", + "x-ms-request-id": "2e62adb5-c4b8-43d4-9f44-cf2468fd9891", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065911Z:03f3ef1d-13ac-431d-91a0-618c77f2d5b7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "67ea07c1e7a219a5ababa912dd024f20", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "35e738a4-e79b-458e-b643-8256d58a2d44", + "x-ms-client-request-id": "67ea07c1e7a219a5ababa912dd024f20", + "x-ms-correlation-request-id": "98703664-156a-4e2d-8d86-9db4ec490e26", + "x-ms-ratelimit-remaining-subscription-reads": "11777", + "x-ms-request-id": "eba2a78b-1adc-4ee8-b392-b36d0aa57076", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065912Z:98703664-156a-4e2d-8d86-9db4ec490e26" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f7677b46bc86b8d8a838d4376bab34c2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "5a39e965-9a26-47e8-8fd6-268acb4de00d", + "x-ms-client-request-id": "f7677b46bc86b8d8a838d4376bab34c2", + "x-ms-correlation-request-id": "c7f59d1a-adc8-4756-94e9-2b9ffea5f2a6", + "x-ms-ratelimit-remaining-subscription-reads": "11776", + "x-ms-request-id": "917aa623-c0d4-4fd6-9e11-dfa2798a9992", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065914Z:c7f59d1a-adc8-4756-94e9-2b9ffea5f2a6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cacdcad85a9f33e0f351044c30028453", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4f586310-1ceb-4509-83aa-086d1c877299", + "x-ms-client-request-id": "cacdcad85a9f33e0f351044c30028453", + "x-ms-correlation-request-id": "20aab0f3-c07b-4276-8ff7-a27126303942", + "x-ms-ratelimit-remaining-subscription-reads": "11775", + "x-ms-request-id": "f27e5e80-a88e-458c-8915-fb9a9a3591cc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065915Z:20aab0f3-c07b-4276-8ff7-a27126303942" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ac73f705e7c905a32f32bf6a136eae00", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "06761a29-e689-4bc0-b369-ac6fa909da04", + "x-ms-client-request-id": "ac73f705e7c905a32f32bf6a136eae00", + "x-ms-correlation-request-id": "a439520c-0736-4997-af10-c39676e85fa8", + "x-ms-ratelimit-remaining-subscription-reads": "11774", + "x-ms-request-id": "08149390-e8c3-4668-adba-1af776d88a84", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065916Z:a439520c-0736-4997-af10-c39676e85fa8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1239e7768535eb809b330434b78b87a5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "d772aae7-00c2-40b9-870b-5f445d246881", + "x-ms-client-request-id": "1239e7768535eb809b330434b78b87a5", + "x-ms-correlation-request-id": "bb770e7b-6c12-4c3b-96f3-803461b9e49c", + "x-ms-ratelimit-remaining-subscription-reads": "11773", + "x-ms-request-id": "0960ea69-edc6-49c0-8643-18a24a467aa7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065917Z:bb770e7b-6c12-4c3b-96f3-803461b9e49c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "733281b48737f0f926c89b6d9b761f84", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3709f91b-c087-4f8d-a078-e43a4f5f42fb", + "x-ms-client-request-id": "733281b48737f0f926c89b6d9b761f84", + "x-ms-correlation-request-id": "b4d7f510-723d-4203-a166-efc1d0d8fe87", + "x-ms-ratelimit-remaining-subscription-reads": "11770", + "x-ms-request-id": "b2b3668a-3548-4255-bb62-86cfff2fc319", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065919Z:b4d7f510-723d-4203-a166-efc1d0d8fe87" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "49d604a271c87f1d76871195e36f4da3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2c9515c2-d942-47ba-81e7-84e9a3b11c28", + "x-ms-client-request-id": "49d604a271c87f1d76871195e36f4da3", + "x-ms-correlation-request-id": "ea240074-040e-4969-80ba-014b799bf6a9", + "x-ms-ratelimit-remaining-subscription-reads": "11769", + "x-ms-request-id": "176758da-38aa-4ec9-844d-4b772ae4856e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065920Z:ea240074-040e-4969-80ba-014b799bf6a9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "92b619aa3a3beec8ed48ec6de9135024", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "7a8f3e76-22cd-4976-a7c8-8a58d771316c", + "x-ms-client-request-id": "92b619aa3a3beec8ed48ec6de9135024", + "x-ms-correlation-request-id": "b922897e-c4ea-4aeb-8c18-66662f7a87fa", + "x-ms-ratelimit-remaining-subscription-reads": "11768", + "x-ms-request-id": "e779f0a7-8bed-4a7e-8f2d-5ca300a6caa6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065922Z:b922897e-c4ea-4aeb-8c18-66662f7a87fa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b3927f143eb542dd63b2fdaf76640db7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "0f151a86-d901-4eb8-ad9f-f4fcb914c7c1", + "x-ms-client-request-id": "b3927f143eb542dd63b2fdaf76640db7", + "x-ms-correlation-request-id": "5077167e-17f6-48bc-aa2d-75095fee3b91", + "x-ms-ratelimit-remaining-subscription-reads": "11767", + "x-ms-request-id": "f79498df-d51d-4087-9c88-60a5ef46157b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065923Z:5077167e-17f6-48bc-aa2d-75095fee3b91" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "82c3f77a8dc067483be75b7f85b09563", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "25b60d8a-a3f8-4fd9-9ae9-a695adfd5d71", + "x-ms-client-request-id": "82c3f77a8dc067483be75b7f85b09563", + "x-ms-correlation-request-id": "16c70f9c-23c1-42d9-a8b7-f4561ae26d1a", + "x-ms-ratelimit-remaining-subscription-reads": "11766", + "x-ms-request-id": "dbf4b661-44a8-4555-b4a4-057639738a82", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065924Z:16c70f9c-23c1-42d9-a8b7-f4561ae26d1a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6380ec379add6bee3c732f893d197788", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f8be565e-105d-4f0c-bdd1-8012390b7af5", + "x-ms-client-request-id": "6380ec379add6bee3c732f893d197788", + "x-ms-correlation-request-id": "555c2d79-ea04-4da9-9661-33fa564c308a", + "x-ms-ratelimit-remaining-subscription-reads": "11765", + "x-ms-request-id": "629dbd4c-45fa-4172-ace8-cb1f9a8f63bc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065926Z:555c2d79-ea04-4da9-9661-33fa564c308a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f2f2353bcd4f8664362a77cde35dbdb2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "91b623d4-7710-4833-8bfd-0668777a9191", + "x-ms-client-request-id": "f2f2353bcd4f8664362a77cde35dbdb2", + "x-ms-correlation-request-id": "e6392dcd-0aa7-417d-8e86-80f284b05192", + "x-ms-ratelimit-remaining-subscription-reads": "11764", + "x-ms-request-id": "b86a1370-0f7c-49c3-b493-07551e746360", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065928Z:e6392dcd-0aa7-417d-8e86-80f284b05192" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8a789a1ca9e3dfda0858464c5ebf2a22", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ed4762b0-ec51-418f-9bd1-5b970949bf14", + "x-ms-client-request-id": "8a789a1ca9e3dfda0858464c5ebf2a22", + "x-ms-correlation-request-id": "b9a9123a-3589-4df1-9182-467628e2cf19", + "x-ms-ratelimit-remaining-subscription-reads": "11763", + "x-ms-request-id": "fac6db21-8e6e-45c2-b25a-1a535d240a1b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065929Z:b9a9123a-3589-4df1-9182-467628e2cf19" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5044d26fa3bd691387fa2db2232188de", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6cbc0cf9-e285-4f78-9dbd-04bdd9d23e7b", + "x-ms-client-request-id": "5044d26fa3bd691387fa2db2232188de", + "x-ms-correlation-request-id": "b6b64341-ad8e-4ef3-821d-53829e7b2bec", + "x-ms-ratelimit-remaining-subscription-reads": "11762", + "x-ms-request-id": "e7a855af-59f3-4d91-9ce2-1794da6f3ccc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065930Z:b6b64341-ad8e-4ef3-821d-53829e7b2bec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a26c7cb6eda091a45a13e9f787172876", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "79855706-29fe-4464-96dc-c1c002fb6d84", + "x-ms-client-request-id": "a26c7cb6eda091a45a13e9f787172876", + "x-ms-correlation-request-id": "ec3a5da1-7f12-4fa8-a50a-68dfc7de4c53", + "x-ms-ratelimit-remaining-subscription-reads": "11761", + "x-ms-request-id": "9bd10889-fa22-4fa9-abda-50d337928bc0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065931Z:ec3a5da1-7f12-4fa8-a50a-68dfc7de4c53" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "105d55ff6d1979f4870e02e97c27bce7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "fc4709f2-22e7-4053-9c62-749b9d0fae45", + "x-ms-client-request-id": "105d55ff6d1979f4870e02e97c27bce7", + "x-ms-correlation-request-id": "9e50eb94-d11c-4cd8-b689-713a881288f3", + "x-ms-ratelimit-remaining-subscription-reads": "11760", + "x-ms-request-id": "5645d8cc-9d11-4933-974c-856528c59849", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065933Z:9e50eb94-d11c-4cd8-b689-713a881288f3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e19667d0885282812db2f5aab91be270", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:59: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": "deef45a1-ccf6-445c-b80b-8e4d70fb4880", + "x-ms-client-request-id": "e19667d0885282812db2f5aab91be270", + "x-ms-correlation-request-id": "46a550e2-8a1a-4daa-9426-236fb38dc615", + "x-ms-ratelimit-remaining-subscription-reads": "11759", + "x-ms-request-id": "dea073b2-dd52-4efc-aa39-06b16df2f91c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065934Z:46a550e2-8a1a-4daa-9426-236fb38dc615" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ceb3b6d177c349c587f31b92ebbb1533", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9d3edf6d-feb1-4d7a-9e71-a8855ce591ff", + "x-ms-client-request-id": "ceb3b6d177c349c587f31b92ebbb1533", + "x-ms-correlation-request-id": "0e967440-c31f-4329-9fab-268c9d6e85d7", + "x-ms-ratelimit-remaining-subscription-reads": "11758", + "x-ms-request-id": "3f397565-3ee1-4fbb-b9f1-bcd825581bc7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065936Z:0e967440-c31f-4329-9fab-268c9d6e85d7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2027025746817724d3dbe266784abf6c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "68991357-3db7-4d75-b548-c558e3246d81", + "x-ms-client-request-id": "2027025746817724d3dbe266784abf6c", + "x-ms-correlation-request-id": "8b2c9d9b-257d-4486-94ad-1ec07eb97021", + "x-ms-ratelimit-remaining-subscription-reads": "11757", + "x-ms-request-id": "d6278b9d-50f9-4dfc-b451-baab1fdc5c6b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065937Z:8b2c9d9b-257d-4486-94ad-1ec07eb97021" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c518912ced745823a14d5a5f6def9672", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0b232010-7efc-4c55-b4a5-da2f05c7a389", + "x-ms-client-request-id": "c518912ced745823a14d5a5f6def9672", + "x-ms-correlation-request-id": "a81eecca-55d5-4ea2-be4c-4e5655de74bd", + "x-ms-ratelimit-remaining-subscription-reads": "11756", + "x-ms-request-id": "9f0966cf-bc3e-42ce-a516-af984a9350ea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065939Z:a81eecca-55d5-4ea2-be4c-4e5655de74bd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b752c19cc1f38bee923bfae8955fd13d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9ebd432d-37ad-46d8-80ed-d99e4a93ca9f", + "x-ms-client-request-id": "b752c19cc1f38bee923bfae8955fd13d", + "x-ms-correlation-request-id": "d8741a9e-4e22-438e-a34d-7ea7a3f1e10a", + "x-ms-ratelimit-remaining-subscription-reads": "11755", + "x-ms-request-id": "d0abb59f-6917-48ce-acb4-e57f09541ddd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065940Z:d8741a9e-4e22-438e-a34d-7ea7a3f1e10a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5966af3450a269bfdecf7e34ecc40ae4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "94fd058f-8238-405d-8c63-5dfbc4081b77", + "x-ms-client-request-id": "5966af3450a269bfdecf7e34ecc40ae4", + "x-ms-correlation-request-id": "52d42a1f-aec1-4e63-bf1a-8cf054622742", + "x-ms-ratelimit-remaining-subscription-reads": "11754", + "x-ms-request-id": "eab2cbcd-cd8f-4740-a2d9-f43df86617d1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065941Z:52d42a1f-aec1-4e63-bf1a-8cf054622742" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b6ca6f4507f76a78a38c3338f23ac242", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "63b71384-214d-4e0d-a98c-dd7155f3df20", + "x-ms-client-request-id": "b6ca6f4507f76a78a38c3338f23ac242", + "x-ms-correlation-request-id": "222a11e0-d1c7-4f03-b10b-1ba3959c3dbe", + "x-ms-ratelimit-remaining-subscription-reads": "11753", + "x-ms-request-id": "2cd0c414-1b8b-4e5d-bd53-15a24073296e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065943Z:222a11e0-d1c7-4f03-b10b-1ba3959c3dbe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bd2a1c7c3c894ccf02e8d82343ba9ecd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9924de68-30a3-4ff7-a353-125df28d7608", + "x-ms-client-request-id": "bd2a1c7c3c894ccf02e8d82343ba9ecd", + "x-ms-correlation-request-id": "01420771-4f02-443e-8ef1-cbbc291f4104", + "x-ms-ratelimit-remaining-subscription-reads": "11752", + "x-ms-request-id": "8296970e-9de4-4cb2-b0ee-d9aee2b246af", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065944Z:01420771-4f02-443e-8ef1-cbbc291f4104" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "26a316311a942d4536fbb6151d8677a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e70e7f6b-b9b7-4de2-a56b-c3eba1fa5a36", + "x-ms-client-request-id": "26a316311a942d4536fbb6151d8677a4", + "x-ms-correlation-request-id": "8a912ac5-8910-47da-9e44-a3689c7a6ac5", + "x-ms-ratelimit-remaining-subscription-reads": "11751", + "x-ms-request-id": "9a78936e-1411-498f-996c-29c23578cebd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065945Z:8a912ac5-8910-47da-9e44-a3689c7a6ac5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cfb83c0d4c9a085b9f7eb40f2e5427e8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "50c76f4c-69f8-4d14-9c84-a9c2f853b23f", + "x-ms-client-request-id": "cfb83c0d4c9a085b9f7eb40f2e5427e8", + "x-ms-correlation-request-id": "4fa69a45-ce30-4ac5-bc72-8271b6d1d305", + "x-ms-ratelimit-remaining-subscription-reads": "11750", + "x-ms-request-id": "d4500919-b99e-437c-b9bf-ee5705d4c3fb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065946Z:4fa69a45-ce30-4ac5-bc72-8271b6d1d305" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dc0765ee9c9761add7fd878d86b92e7b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e7914ae7-5dd3-4acd-b18a-067f6fc47448", + "x-ms-client-request-id": "dc0765ee9c9761add7fd878d86b92e7b", + "x-ms-correlation-request-id": "24fc4ef4-0ab2-4017-9b00-7d2024063191", + "x-ms-ratelimit-remaining-subscription-reads": "11749", + "x-ms-request-id": "d36e0d4d-7acb-4b5c-995a-61fa9a6a83e8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065948Z:24fc4ef4-0ab2-4017-9b00-7d2024063191" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "07163471cf02e433bb9b86166636fee1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "a5c9d203-d4aa-4e2d-9bbd-a0d2f9cced70", + "x-ms-client-request-id": "07163471cf02e433bb9b86166636fee1", + "x-ms-correlation-request-id": "9aef55b9-7787-4150-9cca-42c5e4d45360", + "x-ms-ratelimit-remaining-subscription-reads": "11748", + "x-ms-request-id": "524b6b76-2a4e-4e3f-bed2-12e32ce00b2b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065949Z:9aef55b9-7787-4150-9cca-42c5e4d45360" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b727cdd49a7f700d8e56f79cc4cd81e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a96f4a32-6b51-4039-a53c-4067f3a20533", + "x-ms-client-request-id": "b727cdd49a7f700d8e56f79cc4cd81e5", + "x-ms-correlation-request-id": "26bd6d9b-7dd4-4e3f-9248-5ede131f5698", + "x-ms-ratelimit-remaining-subscription-reads": "11747", + "x-ms-request-id": "23ed03e6-8332-4202-a266-451df65a2fe5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065951Z:26bd6d9b-7dd4-4e3f-9248-5ede131f5698" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fa9d384f203d1ee6322220fb1696fba1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "45332727-4c99-4aba-ba61-0e068e5b2651", + "x-ms-client-request-id": "fa9d384f203d1ee6322220fb1696fba1", + "x-ms-correlation-request-id": "1ac3be82-eba1-48ba-9ff4-c1e83050cb8b", + "x-ms-ratelimit-remaining-subscription-reads": "11746", + "x-ms-request-id": "570f0b8b-6bd2-463d-8d3b-41143df3e687", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065952Z:1ac3be82-eba1-48ba-9ff4-c1e83050cb8b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b9b9a5fe7692d6fc27a678abd7961fee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06: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": "96a6f920-1760-4711-ad24-3f384809012d", + "x-ms-client-request-id": "b9b9a5fe7692d6fc27a678abd7961fee", + "x-ms-correlation-request-id": "78c989f0-b2f1-456b-b1eb-2a39c6c169f6", + "x-ms-ratelimit-remaining-subscription-reads": "11745", + "x-ms-request-id": "da9b46de-e946-47e5-b8b5-3f54aeaa252c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065953Z:78c989f0-b2f1-456b-b1eb-2a39c6c169f6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2ec7a0190498b3a4e609855c7a115af7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5fe18611-2016-4153-83c2-baf299dad8d6", + "x-ms-client-request-id": "2ec7a0190498b3a4e609855c7a115af7", + "x-ms-correlation-request-id": "ef831d83-9d27-408a-9f02-263763797ce4", + "x-ms-ratelimit-remaining-subscription-reads": "11744", + "x-ms-request-id": "48c54613-6a58-4c1d-bd74-476ca6581e88", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065955Z:ef831d83-9d27-408a-9f02-263763797ce4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1f9d565bc813d8533bc6d297a73b469b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "028387ab-b6e3-484c-aaf5-20c97187c7a2", + "x-ms-client-request-id": "1f9d565bc813d8533bc6d297a73b469b", + "x-ms-correlation-request-id": "e704b0df-616f-4963-ac00-f181652c0ed9", + "x-ms-ratelimit-remaining-subscription-reads": "11743", + "x-ms-request-id": "c9bf9599-d7a8-44d7-b356-a1900e9558f8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065956Z:e704b0df-616f-4963-ac00-f181652c0ed9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "75e23202cccefa090105d288f19f5c16", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 06:59: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": "fee7c543-786d-4f3f-9912-0e9fe36ea09d", + "x-ms-client-request-id": "75e23202cccefa090105d288f19f5c16", + "x-ms-correlation-request-id": "b877f842-3aac-46c3-ac38-f622adcda73c", + "x-ms-ratelimit-remaining-subscription-reads": "11742", + "x-ms-request-id": "2cc9fbe7-a6d4-4635-8269-f8ff83140b22", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065957Z:b877f842-3aac-46c3-ac38-f622adcda73c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8150814b00f850da4deff2d1310c0bab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b219220f-3c29-495a-bc7a-ec21408b6831", + "x-ms-client-request-id": "8150814b00f850da4deff2d1310c0bab", + "x-ms-correlation-request-id": "ea569b73-8779-4ee7-af3c-b1ec84023396", + "x-ms-ratelimit-remaining-subscription-reads": "11741", + "x-ms-request-id": "ce92fce8-1a85-41e1-9c03-79102f44335b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T065958Z:ea569b73-8779-4ee7-af3c-b1ec84023396" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4759eac2e42e8e284da31e0df6cae79b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "658a4524-27a9-44ab-aefa-ccf366ff486e", + "x-ms-client-request-id": "4759eac2e42e8e284da31e0df6cae79b", + "x-ms-correlation-request-id": "723914a1-e8c7-40c0-8447-c42e82583356", + "x-ms-ratelimit-remaining-subscription-reads": "11740", + "x-ms-request-id": "2c819c03-25ff-425b-9859-07f9da869873", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070000Z:723914a1-e8c7-40c0-8447-c42e82583356" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "264bbc6ac5ea02a2589228dfd937c8f4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "50bb7698-a41f-45ba-b3f8-8be05a8820ba", + "x-ms-client-request-id": "264bbc6ac5ea02a2589228dfd937c8f4", + "x-ms-correlation-request-id": "227eb78b-f6f7-4eef-980e-89ee08053ef6", + "x-ms-ratelimit-remaining-subscription-reads": "11739", + "x-ms-request-id": "44261588-789e-4073-b219-72d86e47bc1a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070001Z:227eb78b-f6f7-4eef-980e-89ee08053ef6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "06c626fa144666e758c13455e2cc5982", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:00: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": "dc2aec74-f48d-427b-8919-db3d9524587c", + "x-ms-client-request-id": "06c626fa144666e758c13455e2cc5982", + "x-ms-correlation-request-id": "1eca7555-a500-434b-b8d3-40d1155a5623", + "x-ms-ratelimit-remaining-subscription-reads": "11738", + "x-ms-request-id": "0527534f-3556-4279-bbff-5820f2ded251", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070002Z:1eca7555-a500-434b-b8d3-40d1155a5623" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "75675708e5c1fdc04757ef9cbc49b415", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4330eacd-16df-4b9c-b389-6b9e0794d474", + "x-ms-client-request-id": "75675708e5c1fdc04757ef9cbc49b415", + "x-ms-correlation-request-id": "2c887301-c473-4d01-9801-a116fc7a898e", + "x-ms-ratelimit-remaining-subscription-reads": "11737", + "x-ms-request-id": "e4d6f37b-6439-4f51-9b25-91f3141c4994", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070004Z:2c887301-c473-4d01-9801-a116fc7a898e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cf1329dae0045555d4e4ce29904d1f8b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "ecbea34e-f9aa-4269-8902-66f6f4eaac8a", + "x-ms-client-request-id": "cf1329dae0045555d4e4ce29904d1f8b", + "x-ms-correlation-request-id": "865082e7-0236-4d34-b0f6-b0f3ec907513", + "x-ms-ratelimit-remaining-subscription-reads": "11736", + "x-ms-request-id": "4e401e3f-5d07-4591-a1d6-9bd1d23c1e47", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070005Z:865082e7-0236-4d34-b0f6-b0f3ec907513" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "82d7a63853d0143366c8beee244baa0f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c6ba1b2c-aae1-4f05-adaf-ae7724b8c1ad", + "x-ms-client-request-id": "82d7a63853d0143366c8beee244baa0f", + "x-ms-correlation-request-id": "7a386c31-6af7-4e59-96ff-fd30c292ec03", + "x-ms-ratelimit-remaining-subscription-reads": "11735", + "x-ms-request-id": "027752d2-05d7-43a4-afb6-4a91a2e7724f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070006Z:7a386c31-6af7-4e59-96ff-fd30c292ec03" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b87a1f0c8ab8277d0111a0dc17976dfa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "343e3242-01e3-47ec-9f08-4717725abde2", + "x-ms-client-request-id": "b87a1f0c8ab8277d0111a0dc17976dfa", + "x-ms-correlation-request-id": "83f671eb-b7f1-4267-b075-300e0e48f63c", + "x-ms-ratelimit-remaining-subscription-reads": "11734", + "x-ms-request-id": "12375e94-d1e3-40cc-871d-0c2c20cf369f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070008Z:83f671eb-b7f1-4267-b075-300e0e48f63c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1664633732718645f5ff693c21673088", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "24cfe8b1-0ee8-4816-b2dc-a942dedf6dc7", + "x-ms-client-request-id": "1664633732718645f5ff693c21673088", + "x-ms-correlation-request-id": "3d79444a-c358-49ac-b1de-de3f6fe45660", + "x-ms-ratelimit-remaining-subscription-reads": "11733", + "x-ms-request-id": "b90d13de-ef42-4ab2-bc88-726a3ccac4ca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070009Z:3d79444a-c358-49ac-b1de-de3f6fe45660" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "711cbf3a66d2add329af80beb257fdce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "429b762d-b749-432f-9fee-4b7d238db85b", + "x-ms-client-request-id": "711cbf3a66d2add329af80beb257fdce", + "x-ms-correlation-request-id": "3420d109-190b-42cc-a7cd-7a2149137019", + "x-ms-ratelimit-remaining-subscription-reads": "11732", + "x-ms-request-id": "bbf5104b-d310-4a0f-8ba9-23ae93b4e228", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070010Z:3420d109-190b-42cc-a7cd-7a2149137019" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c1b6c45b94e7da9ddaf4c3b92140059a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:00: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": "907aaac7-4255-4dde-be84-e2f58801fabc", + "x-ms-client-request-id": "c1b6c45b94e7da9ddaf4c3b92140059a", + "x-ms-correlation-request-id": "70aa2092-a2e5-4052-98b8-f90d0b4a4637", + "x-ms-ratelimit-remaining-subscription-reads": "11731", + "x-ms-request-id": "ada58e90-7dbe-4bb4-83d6-79a2fd9753fd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070011Z:70aa2092-a2e5-4052-98b8-f90d0b4a4637" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "58a218e0fb7bd02790b6ecc2b186d49e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b1fa68a4-d18f-4707-85e3-4439f365a024", + "x-ms-client-request-id": "58a218e0fb7bd02790b6ecc2b186d49e", + "x-ms-correlation-request-id": "4487b605-7729-413c-a682-44157598ac78", + "x-ms-ratelimit-remaining-subscription-reads": "11730", + "x-ms-request-id": "1e6ebee5-5de6-4fc4-8f62-7f84911b6044", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070013Z:4487b605-7729-413c-a682-44157598ac78" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5de09a016fb0a5a0224197dea3198ce8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0d3a895f-1cee-4f0a-9128-71dd07121976", + "x-ms-client-request-id": "5de09a016fb0a5a0224197dea3198ce8", + "x-ms-correlation-request-id": "b5b96ee9-bbc3-4155-a136-8c5db01734e8", + "x-ms-ratelimit-remaining-subscription-reads": "11729", + "x-ms-request-id": "9d75473d-5859-442b-9f1b-c4d1baa95f36", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070014Z:b5b96ee9-bbc3-4155-a136-8c5db01734e8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9adee5a9a5b55f539ce53031a7da2853", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:00: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": "04c310ff-438e-44dd-8810-7dcfb851ffaa", + "x-ms-client-request-id": "9adee5a9a5b55f539ce53031a7da2853", + "x-ms-correlation-request-id": "80e28ae7-820f-4896-88eb-47030d096f97", + "x-ms-ratelimit-remaining-subscription-reads": "11728", + "x-ms-request-id": "0519ab0e-b1b8-4f57-9735-c28459624ef3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070015Z:80e28ae7-820f-4896-88eb-47030d096f97" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "86b72420a86071ea77fc353964492d76", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b4a1c483-1ebe-4d70-bebb-8c46f1d71a9c", + "x-ms-client-request-id": "86b72420a86071ea77fc353964492d76", + "x-ms-correlation-request-id": "7824a884-7e7b-4815-88a4-f3d9743738bd", + "x-ms-ratelimit-remaining-subscription-reads": "11727", + "x-ms-request-id": "83d29776-9efb-4cb4-9952-9831edadbbdd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070016Z:7824a884-7e7b-4815-88a4-f3d9743738bd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cb18042939a85ce94781c1ca3f6ffe47", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "8724046e-74c8-434f-8eae-0af5217d2a12", + "x-ms-client-request-id": "cb18042939a85ce94781c1ca3f6ffe47", + "x-ms-correlation-request-id": "8e71d5a9-9f68-41a2-8268-73e85957df06", + "x-ms-ratelimit-remaining-subscription-reads": "11726", + "x-ms-request-id": "9963a5ec-72c3-45d0-82f6-5544fb4f901b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070018Z:8e71d5a9-9f68-41a2-8268-73e85957df06" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7ebe431806620188fb6c23b86f1afb52", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "068c9713-e724-4467-93f2-7490f64300c3", + "x-ms-client-request-id": "7ebe431806620188fb6c23b86f1afb52", + "x-ms-correlation-request-id": "6f08a22c-8501-4fbc-96f5-bca7ab70a8e5", + "x-ms-ratelimit-remaining-subscription-reads": "11725", + "x-ms-request-id": "9f4cb222-3e3b-4bc9-8316-05f6dcf769da", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070019Z:6f08a22c-8501-4fbc-96f5-bca7ab70a8e5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a207b9b85dc2e6ab3b5b3edfe7203107", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "cb8fcd70-143c-456e-b0af-bf0c021a9cdc", + "x-ms-client-request-id": "a207b9b85dc2e6ab3b5b3edfe7203107", + "x-ms-correlation-request-id": "8dbec542-9089-4bd6-897b-2be514959759", + "x-ms-ratelimit-remaining-subscription-reads": "11724", + "x-ms-request-id": "ab743b32-c1aa-4749-96a1-0147c2e88a61", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070020Z:8dbec542-9089-4bd6-897b-2be514959759" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2020eefeae8b23147c16d03b1631ec2d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "9195760a-d075-4cf8-a78f-ca4f751e81e7", + "x-ms-client-request-id": "2020eefeae8b23147c16d03b1631ec2d", + "x-ms-correlation-request-id": "03ac3df9-466d-4028-8ae8-b37c7fb5d4e7", + "x-ms-ratelimit-remaining-subscription-reads": "11723", + "x-ms-request-id": "554f2365-261c-422c-adf2-750046f092d1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070022Z:03ac3df9-466d-4028-8ae8-b37c7fb5d4e7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "85116e855b67bb8498d74307c7a91adb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "7c57874e-86e8-4a83-81b4-133b109023fe", + "x-ms-client-request-id": "85116e855b67bb8498d74307c7a91adb", + "x-ms-correlation-request-id": "530114e1-e333-4a8b-b277-1f1cfbc02b3e", + "x-ms-ratelimit-remaining-subscription-reads": "11722", + "x-ms-request-id": "25d50fa5-8636-422d-ab72-73ead8f2c62b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070023Z:530114e1-e333-4a8b-b277-1f1cfbc02b3e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "80b91b3bdaf90ac7a5e426ab8c70d00a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "908858c1-0558-466c-81f2-df0c537cf99f", + "x-ms-client-request-id": "80b91b3bdaf90ac7a5e426ab8c70d00a", + "x-ms-correlation-request-id": "d37e7dc0-506f-4685-a6c5-8dd812112c79", + "x-ms-ratelimit-remaining-subscription-reads": "11721", + "x-ms-request-id": "41ab95fc-9eda-4a86-a70c-38a6dafc11f1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070024Z:d37e7dc0-506f-4685-a6c5-8dd812112c79" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7859116eac0ea3a0696488b36a0d5bd3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e1dfd233-6647-4127-8dfd-4af424777527", + "x-ms-client-request-id": "7859116eac0ea3a0696488b36a0d5bd3", + "x-ms-correlation-request-id": "11ec2ee9-f805-4167-aaab-b04535aedf51", + "x-ms-ratelimit-remaining-subscription-reads": "11720", + "x-ms-request-id": "60fbe25c-fd4e-4757-839e-bd205c49450f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070025Z:11ec2ee9-f805-4167-aaab-b04535aedf51" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fa00f5fc6c77ab33a706e08234d92f27", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "69b09e8d-a2f0-4143-b8b5-2cbc3db67cbf", + "x-ms-client-request-id": "fa00f5fc6c77ab33a706e08234d92f27", + "x-ms-correlation-request-id": "0edf6e45-5b95-4b9d-af55-8e9d89673fd2", + "x-ms-ratelimit-remaining-subscription-reads": "11719", + "x-ms-request-id": "d3216297-46b6-42e1-8f48-a16b60b3108a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070027Z:0edf6e45-5b95-4b9d-af55-8e9d89673fd2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b6983907a14f8fcc7b1616955113a097", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d7fd9cd5-7efd-4e67-b460-1d4d8b5b0c7b", + "x-ms-client-request-id": "b6983907a14f8fcc7b1616955113a097", + "x-ms-correlation-request-id": "2546fb36-663b-4bad-88db-dc8e293d24c4", + "x-ms-ratelimit-remaining-subscription-reads": "11718", + "x-ms-request-id": "b3fce664-66d6-49aa-a973-2436a041c698", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070028Z:2546fb36-663b-4bad-88db-dc8e293d24c4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "97af5289d5700193ddadd107cb1d6e90", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "81a6c584-3406-4c69-8399-72d7dd77a232", + "x-ms-client-request-id": "97af5289d5700193ddadd107cb1d6e90", + "x-ms-correlation-request-id": "64a9566b-98d5-45e5-8af8-ae69874a5bf0", + "x-ms-ratelimit-remaining-subscription-reads": "11717", + "x-ms-request-id": "a7d7975d-2372-483e-8f79-46cb0ca06269", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070029Z:64a9566b-98d5-45e5-8af8-ae69874a5bf0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "31ac6135a5745a8328707f60559e5993", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c45b7b77-00f1-4b40-b963-65b7d2602ba6", + "x-ms-client-request-id": "31ac6135a5745a8328707f60559e5993", + "x-ms-correlation-request-id": "c619bda5-aa39-4d87-91d7-0b2b8a0b45c0", + "x-ms-ratelimit-remaining-subscription-reads": "11716", + "x-ms-request-id": "7f17cea9-d31d-4061-a81c-43cf54851ff2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070031Z:c619bda5-aa39-4d87-91d7-0b2b8a0b45c0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e2f94866972931b7a697d8a1cfc4c35e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "220f27a0-2d00-407f-a8e0-cbf84e4fb584", + "x-ms-client-request-id": "e2f94866972931b7a697d8a1cfc4c35e", + "x-ms-correlation-request-id": "b5dc2786-9ed1-42aa-a0ad-64d28387efbf", + "x-ms-ratelimit-remaining-subscription-reads": "11715", + "x-ms-request-id": "e4576f19-5fdd-49b5-af1c-7701c5867ccd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070032Z:b5dc2786-9ed1-42aa-a0ad-64d28387efbf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f05f86a86f66e323ce546fff5632ac3e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:00: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": "a8d88616-abb4-4240-9007-6fa95ad1c817", + "x-ms-client-request-id": "f05f86a86f66e323ce546fff5632ac3e", + "x-ms-correlation-request-id": "e4648644-3d67-4c54-98c2-e2230657cde1", + "x-ms-ratelimit-remaining-subscription-reads": "11714", + "x-ms-request-id": "7f20e3dd-151d-4fc2-a779-9f107d23d832", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070033Z:e4648644-3d67-4c54-98c2-e2230657cde1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "83a13d538b239d66a97a8bddcce18a63", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "34b1e112-4d8c-4d7e-946e-f9584e99ce28", + "x-ms-client-request-id": "83a13d538b239d66a97a8bddcce18a63", + "x-ms-correlation-request-id": "dfd8509d-3107-4763-b346-99239a437cd3", + "x-ms-ratelimit-remaining-subscription-reads": "11713", + "x-ms-request-id": "f4fd0ff8-ed36-4611-a473-be421f419118", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070034Z:dfd8509d-3107-4763-b346-99239a437cd3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ceb821ad693ef72d241513d528b8db73", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0f0194ac-af7a-4e31-bd15-0f2d4e652451", + "x-ms-client-request-id": "ceb821ad693ef72d241513d528b8db73", + "x-ms-correlation-request-id": "9166a126-b101-4887-b7a1-e8270a844d45", + "x-ms-ratelimit-remaining-subscription-reads": "11712", + "x-ms-request-id": "a7d0441e-a93d-48a9-afd3-0565ae4f30b9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070036Z:9166a126-b101-4887-b7a1-e8270a844d45" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "914e9aea40231c3a1fc247ece44617ec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:00: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": "7f29f28a-d4c4-4afe-8d7c-cf9cae8c83a5", + "x-ms-client-request-id": "914e9aea40231c3a1fc247ece44617ec", + "x-ms-correlation-request-id": "3bfb5dcf-0a23-4d1d-8831-af397f7a39a9", + "x-ms-ratelimit-remaining-subscription-reads": "11711", + "x-ms-request-id": "927cbaee-f887-4689-b505-df759ea7b7eb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070038Z:3bfb5dcf-0a23-4d1d-8831-af397f7a39a9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "34510bc9dd7aeaff10aa5e0d789174f0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a9366330-de0d-4c36-b9a5-82c0ac980235", + "x-ms-client-request-id": "34510bc9dd7aeaff10aa5e0d789174f0", + "x-ms-correlation-request-id": "9f7b8fd5-9cd6-4756-b927-5760e6e4f711", + "x-ms-ratelimit-remaining-subscription-reads": "11710", + "x-ms-request-id": "53b65b42-9d90-4f40-a2c3-e389f49595dc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070039Z:9f7b8fd5-9cd6-4756-b927-5760e6e4f711" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "32f2179ef8936d40e69caf7c224013de", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f9fd4ea5-4e07-4427-bdab-92162a6ddc10", + "x-ms-client-request-id": "32f2179ef8936d40e69caf7c224013de", + "x-ms-correlation-request-id": "f68bcc3e-33de-4cf9-a75b-40ac9d06874e", + "x-ms-ratelimit-remaining-subscription-reads": "11709", + "x-ms-request-id": "fc6bb32e-ef74-4861-be08-c4adeee7818e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070040Z:f68bcc3e-33de-4cf9-a75b-40ac9d06874e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1d0b27fea7660cf99a638178e12da48e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9cbf05cf-4238-4d05-9acf-8f46787583ca", + "x-ms-client-request-id": "1d0b27fea7660cf99a638178e12da48e", + "x-ms-correlation-request-id": "c22e4019-f7fb-44df-9ef8-11ed0c5c5a66", + "x-ms-ratelimit-remaining-subscription-reads": "11708", + "x-ms-request-id": "5c435ebd-3cec-47d1-8629-9565e9c4d660", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070041Z:c22e4019-f7fb-44df-9ef8-11ed0c5c5a66" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cc4d564de553d058cae44edd2e83c7cf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "c53178f5-b0df-4d86-80cf-ddb6ddfa13cd", + "x-ms-client-request-id": "cc4d564de553d058cae44edd2e83c7cf", + "x-ms-correlation-request-id": "658c1493-939e-4098-8ab9-8db53fbad558", + "x-ms-ratelimit-remaining-subscription-reads": "11707", + "x-ms-request-id": "aefe136b-4f42-49e6-b3be-65445e5709ab", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070043Z:658c1493-939e-4098-8ab9-8db53fbad558" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "510f80975785f7891ee6983077c88bb8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "449b106a-30d5-464c-b3e9-4206be69b97a", + "x-ms-client-request-id": "510f80975785f7891ee6983077c88bb8", + "x-ms-correlation-request-id": "d45c794e-8440-43d4-8807-9565226bcdcf", + "x-ms-ratelimit-remaining-subscription-reads": "11706", + "x-ms-request-id": "f73c0bf4-488d-49a8-bf77-d16251f39ab0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070044Z:d45c794e-8440-43d4-8807-9565226bcdcf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cc2e20f846f3198ace3a5282581bdd16", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "74ee7e6a-f33b-410f-8461-9297fddaadeb", + "x-ms-client-request-id": "cc2e20f846f3198ace3a5282581bdd16", + "x-ms-correlation-request-id": "972d88c4-db9e-4723-a543-07452540f574", + "x-ms-ratelimit-remaining-subscription-reads": "11705", + "x-ms-request-id": "a725e982-a1a7-4926-bc29-862ccbd5a6f8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070045Z:972d88c4-db9e-4723-a543-07452540f574" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "61e1b19b521ef608cc55ae6d4d285802", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "611ce2ac-5314-4d74-b88c-f867fcfa3abe", + "x-ms-client-request-id": "61e1b19b521ef608cc55ae6d4d285802", + "x-ms-correlation-request-id": "c2e02f5f-00b1-40d7-b71a-93007a3e3c70", + "x-ms-ratelimit-remaining-subscription-reads": "11704", + "x-ms-request-id": "bdc4af0f-6dda-4d9e-be92-0f6525eaadf5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070046Z:c2e02f5f-00b1-40d7-b71a-93007a3e3c70" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0de59558fb5450dcf5f5834a04079f02", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "de26c6cb-5560-4e72-aa78-71382b687f81", + "x-ms-client-request-id": "0de59558fb5450dcf5f5834a04079f02", + "x-ms-correlation-request-id": "92ba97a9-bfc8-4a5c-ab16-e776c86d2a19", + "x-ms-ratelimit-remaining-subscription-reads": "11703", + "x-ms-request-id": "89d0f658-52f3-4e05-a62e-57f04e3e1876", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070048Z:92ba97a9-bfc8-4a5c-ab16-e776c86d2a19" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c69481082ae7a59a1738ff9e981dcba5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "19c7ec3d-7889-44b3-a345-c994932f9a97", + "x-ms-client-request-id": "c69481082ae7a59a1738ff9e981dcba5", + "x-ms-correlation-request-id": "aa1162e9-85e8-4639-a74a-8382dcb13756", + "x-ms-ratelimit-remaining-subscription-reads": "11702", + "x-ms-request-id": "fb8bb532-1c06-46c0-aea9-e0e5cbffcc5c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070049Z:aa1162e9-85e8-4639-a74a-8382dcb13756" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c22950e1d036a0c1d4906b28cfbef1c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "007abeeb-275e-4ec6-b1d5-01b688b00b55", + "x-ms-client-request-id": "c22950e1d036a0c1d4906b28cfbef1c5", + "x-ms-correlation-request-id": "41b7fe07-8666-4703-9f5c-dcb27da9a45f", + "x-ms-ratelimit-remaining-subscription-reads": "11701", + "x-ms-request-id": "5435cb36-2d33-454b-8e32-5edb2d1904bb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070050Z:41b7fe07-8666-4703-9f5c-dcb27da9a45f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cb64acb692942e1bfb40f61cfc3db8d8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "afc4e304-aa42-4369-9320-bc75e58a0ba1", + "x-ms-client-request-id": "cb64acb692942e1bfb40f61cfc3db8d8", + "x-ms-correlation-request-id": "65758a8b-690b-4d5f-904b-76e345f57d4e", + "x-ms-ratelimit-remaining-subscription-reads": "11700", + "x-ms-request-id": "17d5ed12-9a8c-4239-baf2-a948c890d107", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070052Z:65758a8b-690b-4d5f-904b-76e345f57d4e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b468dd2adcdd38cbbff4f157be71d559", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "62465d03-2acc-430e-a079-d9ce2074e871", + "x-ms-client-request-id": "b468dd2adcdd38cbbff4f157be71d559", + "x-ms-correlation-request-id": "e92cca50-8ee0-49a7-8d63-39e5fe1d92f9", + "x-ms-ratelimit-remaining-subscription-reads": "11699", + "x-ms-request-id": "8ad252b1-e454-41d6-96bd-e417ae4d3ff6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070053Z:e92cca50-8ee0-49a7-8d63-39e5fe1d92f9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ebe8394700b84f1034fbc6f6daa5a397", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f3ab910d-47b4-41f0-9ebc-2ce097348ca0", + "x-ms-client-request-id": "ebe8394700b84f1034fbc6f6daa5a397", + "x-ms-correlation-request-id": "bbc18084-537e-4fad-bd49-1be3be73402b", + "x-ms-ratelimit-remaining-subscription-reads": "11698", + "x-ms-request-id": "c3ee3241-9a4a-4d82-bdba-ab4e2a27a038", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070054Z:bbc18084-537e-4fad-bd49-1be3be73402b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f2fe93d73d55d9e8e02c0ba0a0c4708a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "a44336b1-07e3-43d3-8b51-1e9329e7dd55", + "x-ms-client-request-id": "f2fe93d73d55d9e8e02c0ba0a0c4708a", + "x-ms-correlation-request-id": "d6f51cea-5423-4ad1-b0c2-1749a73804c8", + "x-ms-ratelimit-remaining-subscription-reads": "11697", + "x-ms-request-id": "f3e22bf3-645f-4da7-b9ac-1df2a7f101f3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070055Z:d6f51cea-5423-4ad1-b0c2-1749a73804c8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c2d49c6acd552920cd197fe215d55e19", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c8dc6bbf-e726-4292-9239-01d94aa00dc0", + "x-ms-client-request-id": "c2d49c6acd552920cd197fe215d55e19", + "x-ms-correlation-request-id": "54024c42-efbc-4ea6-8346-0a88aa040034", + "x-ms-ratelimit-remaining-subscription-reads": "11696", + "x-ms-request-id": "2d064645-736d-4180-a50f-59787275f4ed", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070057Z:54024c42-efbc-4ea6-8346-0a88aa040034" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2b7f5a50e3720904510e0b8bf46fae70", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b257cb26-8320-4dca-ae37-fcf8e54636df", + "x-ms-client-request-id": "2b7f5a50e3720904510e0b8bf46fae70", + "x-ms-correlation-request-id": "21d58ec2-665e-4623-9c23-436387b5100e", + "x-ms-ratelimit-remaining-subscription-reads": "11695", + "x-ms-request-id": "9cfc98ea-faa0-479e-87ab-abf56627e00f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070058Z:21d58ec2-665e-4623-9c23-436387b5100e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3d8b3c8ae1d0094173d5243cbd06c30a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9257230a-32f1-4158-ab18-e8da287dc19d", + "x-ms-client-request-id": "3d8b3c8ae1d0094173d5243cbd06c30a", + "x-ms-correlation-request-id": "e0a631af-196c-4760-9c46-54c40d74a7d1", + "x-ms-ratelimit-remaining-subscription-reads": "11694", + "x-ms-request-id": "19cc44a2-a749-4983-9a5e-cbf3872a702c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070059Z:e0a631af-196c-4760-9c46-54c40d74a7d1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4550f1ce4544871798cb7046c194345d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "32544e84-b37d-4341-be6c-c6b9f3b9662d", + "x-ms-client-request-id": "4550f1ce4544871798cb7046c194345d", + "x-ms-correlation-request-id": "87fb1969-18cb-43c0-838b-9185db39f629", + "x-ms-ratelimit-remaining-subscription-reads": "11693", + "x-ms-request-id": "e102c757-9715-4f1a-a340-18081d7e40a5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070101Z:87fb1969-18cb-43c0-838b-9185db39f629" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d8570f6a204a6e491976b79dbec74b4b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4732a36b-de79-4c49-bd05-d702085dfc7e", + "x-ms-client-request-id": "d8570f6a204a6e491976b79dbec74b4b", + "x-ms-correlation-request-id": "fec7ec45-ff57-485e-b155-d19e122a30ee", + "x-ms-ratelimit-remaining-subscription-reads": "11692", + "x-ms-request-id": "4aca5a91-e467-4e36-860e-9329cd881fbd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070102Z:fec7ec45-ff57-485e-b155-d19e122a30ee" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "03bd004a691f452c2503a50570fa48de", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d0774bd1-59ad-4434-8faf-987ad7d2bdeb", + "x-ms-client-request-id": "03bd004a691f452c2503a50570fa48de", + "x-ms-correlation-request-id": "3ea147f3-4727-4742-a3af-50f131c6bbc0", + "x-ms-ratelimit-remaining-subscription-reads": "11691", + "x-ms-request-id": "50bdf2b3-1a46-46e8-b3d3-963ed5e4858d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070103Z:3ea147f3-4727-4742-a3af-50f131c6bbc0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aed2c6a0ebaeadc0a8e12cce8d79c8d0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a9a41140-c729-4e1b-a913-8f62acdcfffa", + "x-ms-client-request-id": "aed2c6a0ebaeadc0a8e12cce8d79c8d0", + "x-ms-correlation-request-id": "09e31954-eef0-4364-87d0-a0bbaa9f24cd", + "x-ms-ratelimit-remaining-subscription-reads": "11690", + "x-ms-request-id": "786c2b8e-567c-474e-9aa2-f43a825aeeb8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070104Z:09e31954-eef0-4364-87d0-a0bbaa9f24cd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c1fb257f31d7013ee212b3467b43fe1e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "adc40300-1a64-4ac8-a5f9-badc5da7eb2b", + "x-ms-client-request-id": "c1fb257f31d7013ee212b3467b43fe1e", + "x-ms-correlation-request-id": "80c22d2a-4ddc-4996-a2e7-2653e78cb3b4", + "x-ms-ratelimit-remaining-subscription-reads": "11689", + "x-ms-request-id": "62c91d47-f899-4fc9-988e-4fdafeab5e9c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070106Z:80c22d2a-4ddc-4996-a2e7-2653e78cb3b4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f7fdd92d9df55f9d400f5a3d3c5db7ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:01: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": "3e00105d-74be-4646-aa27-ad2113910403", + "x-ms-client-request-id": "f7fdd92d9df55f9d400f5a3d3c5db7ab", + "x-ms-correlation-request-id": "db4c63dc-7dc3-4afa-a50a-9516d706c904", + "x-ms-ratelimit-remaining-subscription-reads": "11688", + "x-ms-request-id": "51b1684a-319e-430a-90c9-3df065be7fa0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070107Z:db4c63dc-7dc3-4afa-a50a-9516d706c904" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4b86d43a86ff6e0788d1cb9c377a3265", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5141047d-6ad4-4293-b289-a8be2fc1f7b9", + "x-ms-client-request-id": "4b86d43a86ff6e0788d1cb9c377a3265", + "x-ms-correlation-request-id": "f529b73c-0638-457d-84e7-a97f14e35d8e", + "x-ms-ratelimit-remaining-subscription-reads": "11687", + "x-ms-request-id": "1f114a14-5849-4f9d-a0bc-181d07813408", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070108Z:f529b73c-0638-457d-84e7-a97f14e35d8e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b4a00ee3d17ce2db889b81c7d701c485", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d5daf426-6107-42bb-aacf-fef980ae1464", + "x-ms-client-request-id": "b4a00ee3d17ce2db889b81c7d701c485", + "x-ms-correlation-request-id": "268e9058-89ea-4799-a941-81b852801550", + "x-ms-ratelimit-remaining-subscription-reads": "11686", + "x-ms-request-id": "ffbc4a86-0bd0-40bc-9f79-295624577471", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070110Z:268e9058-89ea-4799-a941-81b852801550" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a70b085ab2bca61ed18e6f24d10028c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7cf98c7e-5b2b-4cdd-8796-dbf266781b57", + "x-ms-client-request-id": "a70b085ab2bca61ed18e6f24d10028c5", + "x-ms-correlation-request-id": "24e14879-6119-43df-a370-389cb999438d", + "x-ms-ratelimit-remaining-subscription-reads": "11685", + "x-ms-request-id": "79e6738f-e2d0-4443-8ea3-fba476aae3ab", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070111Z:24e14879-6119-43df-a370-389cb999438d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2d59f4dd03bd692ef8a4c363053f9787", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:01: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": "c86a7eb0-c09b-447a-9b2c-97b3ebf58d97", + "x-ms-client-request-id": "2d59f4dd03bd692ef8a4c363053f9787", + "x-ms-correlation-request-id": "a6bbe11e-358a-4087-96f2-5b25c61d44cb", + "x-ms-ratelimit-remaining-subscription-reads": "11684", + "x-ms-request-id": "fae780e4-1a28-48d8-a2de-2df930595546", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070112Z:a6bbe11e-358a-4087-96f2-5b25c61d44cb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2f41460c8a6e30a8eff9e2ee61b71087", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8557520d-f397-40aa-ae6c-b6f5e38d5a60", + "x-ms-client-request-id": "2f41460c8a6e30a8eff9e2ee61b71087", + "x-ms-correlation-request-id": "ff80cd4e-bd0c-4d23-a309-39f8f89a2510", + "x-ms-ratelimit-remaining-subscription-reads": "11683", + "x-ms-request-id": "c29f1cf9-5356-4ef2-9694-9478e6e701b0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070114Z:ff80cd4e-bd0c-4d23-a309-39f8f89a2510" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e2eabb7397a756c7d9a1ae18efbba191", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3d7d7769-dcda-4357-960c-ee749fa0b576", + "x-ms-client-request-id": "e2eabb7397a756c7d9a1ae18efbba191", + "x-ms-correlation-request-id": "23e2eab5-57f9-4698-baaa-9c1f8125bdc4", + "x-ms-ratelimit-remaining-subscription-reads": "11682", + "x-ms-request-id": "e522ba2f-77ee-4eb6-b9a2-145ebd782104", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070115Z:23e2eab5-57f9-4698-baaa-9c1f8125bdc4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8a18e8f6f9bf52574c283ec320400841", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a8c84190-c94b-49c1-964b-4a4720aeaa49", + "x-ms-client-request-id": "8a18e8f6f9bf52574c283ec320400841", + "x-ms-correlation-request-id": "30aa4aa9-9f79-4a0a-a602-586ac6cd6510", + "x-ms-ratelimit-remaining-subscription-reads": "11681", + "x-ms-request-id": "e4f8b126-6f55-4a61-9077-7d31fa5b47cc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070117Z:30aa4aa9-9f79-4a0a-a602-586ac6cd6510" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4af03b93b55474df7eea55cddb8f4134", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7d3832b0-dcba-4ef6-b954-063d5d4d1a2d", + "x-ms-client-request-id": "4af03b93b55474df7eea55cddb8f4134", + "x-ms-correlation-request-id": "de523cf3-4861-4b1f-aabb-6bb443d7dbbe", + "x-ms-ratelimit-remaining-subscription-reads": "11680", + "x-ms-request-id": "9ee40397-82c6-48a3-98db-7bbd78b52c96", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070118Z:de523cf3-4861-4b1f-aabb-6bb443d7dbbe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "79f75158869e79c86498957e59043699", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "191d7936-2d6c-45a3-842f-4d8950f50cd2", + "x-ms-client-request-id": "79f75158869e79c86498957e59043699", + "x-ms-correlation-request-id": "02b34c7a-f2f5-4fe4-98d3-e88317412d5f", + "x-ms-ratelimit-remaining-subscription-reads": "11679", + "x-ms-request-id": "08c9f2d0-4213-4553-8e8d-abe1542b9cc7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070119Z:02b34c7a-f2f5-4fe4-98d3-e88317412d5f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b3856d9956cb403d08a30bd4a38976bc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:01: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": "1a5edf3a-a207-41db-93c3-4b379c071506", + "x-ms-client-request-id": "b3856d9956cb403d08a30bd4a38976bc", + "x-ms-correlation-request-id": "03f9f86c-f59f-4653-a8ea-8dfc4ea8be11", + "x-ms-ratelimit-remaining-subscription-reads": "11678", + "x-ms-request-id": "b85559f9-e402-488f-a789-3b10ed2bb8a9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070120Z:03f9f86c-f59f-4653-a8ea-8dfc4ea8be11" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cf6a09e78e480da27376e6bc1f601b7a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6985c3f9-84f6-4129-8468-639159b70ea7", + "x-ms-client-request-id": "cf6a09e78e480da27376e6bc1f601b7a", + "x-ms-correlation-request-id": "d72b2e40-f5cf-4524-a1ac-b339211489c9", + "x-ms-ratelimit-remaining-subscription-reads": "11677", + "x-ms-request-id": "5866fbda-6bd2-4757-9162-4ddfb12bdd3f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070122Z:d72b2e40-f5cf-4524-a1ac-b339211489c9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6e33bcb48d0a026813b770fb7af4d6da", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7c6655b1-90b5-407f-a23d-b303f38d2c97", + "x-ms-client-request-id": "6e33bcb48d0a026813b770fb7af4d6da", + "x-ms-correlation-request-id": "290312d5-c47d-4eb5-905b-5144566abf1d", + "x-ms-ratelimit-remaining-subscription-reads": "11676", + "x-ms-request-id": "227d64bb-ecef-43f9-8a0e-9924bfa28e7e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070123Z:290312d5-c47d-4eb5-905b-5144566abf1d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4f97d92266990b50ca774054708020a8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2787b967-3223-4ab5-a861-55eea92194ca", + "x-ms-client-request-id": "4f97d92266990b50ca774054708020a8", + "x-ms-correlation-request-id": "dfff35eb-fbb2-4b02-921c-1c8e1308f4c9", + "x-ms-ratelimit-remaining-subscription-reads": "11675", + "x-ms-request-id": "23bcf9a6-694e-403e-a0a8-06aef0834be0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070124Z:dfff35eb-fbb2-4b02-921c-1c8e1308f4c9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e71f918807565ab1a068bb911da7927f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "5a21c8f1-d0ec-49ee-8c8e-f407f3f2a732", + "x-ms-client-request-id": "e71f918807565ab1a068bb911da7927f", + "x-ms-correlation-request-id": "d7d78f38-3b46-4c72-9191-d9ca7e274d8f", + "x-ms-ratelimit-remaining-subscription-reads": "11674", + "x-ms-request-id": "5aa4e816-a260-4ae2-88f4-cb9929783a8a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070125Z:d7d78f38-3b46-4c72-9191-d9ca7e274d8f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "469a0ca0ccc94de06c28a4934d149292", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9080505f-30c0-4088-982f-0d3a8f8708ab", + "x-ms-client-request-id": "469a0ca0ccc94de06c28a4934d149292", + "x-ms-correlation-request-id": "b4008df6-ad33-4876-840c-2ce1aa3a6c80", + "x-ms-ratelimit-remaining-subscription-reads": "11673", + "x-ms-request-id": "bab133db-2bea-487e-9f0e-4611d60119ab", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070127Z:b4008df6-ad33-4876-840c-2ce1aa3a6c80" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e873c896eed41a83273cae30abbfed22", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "eebc5100-335f-469c-b114-e7470fd7ba0f", + "x-ms-client-request-id": "e873c896eed41a83273cae30abbfed22", + "x-ms-correlation-request-id": "a5f81602-1fe9-4355-be9b-4f5b31aef533", + "x-ms-ratelimit-remaining-subscription-reads": "11672", + "x-ms-request-id": "74f2190e-db7e-4dfc-b2ff-7d1d6289b26b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070128Z:a5f81602-1fe9-4355-be9b-4f5b31aef533" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "63b4c0e4d9e6bbdeb0d27a2d621e0c8c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c9223948-a7be-4c67-9577-cfbb35db29bb", + "x-ms-client-request-id": "63b4c0e4d9e6bbdeb0d27a2d621e0c8c", + "x-ms-correlation-request-id": "5c0526f5-7d02-4fe6-bc44-b691576fd545", + "x-ms-ratelimit-remaining-subscription-reads": "11671", + "x-ms-request-id": "9ec79168-44e6-4d2e-afc2-f461f70734a5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070129Z:5c0526f5-7d02-4fe6-bc44-b691576fd545" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "55fb28d6aa34b1aa887f1f8c1db0a2ad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "515155a0-6098-4aa6-8d03-c2d0a4fb8461", + "x-ms-client-request-id": "55fb28d6aa34b1aa887f1f8c1db0a2ad", + "x-ms-correlation-request-id": "45df8863-881f-4c96-a578-ac886353fb5e", + "x-ms-ratelimit-remaining-subscription-reads": "11670", + "x-ms-request-id": "9786ec83-67ca-43d9-8a17-be3d9c2c7fad", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070131Z:45df8863-881f-4c96-a578-ac886353fb5e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8cae813b2e60bcaceab738027456b708", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "43ca6962-c502-4c12-9d2f-86024dfdc1fc", + "x-ms-client-request-id": "8cae813b2e60bcaceab738027456b708", + "x-ms-correlation-request-id": "905a27fc-e31b-414b-bcad-48e0470466ba", + "x-ms-ratelimit-remaining-subscription-reads": "11669", + "x-ms-request-id": "d3bdcf57-d0b9-409c-97b4-dcd7dac19ccf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070133Z:905a27fc-e31b-414b-bcad-48e0470466ba" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "825a212f97c43aee1502db67ba519e00", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "06e00838-12c1-45ab-9e07-79285272541c", + "x-ms-client-request-id": "825a212f97c43aee1502db67ba519e00", + "x-ms-correlation-request-id": "47b5aea2-9ca5-45a2-822a-eefe88106eae", + "x-ms-ratelimit-remaining-subscription-reads": "11668", + "x-ms-request-id": "34f2348e-3e3b-4fc2-854f-58f11a6eab3b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070135Z:47b5aea2-9ca5-45a2-822a-eefe88106eae" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e1f2cd2f806fa82c7c3e6b7d71a83d32", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c79190ac-feff-49cc-aacc-bf6b73a891c8", + "x-ms-client-request-id": "e1f2cd2f806fa82c7c3e6b7d71a83d32", + "x-ms-correlation-request-id": "de92a2ad-f3b7-4a2e-9864-c0a24310c47a", + "x-ms-ratelimit-remaining-subscription-reads": "11667", + "x-ms-request-id": "2884a9f1-7d37-4942-ac9c-afb8c0c9419a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070136Z:de92a2ad-f3b7-4a2e-9864-c0a24310c47a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fc5d16c81f56a3e89374775d53450298", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "47bfe42a-5286-47d2-9ba2-87c9c79de8ce", + "x-ms-client-request-id": "fc5d16c81f56a3e89374775d53450298", + "x-ms-correlation-request-id": "c30bf6dd-4af1-4b0f-a85b-868f7ab01531", + "x-ms-ratelimit-remaining-subscription-reads": "11666", + "x-ms-request-id": "8412ecab-aa68-4831-90e5-0c2e6641d35b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070137Z:c30bf6dd-4af1-4b0f-a85b-868f7ab01531" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a6d23719d663af99f5b106852c70c86d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "35bb3001-99d5-48d4-a268-4c84b837c438", + "x-ms-client-request-id": "a6d23719d663af99f5b106852c70c86d", + "x-ms-correlation-request-id": "25729331-8ba6-40a6-8330-f51dc66d4a22", + "x-ms-ratelimit-remaining-subscription-reads": "11665", + "x-ms-request-id": "1ab123ac-d95c-46e9-a385-541c8c8d974d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070139Z:25729331-8ba6-40a6-8330-f51dc66d4a22" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a39fa8c4a1f40faae44e4dfb08ce5537", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "158eab7a-83aa-4d2b-876b-ef49cf34cada", + "x-ms-client-request-id": "a39fa8c4a1f40faae44e4dfb08ce5537", + "x-ms-correlation-request-id": "8e65a666-176e-47a7-8cbd-6fd629cc5642", + "x-ms-ratelimit-remaining-subscription-reads": "11664", + "x-ms-request-id": "96034d13-1027-4b83-ab90-f115fc1cd202", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070140Z:8e65a666-176e-47a7-8cbd-6fd629cc5642" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3a64d23c97d5f1ce7dad06a419637723", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "645755b9-4138-4697-95ea-9526007831ae", + "x-ms-client-request-id": "3a64d23c97d5f1ce7dad06a419637723", + "x-ms-correlation-request-id": "29441039-9afd-4e0d-a90e-3d51e85ac5ca", + "x-ms-ratelimit-remaining-subscription-reads": "11663", + "x-ms-request-id": "2b51eb40-36a2-42cc-a336-7e1d83b2573e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070141Z:29441039-9afd-4e0d-a90e-3d51e85ac5ca" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aa990aab5ea677a48dc2c115899da727", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "10c74c56-9042-4360-ad7e-8d3f9958defd", + "x-ms-client-request-id": "aa990aab5ea677a48dc2c115899da727", + "x-ms-correlation-request-id": "291f3ec7-3643-4bd7-b2ee-773dcf888bf1", + "x-ms-ratelimit-remaining-subscription-reads": "11662", + "x-ms-request-id": "7e4cf91b-10fe-4227-b852-ce7036a9ed3c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070142Z:291f3ec7-3643-4bd7-b2ee-773dcf888bf1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5a48ce5c8e0c2d97daad26469b06f681", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ab164102-8fea-43de-8e73-18d1a6b8c43a", + "x-ms-client-request-id": "5a48ce5c8e0c2d97daad26469b06f681", + "x-ms-correlation-request-id": "0a9b379d-c50f-48be-8464-9deef1689762", + "x-ms-ratelimit-remaining-subscription-reads": "11661", + "x-ms-request-id": "6b9a5508-bd9e-469f-a96e-7fe8ee0b72c8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070144Z:0a9b379d-c50f-48be-8464-9deef1689762" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fe502ad7aa35de912decad12d6b968e0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0c715c61-6d7c-459d-a1a8-bc0f5221e637", + "x-ms-client-request-id": "fe502ad7aa35de912decad12d6b968e0", + "x-ms-correlation-request-id": "0047c277-c7f4-4821-a8ec-0db2805760cb", + "x-ms-ratelimit-remaining-subscription-reads": "11660", + "x-ms-request-id": "df04f40e-c8c6-4bb9-9cae-7e383c411c49", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070146Z:0047c277-c7f4-4821-a8ec-0db2805760cb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4a47df061c1a1d16726bd0f8385ddc86", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c7eb24c6-10c5-48ff-86b5-218364403f2b", + "x-ms-client-request-id": "4a47df061c1a1d16726bd0f8385ddc86", + "x-ms-correlation-request-id": "bec7cb48-b27c-485f-ac96-fc5423bd83bb", + "x-ms-ratelimit-remaining-subscription-reads": "11659", + "x-ms-request-id": "1a90934d-6dca-418a-9fb0-c1ef7aad964f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070147Z:bec7cb48-b27c-485f-ac96-fc5423bd83bb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5f3d3fcca84cb2f23d6a2c1fe1845720", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "79dfd39e-b65e-4b89-a709-37fc1cc0aa12", + "x-ms-client-request-id": "5f3d3fcca84cb2f23d6a2c1fe1845720", + "x-ms-correlation-request-id": "7d981591-9c58-4acd-9a80-621472b1ae0c", + "x-ms-ratelimit-remaining-subscription-reads": "11658", + "x-ms-request-id": "c490895d-a780-4027-b473-8f592efc593b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070148Z:7d981591-9c58-4acd-9a80-621472b1ae0c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bb404545abbeba6613338bc9da98a5cf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "5d71fd2e-5e2a-4447-aacd-ec34e05afdc1", + "x-ms-client-request-id": "bb404545abbeba6613338bc9da98a5cf", + "x-ms-correlation-request-id": "9eb9d662-f4e8-482c-a52c-7e2aad188ef7", + "x-ms-ratelimit-remaining-subscription-reads": "11657", + "x-ms-request-id": "9bd13a9e-47b4-4708-ba5f-9f1bb44ce4b7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070149Z:9eb9d662-f4e8-482c-a52c-7e2aad188ef7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "96462610087b5d93ed950db0eff63cee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e2bf5bf2-e68b-435c-9ee9-e07e0e77bb57", + "x-ms-client-request-id": "96462610087b5d93ed950db0eff63cee", + "x-ms-correlation-request-id": "2d760261-62f3-41dc-a263-62fc0cec2abd", + "x-ms-ratelimit-remaining-subscription-reads": "11656", + "x-ms-request-id": "0cb35fc7-6b41-4fb7-a4a0-18ba3bfb2818", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070151Z:2d760261-62f3-41dc-a263-62fc0cec2abd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f2b2af14201d20c8d9834b191c28d7a5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "83dd2bd7-1c46-4170-a811-e4bc9ef47af9", + "x-ms-client-request-id": "f2b2af14201d20c8d9834b191c28d7a5", + "x-ms-correlation-request-id": "e823fdf1-3f71-48b3-aaeb-926e2e9f873d", + "x-ms-ratelimit-remaining-subscription-reads": "11655", + "x-ms-request-id": "4ac23ec7-0b7d-4ac3-a9ae-2247ccd75d45", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070152Z:e823fdf1-3f71-48b3-aaeb-926e2e9f873d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ba0f5cc4c13d3ca5b2e2ce299eb6cb1c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8373cf3a-2750-4a16-8f72-8efa79746b4f", + "x-ms-client-request-id": "ba0f5cc4c13d3ca5b2e2ce299eb6cb1c", + "x-ms-correlation-request-id": "45ca7028-a0d9-4b30-90cc-935a35345209", + "x-ms-ratelimit-remaining-subscription-reads": "11654", + "x-ms-request-id": "09f02cc4-d0d1-4208-b62e-5f6c190da945", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070153Z:45ca7028-a0d9-4b30-90cc-935a35345209" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2bb59df7b3e5f0b25e25bcf8bc7941c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "a428247a-521b-49e2-8066-f3eeceaf853b", + "x-ms-client-request-id": "2bb59df7b3e5f0b25e25bcf8bc7941c5", + "x-ms-correlation-request-id": "c89cc27c-482b-41f6-a482-35ee2b631482", + "x-ms-ratelimit-remaining-subscription-reads": "11653", + "x-ms-request-id": "0bade13d-6c92-4ac8-8af7-a7e2d03c80c2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070154Z:c89cc27c-482b-41f6-a482-35ee2b631482" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "92eb67bd81e752b009763f3a529e8223", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f508dc50-e597-4cf9-9ae9-509d78b5e715", + "x-ms-client-request-id": "92eb67bd81e752b009763f3a529e8223", + "x-ms-correlation-request-id": "a639b4f0-a5d0-449a-99bd-d679ba62ea86", + "x-ms-ratelimit-remaining-subscription-reads": "11652", + "x-ms-request-id": "6651827d-aff4-4220-ac83-92f8dbb98848", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070156Z:a639b4f0-a5d0-449a-99bd-d679ba62ea86" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7f222fb8ac7211bfaa1e5c1804ad8038", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "fa870bc7-6d06-4f08-bbed-9ff9ca8ecd94", + "x-ms-client-request-id": "7f222fb8ac7211bfaa1e5c1804ad8038", + "x-ms-correlation-request-id": "67b71369-7bb6-41fd-8cc5-07ae25f8ff25", + "x-ms-ratelimit-remaining-subscription-reads": "11651", + "x-ms-request-id": "46937f8a-a4a2-4fee-94f4-b5336af86e33", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070157Z:67b71369-7bb6-41fd-8cc5-07ae25f8ff25" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "366b09a138ca7534ec62216f73789dbf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e6208efe-a736-4f31-8b7c-76f9b2ed79e3", + "x-ms-client-request-id": "366b09a138ca7534ec62216f73789dbf", + "x-ms-correlation-request-id": "2afa718c-de6e-4d43-b45d-efa7bed4352e", + "x-ms-ratelimit-remaining-subscription-reads": "11650", + "x-ms-request-id": "8c114bad-0831-4f1c-9e1f-55b9ade1e2e7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070158Z:2afa718c-de6e-4d43-b45d-efa7bed4352e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8d4099a3c1571152a8d9e8c925984e5c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "56255db7-be0e-4093-9013-d7f6b9a3e4d0", + "x-ms-client-request-id": "8d4099a3c1571152a8d9e8c925984e5c", + "x-ms-correlation-request-id": "f0ee25be-b583-433f-b0f5-44fe3aa09f39", + "x-ms-ratelimit-remaining-subscription-reads": "11649", + "x-ms-request-id": "85a70db9-0566-4a90-84dd-935baee34199", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070200Z:f0ee25be-b583-433f-b0f5-44fe3aa09f39" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "499806f54b337f58fbac92108b4f9d32", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3e5e0802-5989-4b45-aac3-01503840b25f", + "x-ms-client-request-id": "499806f54b337f58fbac92108b4f9d32", + "x-ms-correlation-request-id": "580271b1-871f-4cf4-999d-726260a60acf", + "x-ms-ratelimit-remaining-subscription-reads": "11648", + "x-ms-request-id": "23d9c2b8-d07c-46b9-b790-5c1e7f1ee207", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070201Z:580271b1-871f-4cf4-999d-726260a60acf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6b759c81f26ddfe1b6598df04f6b5054", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "84779e43-5a00-4a81-b03f-4da09e36eecf", + "x-ms-client-request-id": "6b759c81f26ddfe1b6598df04f6b5054", + "x-ms-correlation-request-id": "6a5a89c6-b8c3-4c67-ab18-c6d7f83cb745", + "x-ms-ratelimit-remaining-subscription-reads": "11647", + "x-ms-request-id": "35796af0-701f-4ccf-b4b8-81739fbc5316", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070202Z:6a5a89c6-b8c3-4c67-ab18-c6d7f83cb745" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6c79c51454df578b41c092aa2f428658", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "ce2025f8-4fbe-4560-ac64-f6fdcf380f79", + "x-ms-client-request-id": "6c79c51454df578b41c092aa2f428658", + "x-ms-correlation-request-id": "8fa02d0c-fef8-49a1-8041-89951215e8ca", + "x-ms-ratelimit-remaining-subscription-reads": "11646", + "x-ms-request-id": "dfd489b0-3582-4e3b-b1db-df2c8a466dd6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070204Z:8fa02d0c-fef8-49a1-8041-89951215e8ca" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8847b63ce32303ee25b992dabd67308f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "af5e4e97-72b8-4b45-9706-b2f8cc304163", + "x-ms-client-request-id": "8847b63ce32303ee25b992dabd67308f", + "x-ms-correlation-request-id": "d114def4-0312-4930-ae1e-6436759ca742", + "x-ms-ratelimit-remaining-subscription-reads": "11645", + "x-ms-request-id": "0d906384-92c5-4538-85ee-8a1904cd75a2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070205Z:d114def4-0312-4930-ae1e-6436759ca742" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c5fb3d5b31d62c52111d29ad6036b074", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "656ab0f2-2a02-4f9a-bf3a-1146b8873026", + "x-ms-client-request-id": "c5fb3d5b31d62c52111d29ad6036b074", + "x-ms-correlation-request-id": "47b1a12f-81d5-4b15-addc-1f09abaec4d2", + "x-ms-ratelimit-remaining-subscription-reads": "11644", + "x-ms-request-id": "19dcaf06-60f2-4467-9c4f-0ecc4c452570", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070206Z:47b1a12f-81d5-4b15-addc-1f09abaec4d2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "99b435d3c8233131d6764725c2b199d9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "3cb9f0af-1217-448e-9bc1-6dc32267711d", + "x-ms-client-request-id": "99b435d3c8233131d6764725c2b199d9", + "x-ms-correlation-request-id": "5fa654ee-ea76-4345-a894-95269cf9413a", + "x-ms-ratelimit-remaining-subscription-reads": "11643", + "x-ms-request-id": "5c4fdb8a-6d42-45db-98a5-2e891da77b35", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070207Z:5fa654ee-ea76-4345-a894-95269cf9413a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f14f028fc0460b82631b7605b941a2ef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "55842949-5252-41e3-a74a-14ba952178cd", + "x-ms-client-request-id": "f14f028fc0460b82631b7605b941a2ef", + "x-ms-correlation-request-id": "01f6554a-76d6-4fbb-ba40-f8a991758506", + "x-ms-ratelimit-remaining-subscription-reads": "11642", + "x-ms-request-id": "eadc20bb-a8b4-4687-b473-7e02fe06eeb4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070209Z:01f6554a-76d6-4fbb-ba40-f8a991758506" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "88061d0996b2936c0bcaef5fe92c6a5f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3bdcdee9-bf77-41d5-b6d5-748aad3a4d63", + "x-ms-client-request-id": "88061d0996b2936c0bcaef5fe92c6a5f", + "x-ms-correlation-request-id": "4a912b99-7ad8-48e2-81da-ab3cc939a572", + "x-ms-ratelimit-remaining-subscription-reads": "11641", + "x-ms-request-id": "f32a7511-8fac-47eb-9c58-92df4f17d2d5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070210Z:4a912b99-7ad8-48e2-81da-ab3cc939a572" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5e1d5083bee7122db2a93508512c7795", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "bfb9a1a8-1c78-4a50-bb08-51ff3543c185", + "x-ms-client-request-id": "5e1d5083bee7122db2a93508512c7795", + "x-ms-correlation-request-id": "ddb98899-99dc-4aca-a846-752d1d4063e7", + "x-ms-ratelimit-remaining-subscription-reads": "11640", + "x-ms-request-id": "f2556efe-49f8-4e5c-9946-8a38d52d9ec6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070211Z:ddb98899-99dc-4aca-a846-752d1d4063e7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a41c58d411aaf92796bbe67cd1232137", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "bb833bf7-19bb-4c5c-a33d-11dfdd87c3eb", + "x-ms-client-request-id": "a41c58d411aaf92796bbe67cd1232137", + "x-ms-correlation-request-id": "70674b69-3232-4178-9ac9-ae5b36955431", + "x-ms-ratelimit-remaining-subscription-reads": "11639", + "x-ms-request-id": "7e8b7803-12ad-4dbd-aae3-40da275c3455", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070212Z:70674b69-3232-4178-9ac9-ae5b36955431" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "698116b043234a07eff3d609616341df", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:02: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": "2ea92cec-e3b7-4b8e-8f41-583d6baa5e44", + "x-ms-client-request-id": "698116b043234a07eff3d609616341df", + "x-ms-correlation-request-id": "b75f0e0c-42d7-4690-a109-fb18ecd5106e", + "x-ms-ratelimit-remaining-subscription-reads": "11638", + "x-ms-request-id": "4c433377-cda6-42fa-a901-05470b5b8cd0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070214Z:b75f0e0c-42d7-4690-a109-fb18ecd5106e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/67ba06b4-cf41-46c2-8a14-bd9e51846ba3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "918a5a52c50f72b52824c82bd8b1418f", + "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, 08 Sep 2021 07:02: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": "aee67278-86aa-4149-a660-0c05e6ecc6b5", + "x-ms-client-request-id": "918a5a52c50f72b52824c82bd8b1418f", + "x-ms-correlation-request-id": "2dde9fd7-7052-4be1-9126-a4d35fc3e000", + "x-ms-ratelimit-remaining-subscription-reads": "11637", + "x-ms-request-id": "acaec740-d17b-454e-a981-b11abeaae9bb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070215Z:2dde9fd7-7052-4be1-9126-a4d35fc3e000" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-5395?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3b57fe880eaa917150d2b4b73b1d9732", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1535", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:02:15 GMT", + "ETag": "W/\u0022964178a8-a72c-4787-b8a3-db9b2bc8e010\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": "a423a1a1-95b2-423f-b822-40c5a07fd7be", + "x-ms-client-request-id": "3b57fe880eaa917150d2b4b73b1d9732", + "x-ms-correlation-request-id": "8c075b60-4cfa-4049-8c95-f6cec94f96e4", + "x-ms-ratelimit-remaining-subscription-reads": "11636", + "x-ms-request-id": "cdbe61d4-c77c-41ef-9b9f-b2f8096fdf68", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070215Z:8c075b60-4cfa-4049-8c95-f6cec94f96e4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022bastion-5395\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-5395\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022964178a8-a72c-4787-b8a3-db9b2bc8e010\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022dnsName\u0022: \u0022bst-1963c981-df99-4dac-b114-de05d21aa851.bastion.azure.com\u0022,\r\n", + " \u0022scaleUnits\u0022: 2,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022bastionIPConfig-1332\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-5395/bastionHostIpConfigurations/bastionIPConfig-1332\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022964178a8-a72c-4787-b8a3-db9b2bc8e010\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts/bastionHostIpConfigurations\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/bastionrg-5755/providers/Microsoft.Network/publicIPAddresses/ip-7939\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166/subnets/AzureBastionSubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022bastionShareableLinks\u0022: {}\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-5395?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "762a067a8f98eb27610f40ff7bdc723e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1535", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:02:15 GMT", + "ETag": "W/\u0022964178a8-a72c-4787-b8a3-db9b2bc8e010\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": "fd92e670-f0fe-4d78-99f5-edc9986f4c24", + "x-ms-client-request-id": "762a067a8f98eb27610f40ff7bdc723e", + "x-ms-correlation-request-id": "7f74e267-2b75-4056-8432-b8c56806997f", + "x-ms-ratelimit-remaining-subscription-reads": "11635", + "x-ms-request-id": "0dc5600b-ab39-4c42-b7b8-f17045f93244", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070216Z:7f74e267-2b75-4056-8432-b8c56806997f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022bastion-5395\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-5395\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022964178a8-a72c-4787-b8a3-db9b2bc8e010\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022dnsName\u0022: \u0022bst-1963c981-df99-4dac-b114-de05d21aa851.bastion.azure.com\u0022,\r\n", + " \u0022scaleUnits\u0022: 2,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022bastionIPConfig-1332\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-5395/bastionHostIpConfigurations/bastionIPConfig-1332\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022964178a8-a72c-4787-b8a3-db9b2bc8e010\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts/bastionHostIpConfigurations\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/bastionrg-5755/providers/Microsoft.Network/publicIPAddresses/ip-7939\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166/subnets/AzureBastionSubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022bastionShareableLinks\u0022: {}\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "628147b2060c4335e9f9413d10fe370b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1696", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:02:16 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": "61cf6dd3-bd4f-4335-971c-b9a6ffd84d4e", + "x-ms-client-request-id": "628147b2060c4335e9f9413d10fe370b", + "x-ms-correlation-request-id": "31630b9b-abf1-4a83-bc6c-031e117720c5", + "x-ms-ratelimit-remaining-subscription-reads": "11634", + "x-ms-request-id": "c619ccb7-c007-4ef7-82a2-d0070c0afc04", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070216Z:31630b9b-abf1-4a83-bc6c-031e117720c5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022value\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022bastion-5395\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-5395\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022964178a8-a72c-4787-b8a3-db9b2bc8e010\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022dnsName\u0022: \u0022bst-1963c981-df99-4dac-b114-de05d21aa851.bastion.azure.com\u0022,\r\n", + " \u0022scaleUnits\u0022: 2,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022bastionIPConfig-1332\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-5395/bastionHostIpConfigurations/bastionIPConfig-1332\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022964178a8-a72c-4787-b8a3-db9b2bc8e010\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts/bastionHostIpConfigurations\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/bastionrg-5755/providers/Microsoft.Network/publicIPAddresses/ip-7939\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166/subnets/AzureBastionSubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022bastionShareableLinks\u0022: {}\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022\r\n", + " }\r\n", + " }\r\n", + " ]\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-5395?api-version=2021-02-01", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d2b0968cca87f8f6d76cd99ace711573", + "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/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 08 Sep 2021 07:02:17 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operationResults/c8509fa0-5834-4b41-aecd-273ee1b78620?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": "c2adc61e-cc83-41e1-925b-1b79d904b64a", + "x-ms-client-request-id": "d2b0968cca87f8f6d76cd99ace711573", + "x-ms-correlation-request-id": "0e11cf01-f173-46f1-b6d7-f8926e4de59f", + "x-ms-ratelimit-remaining-subscription-deletes": "14998", + "x-ms-request-id": "c8509fa0-5834-4b41-aecd-273ee1b78620", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070217Z:0e11cf01-f173-46f1-b6d7-f8926e4de59f" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e47235d8a02ce7b750888ba02d9a7577", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:02:17 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": "9e055e2c-b754-45d2-96c5-08d6dedbe1d2", + "x-ms-client-request-id": "e47235d8a02ce7b750888ba02d9a7577", + "x-ms-correlation-request-id": "6695c714-fb0d-41de-9a78-49cbe7ea767e", + "x-ms-ratelimit-remaining-subscription-reads": "11633", + "x-ms-request-id": "4dee4594-fae3-46ec-b52c-424a720ea300", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070217Z:6695c714-fb0d-41de-9a78-49cbe7ea767e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9addcee343f9586e6f3c01a03d58abed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:02:18 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": "968c20b5-7271-4ed6-8415-168121c57e1f", + "x-ms-client-request-id": "9addcee343f9586e6f3c01a03d58abed", + "x-ms-correlation-request-id": "5cbc6996-bffd-44cd-9279-5ad158153d8c", + "x-ms-ratelimit-remaining-subscription-reads": "11632", + "x-ms-request-id": "144150ab-8aa5-4694-928e-2544db1a66cf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070218Z:5cbc6996-bffd-44cd-9279-5ad158153d8c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "99c2759131fec047bf1da314a8864736", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:02: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": "f25d513f-b572-412d-a7f0-65c04abbf927", + "x-ms-client-request-id": "99c2759131fec047bf1da314a8864736", + "x-ms-correlation-request-id": "8581d0f3-cb3b-444f-aea2-1fe62ceb6920", + "x-ms-ratelimit-remaining-subscription-reads": "11631", + "x-ms-request-id": "f7ab971c-f46a-4e0c-aa13-5256368f28fb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070219Z:8581d0f3-cb3b-444f-aea2-1fe62ceb6920" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7fba1571400c946ac61a75ef9f16a9f8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:02:21 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": "c0d6a4bb-c53a-4e1c-a340-bda6903d6c1f", + "x-ms-client-request-id": "7fba1571400c946ac61a75ef9f16a9f8", + "x-ms-correlation-request-id": "30df9913-dd6d-4960-87ff-4bd2612e2d45", + "x-ms-ratelimit-remaining-subscription-reads": "11630", + "x-ms-request-id": "3dfb2b85-0099-4f9d-92ea-bf080ce10029", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070221Z:30df9913-dd6d-4960-87ff-4bd2612e2d45" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b70e9edcdcd8b279861ddadba059afe9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:02: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": "7b451a98-a30e-406b-9021-3473ffd9e1d5", + "x-ms-client-request-id": "b70e9edcdcd8b279861ddadba059afe9", + "x-ms-correlation-request-id": "26eff44d-178d-4f0e-aa45-786903e19ac6", + "x-ms-ratelimit-remaining-subscription-reads": "11629", + "x-ms-request-id": "2f461c25-de47-4127-b351-d1e8feccf99a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070222Z:26eff44d-178d-4f0e-aa45-786903e19ac6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "272fcaf52b9d51e10b2ed2e3bb5720a9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:02:23 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": "b52959fd-691a-4e10-9979-451deebe86b6", + "x-ms-client-request-id": "272fcaf52b9d51e10b2ed2e3bb5720a9", + "x-ms-correlation-request-id": "93b72288-0e6f-4fe7-8d99-2196480002ef", + "x-ms-ratelimit-remaining-subscription-reads": "11628", + "x-ms-request-id": "84e017ce-aed7-423c-8254-72f5e6055db0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070223Z:93b72288-0e6f-4fe7-8d99-2196480002ef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0a37ab748f77955e9c07f8ef658ff46d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:02: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": "486acecf-63c0-4bba-ae86-a0d691d85542", + "x-ms-client-request-id": "0a37ab748f77955e9c07f8ef658ff46d", + "x-ms-correlation-request-id": "9c038a47-e884-42bc-8fb9-ecbb818a4978", + "x-ms-ratelimit-remaining-subscription-reads": "11627", + "x-ms-request-id": "120eb6b4-3078-45b1-8e76-f67a3eb9f2c1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070225Z:9c038a47-e884-42bc-8fb9-ecbb818a4978" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d4f98b6b81e6b15abcbdaba90995f62e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:02:26 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": "70446fda-049d-4ba5-b580-8402edc31f6a", + "x-ms-client-request-id": "d4f98b6b81e6b15abcbdaba90995f62e", + "x-ms-correlation-request-id": "7b617cba-b8dd-4fa3-9894-0c74f18ad640", + "x-ms-ratelimit-remaining-subscription-reads": "11626", + "x-ms-request-id": "b8ffbab4-eaff-413d-8a2c-553161e895de", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070226Z:7b617cba-b8dd-4fa3-9894-0c74f18ad640" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f46631fca42165726c9a8b9633f2ec7c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:02: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": "7191bb8e-8818-4cc7-a08e-a7ce857d513c", + "x-ms-client-request-id": "f46631fca42165726c9a8b9633f2ec7c", + "x-ms-correlation-request-id": "e4a0e362-73c0-4154-9225-e0073d19353c", + "x-ms-ratelimit-remaining-subscription-reads": "11625", + "x-ms-request-id": "e5c65c0a-d299-47e0-acb5-c5979eb4a312", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070227Z:e4a0e362-73c0-4154-9225-e0073d19353c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "307865394c5ef2c251864dbae4b48b06", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:02: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": "fefce6a8-1f0b-4b88-860c-63272b18317f", + "x-ms-client-request-id": "307865394c5ef2c251864dbae4b48b06", + "x-ms-correlation-request-id": "00e7c3d1-5c69-41d0-be92-d6228e45fd1d", + "x-ms-ratelimit-remaining-subscription-reads": "11624", + "x-ms-request-id": "5e4a4ccd-5ca3-4875-9f27-637c6b0713e5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070228Z:00e7c3d1-5c69-41d0-be92-d6228e45fd1d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "33f2c910ff28c74b1894674cf6c47eca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b23ab467-6857-43fd-bb0f-94d3cf8a4359", + "x-ms-client-request-id": "33f2c910ff28c74b1894674cf6c47eca", + "x-ms-correlation-request-id": "b4c85489-5297-459a-9abb-b82682c8a8d3", + "x-ms-ratelimit-remaining-subscription-reads": "11623", + "x-ms-request-id": "1914de97-7ca1-4340-bac5-d50fea8d6bfa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070230Z:b4c85489-5297-459a-9abb-b82682c8a8d3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a4702fd0c61dafd06f73a39b56b881b8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "2b3917d0-45db-415c-aaa3-ee9a39986ca9", + "x-ms-client-request-id": "a4702fd0c61dafd06f73a39b56b881b8", + "x-ms-correlation-request-id": "846f059a-a571-438c-8554-527deec3dbc4", + "x-ms-ratelimit-remaining-subscription-reads": "11622", + "x-ms-request-id": "7b53a38c-5300-4c42-9562-26ddee8af932", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070231Z:846f059a-a571-438c-8554-527deec3dbc4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6985840eb8ff395319b118c9e476fc8d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d580b55c-bac1-41b4-8345-d6157b03a740", + "x-ms-client-request-id": "6985840eb8ff395319b118c9e476fc8d", + "x-ms-correlation-request-id": "4a396f5c-6c45-42af-8f0c-a0ebf17ad7c0", + "x-ms-ratelimit-remaining-subscription-reads": "11621", + "x-ms-request-id": "9dfc8d2e-b228-4235-8cff-993ac34a049c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070232Z:4a396f5c-6c45-42af-8f0c-a0ebf17ad7c0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b4e98308e7434ae9f843c4b45caf7060", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c2564017-3679-44ce-8ca3-ca3f7fa5a7a2", + "x-ms-client-request-id": "b4e98308e7434ae9f843c4b45caf7060", + "x-ms-correlation-request-id": "39707ee3-66d7-4592-8582-3f795be8b5d9", + "x-ms-ratelimit-remaining-subscription-reads": "11620", + "x-ms-request-id": "42650eae-1902-4932-8a44-d4940e8f91e3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070234Z:39707ee3-66d7-4592-8582-3f795be8b5d9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "713daf13143e18cbdb368a6bae07caf9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4dfb5d8a-e299-45e2-abf5-c689d08683cd", + "x-ms-client-request-id": "713daf13143e18cbdb368a6bae07caf9", + "x-ms-correlation-request-id": "73dc411b-5be4-4451-a6e6-6c03f403405b", + "x-ms-ratelimit-remaining-subscription-reads": "11619", + "x-ms-request-id": "b55f4fc4-acc6-458f-b2d7-cfb383f6f70a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070235Z:73dc411b-5be4-4451-a6e6-6c03f403405b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d3921677ccce27749a3b70bcf49fdd69", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "3f1d4415-19a3-4fb8-b60f-44405b97176e", + "x-ms-client-request-id": "d3921677ccce27749a3b70bcf49fdd69", + "x-ms-correlation-request-id": "5bed2b56-7d97-4137-8bd8-ce9aa210f47b", + "x-ms-ratelimit-remaining-subscription-reads": "11618", + "x-ms-request-id": "cf076470-9568-4416-bc72-a1a42a784002", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070236Z:5bed2b56-7d97-4137-8bd8-ce9aa210f47b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "35b6b7408b38f34eb8d1d90d5c7e9cf1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b628dc4c-806e-4abd-8525-51953780fcd0", + "x-ms-client-request-id": "35b6b7408b38f34eb8d1d90d5c7e9cf1", + "x-ms-correlation-request-id": "d6f2554c-9a24-442f-8d76-475b27cf7000", + "x-ms-ratelimit-remaining-subscription-reads": "11617", + "x-ms-request-id": "4dfe389b-5fa1-40db-bb23-db911d6f1833", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070237Z:d6f2554c-9a24-442f-8d76-475b27cf7000" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "453dcb789d1c46923b15d603a40e243c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4b783d8a-681b-4ed3-b8bd-827a7f6264c3", + "x-ms-client-request-id": "453dcb789d1c46923b15d603a40e243c", + "x-ms-correlation-request-id": "72cdb69f-c5f3-4420-b1be-26f080b4f997", + "x-ms-ratelimit-remaining-subscription-reads": "11616", + "x-ms-request-id": "5d946790-ed2d-4aa2-a276-e876064bb9da", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070239Z:72cdb69f-c5f3-4420-b1be-26f080b4f997" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f62a20589550ecc0c79f1afdf266cb1c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9f0df72f-d3aa-4bc4-896c-d04ce327248f", + "x-ms-client-request-id": "f62a20589550ecc0c79f1afdf266cb1c", + "x-ms-correlation-request-id": "b3733c7d-fd57-43bc-a67f-43bcc71fe423", + "x-ms-ratelimit-remaining-subscription-reads": "11615", + "x-ms-request-id": "6fb981f9-ebec-4d1b-9290-0113ef45deba", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070240Z:b3733c7d-fd57-43bc-a67f-43bcc71fe423" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "29447e9e9762a34d256ff922b44b4fa9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:02: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": "2a43e571-030b-40e0-8151-e5490b2afa8c", + "x-ms-client-request-id": "29447e9e9762a34d256ff922b44b4fa9", + "x-ms-correlation-request-id": "9a0ce23f-531d-455b-a31b-4dfb2fdc36a9", + "x-ms-ratelimit-remaining-subscription-reads": "11614", + "x-ms-request-id": "9c1e7eab-5422-42a1-84a0-226cbc1f293a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070241Z:9a0ce23f-531d-455b-a31b-4dfb2fdc36a9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3bb49daca553e2a10a517e7d829453d4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3ccec280-6c76-42c5-9bc7-5deb542ff56e", + "x-ms-client-request-id": "3bb49daca553e2a10a517e7d829453d4", + "x-ms-correlation-request-id": "4888b764-efb7-45b0-aa2c-b5afa1a6a466", + "x-ms-ratelimit-remaining-subscription-reads": "11613", + "x-ms-request-id": "6b5a87ca-80c7-477e-b56a-8a20991c0046", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070242Z:4888b764-efb7-45b0-aa2c-b5afa1a6a466" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2564b94afacac1d9d387d1e09b9e377c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "cdb08b3b-42b3-4f51-88d4-f086e9ce76df", + "x-ms-client-request-id": "2564b94afacac1d9d387d1e09b9e377c", + "x-ms-correlation-request-id": "c40b7ceb-ee99-460a-b64f-c3f91d3b19f0", + "x-ms-ratelimit-remaining-subscription-reads": "11612", + "x-ms-request-id": "58041c9c-4b70-4a12-8493-b04bf469939e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070244Z:c40b7ceb-ee99-460a-b64f-c3f91d3b19f0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5550714f8fb2f8c9dd611e1119cf2190", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "63db88e5-1311-4b2b-a074-8832b4548eeb", + "x-ms-client-request-id": "5550714f8fb2f8c9dd611e1119cf2190", + "x-ms-correlation-request-id": "317d6941-96cd-4338-b2a3-e65e13422f31", + "x-ms-ratelimit-remaining-subscription-reads": "11611", + "x-ms-request-id": "b2a3ce50-547d-4d04-8897-2a987bce732c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070245Z:317d6941-96cd-4338-b2a3-e65e13422f31" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fad8251c2ae6b2dfc3f367cbd4c1466c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5237a4bc-6dca-487b-ae32-fb0bae57b673", + "x-ms-client-request-id": "fad8251c2ae6b2dfc3f367cbd4c1466c", + "x-ms-correlation-request-id": "5ba2f0b2-4fde-43d4-a0a4-db28b9131fea", + "x-ms-ratelimit-remaining-subscription-reads": "11610", + "x-ms-request-id": "30565019-2cf6-4afe-9d34-ba123ef38398", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070246Z:5ba2f0b2-4fde-43d4-a0a4-db28b9131fea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "112e0119fe43ba22f06b4868dbc8a704", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "fb5526a2-3d1e-4dc1-b6fa-f47ff57ab071", + "x-ms-client-request-id": "112e0119fe43ba22f06b4868dbc8a704", + "x-ms-correlation-request-id": "bc3e1b87-2749-48e8-baf1-d0b1778895ad", + "x-ms-ratelimit-remaining-subscription-reads": "11609", + "x-ms-request-id": "f451b41e-d62f-4ef0-9c04-9fda10b9ad79", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070248Z:bc3e1b87-2749-48e8-baf1-d0b1778895ad" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "76c441663cc52596919e92be27fd241b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ead929a2-431b-4cd7-a68d-1bdbc6b5dc69", + "x-ms-client-request-id": "76c441663cc52596919e92be27fd241b", + "x-ms-correlation-request-id": "0c6c433c-3124-4c86-ba9a-6da6ad18a498", + "x-ms-ratelimit-remaining-subscription-reads": "11608", + "x-ms-request-id": "eccdc22b-3b19-4f7d-9c2c-a12c178459c1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070249Z:0c6c433c-3124-4c86-ba9a-6da6ad18a498" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "18f7b21b0fa01e4c031d0a7ae177d6fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "fa3f5d6e-50aa-4948-84d8-ff6ceb9931b9", + "x-ms-client-request-id": "18f7b21b0fa01e4c031d0a7ae177d6fa", + "x-ms-correlation-request-id": "a08ff169-1efb-4b16-a85c-7bbd71a94b38", + "x-ms-ratelimit-remaining-subscription-reads": "11607", + "x-ms-request-id": "3fe32049-f7a0-432e-8e24-1c49b3aba447", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070250Z:a08ff169-1efb-4b16-a85c-7bbd71a94b38" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9265634cd0fcdda66b097fa56b6392f2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "047b8cfc-4e21-4f34-8600-0ae99a8d6253", + "x-ms-client-request-id": "9265634cd0fcdda66b097fa56b6392f2", + "x-ms-correlation-request-id": "4d9c5008-93aa-41f5-b338-1f1cde360eb5", + "x-ms-ratelimit-remaining-subscription-reads": "11606", + "x-ms-request-id": "a645a281-c430-46bd-a4c2-383acee9a5cc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070251Z:4d9c5008-93aa-41f5-b338-1f1cde360eb5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "294d2c468fd15663f4a573a8311b431a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b80919c3-8e04-4bd5-b1db-d584e5d89866", + "x-ms-client-request-id": "294d2c468fd15663f4a573a8311b431a", + "x-ms-correlation-request-id": "bf7e1dfd-aabf-4906-aba3-609a43082a13", + "x-ms-ratelimit-remaining-subscription-reads": "11605", + "x-ms-request-id": "ca8ebe07-2e60-457b-8179-535ee52b6885", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070253Z:bf7e1dfd-aabf-4906-aba3-609a43082a13" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c47297c891984a1f0c1aac978fa7b29f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f5af9d01-13e7-43fd-8a96-7f8737b17149", + "x-ms-client-request-id": "c47297c891984a1f0c1aac978fa7b29f", + "x-ms-correlation-request-id": "e3a4969f-01f1-4906-a162-5b9941490d22", + "x-ms-ratelimit-remaining-subscription-reads": "11604", + "x-ms-request-id": "0a4c7d41-a2a2-4a2d-8394-3f23d4d13a7d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070254Z:e3a4969f-01f1-4906-a162-5b9941490d22" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b533188aad2abc29ff0e9e575dfeab4f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d5fe351c-2fa8-4bac-9275-f4c98e9a400e", + "x-ms-client-request-id": "b533188aad2abc29ff0e9e575dfeab4f", + "x-ms-correlation-request-id": "b05f305b-bf9f-4be8-94ed-0fc42378c79b", + "x-ms-ratelimit-remaining-subscription-reads": "11603", + "x-ms-request-id": "338c4222-153d-4331-8566-e08aec613a33", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070255Z:b05f305b-bf9f-4be8-94ed-0fc42378c79b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d3dd65c6cef1b55a0d021cb7e2ccc74d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "16778d07-90c1-4d75-a248-4eb3b49f2a4b", + "x-ms-client-request-id": "d3dd65c6cef1b55a0d021cb7e2ccc74d", + "x-ms-correlation-request-id": "74264b46-5169-4cc6-b18c-34b421271cfa", + "x-ms-ratelimit-remaining-subscription-reads": "11602", + "x-ms-request-id": "a31792bd-208d-462c-bc36-24a4d067e1ec", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070256Z:74264b46-5169-4cc6-b18c-34b421271cfa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "191dd3f38ee71aef6eb5c489f3c7ed0d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "504eacc3-6c12-468b-a3a9-eae123d860f1", + "x-ms-client-request-id": "191dd3f38ee71aef6eb5c489f3c7ed0d", + "x-ms-correlation-request-id": "cb76d953-cf9e-4ad8-a981-0937389c68cb", + "x-ms-ratelimit-remaining-subscription-reads": "11601", + "x-ms-request-id": "fe7716ec-3591-4788-b794-5c1de2ed11e7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070258Z:cb76d953-cf9e-4ad8-a981-0937389c68cb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "29d15c6edecabcaebe7ea7279072da33", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "288c74f8-7e43-481d-9b9a-98e80836dfcc", + "x-ms-client-request-id": "29d15c6edecabcaebe7ea7279072da33", + "x-ms-correlation-request-id": "00432a4c-98c9-4891-ad93-bd4174861df5", + "x-ms-ratelimit-remaining-subscription-reads": "11600", + "x-ms-request-id": "3aa5e9d0-c4b8-4dc6-ba34-ef2e3e0b64e1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070259Z:00432a4c-98c9-4891-ad93-bd4174861df5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8963514792e1376776c2653b0ad0c145", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:03: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": "7861fef1-51f9-4cbd-8e2c-ea50e6f9ee1d", + "x-ms-client-request-id": "8963514792e1376776c2653b0ad0c145", + "x-ms-correlation-request-id": "828c74d4-339b-4128-a4d0-81042656b841", + "x-ms-ratelimit-remaining-subscription-reads": "11599", + "x-ms-request-id": "e734b99a-011f-4f38-9349-74c77f0453e4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070300Z:828c74d4-339b-4128-a4d0-81042656b841" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "85480e159dfb148225605b69e6c78afc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "48410e04-dc9d-4cc3-8e9f-ce03e652ae86", + "x-ms-client-request-id": "85480e159dfb148225605b69e6c78afc", + "x-ms-correlation-request-id": "7d1af75e-5cc8-491b-8bc2-c35015b0c0d2", + "x-ms-ratelimit-remaining-subscription-reads": "11598", + "x-ms-request-id": "d4c155a0-0e10-4a0c-8f49-4118237a161c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070302Z:7d1af75e-5cc8-491b-8bc2-c35015b0c0d2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a14290db6364dc2cf599b3087972b2ed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d37cdc0e-68f9-4c25-8ad0-ec71e03454dd", + "x-ms-client-request-id": "a14290db6364dc2cf599b3087972b2ed", + "x-ms-correlation-request-id": "7e0110a7-816c-4bc1-9f57-e9fb1fdafd13", + "x-ms-ratelimit-remaining-subscription-reads": "11597", + "x-ms-request-id": "2e6c9664-cdc2-4b33-b564-3f9d966b98a9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070303Z:7e0110a7-816c-4bc1-9f57-e9fb1fdafd13" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "811262bc5429aa38ce4f638036fe51ae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1266fea5-6fe4-42ae-803e-0afd92f94f6f", + "x-ms-client-request-id": "811262bc5429aa38ce4f638036fe51ae", + "x-ms-correlation-request-id": "3218d993-3a97-4ff1-bd0b-26e5b9ec7e07", + "x-ms-ratelimit-remaining-subscription-reads": "11596", + "x-ms-request-id": "4f43a2a6-3e59-4302-945b-20839af8c609", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070304Z:3218d993-3a97-4ff1-bd0b-26e5b9ec7e07" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "795f69371f8eb1e1e16b9062e97a9bb2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:03: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": "81015dd1-69e6-4658-b259-3f819a069a8e", + "x-ms-client-request-id": "795f69371f8eb1e1e16b9062e97a9bb2", + "x-ms-correlation-request-id": "90a92403-3bdd-4c06-82f9-54016aa89f15", + "x-ms-ratelimit-remaining-subscription-reads": "11595", + "x-ms-request-id": "ce02a4b6-6018-4099-b6f4-449c26accb8e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070305Z:90a92403-3bdd-4c06-82f9-54016aa89f15" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "84ac6dae08b486d25897d31500aca5f6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3c3a7d7e-86b9-415c-ace7-fa431073485e", + "x-ms-client-request-id": "84ac6dae08b486d25897d31500aca5f6", + "x-ms-correlation-request-id": "32994d9c-740f-43d4-ab53-23027f738fc9", + "x-ms-ratelimit-remaining-subscription-reads": "11594", + "x-ms-request-id": "41044cb6-b441-4ce2-9c6b-b4397e00f1d2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070307Z:32994d9c-740f-43d4-ab53-23027f738fc9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0fd0054739129c5f80619fbdc3d6c053", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "945bee63-d65e-4690-a762-b1666e13dc54", + "x-ms-client-request-id": "0fd0054739129c5f80619fbdc3d6c053", + "x-ms-correlation-request-id": "bdc37de2-9bd6-4f4b-ab08-a787932cfd78", + "x-ms-ratelimit-remaining-subscription-reads": "11593", + "x-ms-request-id": "2b1ab070-ca6c-4036-9be4-5efca23ccc85", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070308Z:bdc37de2-9bd6-4f4b-ab08-a787932cfd78" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c9d1b0b3cd512ef997d920f64cccb135", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9931fb6a-e43c-4ed6-ada9-ee7fd516940b", + "x-ms-client-request-id": "c9d1b0b3cd512ef997d920f64cccb135", + "x-ms-correlation-request-id": "b5eedb4d-8cd5-41e0-af79-d6b9b04bb22f", + "x-ms-ratelimit-remaining-subscription-reads": "11592", + "x-ms-request-id": "5ab29dd4-912f-4e6b-ac2a-8e28812923c6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070309Z:b5eedb4d-8cd5-41e0-af79-d6b9b04bb22f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e31a9ac68baa75a00d0f03536914c282", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:03: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": "58765452-151c-469c-89be-23d7d46bce4b", + "x-ms-client-request-id": "e31a9ac68baa75a00d0f03536914c282", + "x-ms-correlation-request-id": "ec36a2bf-1b47-4032-a6f6-096bc367c3c9", + "x-ms-ratelimit-remaining-subscription-reads": "11591", + "x-ms-request-id": "af13cba6-67af-47c8-8e35-5c1eb4de1195", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070310Z:ec36a2bf-1b47-4032-a6f6-096bc367c3c9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4f617fd6dcda7aa40ca17839186950b4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "426f5e6f-4c79-4095-bc13-656ff66ed93a", + "x-ms-client-request-id": "4f617fd6dcda7aa40ca17839186950b4", + "x-ms-correlation-request-id": "2ee743e6-87ae-4d9f-9d2e-683695d9f2f1", + "x-ms-ratelimit-remaining-subscription-reads": "11590", + "x-ms-request-id": "42eaab06-d97d-48ed-b9cf-07a2aca87534", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070312Z:2ee743e6-87ae-4d9f-9d2e-683695d9f2f1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "29f76ab0dcbb27a9105cbb42caa6c582", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "acbb2fc5-58f3-4f8e-a1a9-ce4c3f46d936", + "x-ms-client-request-id": "29f76ab0dcbb27a9105cbb42caa6c582", + "x-ms-correlation-request-id": "ee89edee-e348-441a-9139-db02b0b36be4", + "x-ms-ratelimit-remaining-subscription-reads": "11589", + "x-ms-request-id": "60645abc-72b2-4b8d-b630-2dc06685e217", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070313Z:ee89edee-e348-441a-9139-db02b0b36be4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cd1f9d16616ae95af5a0d70813665ca4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ed6da348-9e59-4029-8a8d-72f78872e15c", + "x-ms-client-request-id": "cd1f9d16616ae95af5a0d70813665ca4", + "x-ms-correlation-request-id": "3dee6955-8285-438f-84b5-19664fca7931", + "x-ms-ratelimit-remaining-subscription-reads": "11588", + "x-ms-request-id": "8ca3a141-778f-4ce1-b882-2dacd337206d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070314Z:3dee6955-8285-438f-84b5-19664fca7931" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fea24ebf991cf9c7d5393e7e2062af66", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "05d1645b-a437-4d04-a38c-c72f7d02958d", + "x-ms-client-request-id": "fea24ebf991cf9c7d5393e7e2062af66", + "x-ms-correlation-request-id": "a1b9b74b-63a8-4ef0-aab1-ae1c048b4f2a", + "x-ms-ratelimit-remaining-subscription-reads": "11587", + "x-ms-request-id": "8bfc5ecb-87bb-4147-a449-bd8104d50e1c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070316Z:a1b9b74b-63a8-4ef0-aab1-ae1c048b4f2a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7b23f5dc82494e49100e341b05a114aa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6f8e2075-9279-4c5b-a313-3b979c533776", + "x-ms-client-request-id": "7b23f5dc82494e49100e341b05a114aa", + "x-ms-correlation-request-id": "32f60a28-2bcf-42bc-9dd8-f1a817f1977e", + "x-ms-ratelimit-remaining-subscription-reads": "11586", + "x-ms-request-id": "b7131f95-917a-4b0e-ae0d-30a1cb3d7d8a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070317Z:32f60a28-2bcf-42bc-9dd8-f1a817f1977e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7b821700c7037d66d625f83123dbc893", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c260f9d2-8025-47e9-b7df-5dbc0269719d", + "x-ms-client-request-id": "7b821700c7037d66d625f83123dbc893", + "x-ms-correlation-request-id": "344ed2e6-8122-4d3a-8bec-a50d6e94e4d1", + "x-ms-ratelimit-remaining-subscription-reads": "11585", + "x-ms-request-id": "64cac756-9176-4155-9b3e-0ea25c2ae9c3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070318Z:344ed2e6-8122-4d3a-8bec-a50d6e94e4d1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1d2c71f0e0433d5a0453ed0e64abf434", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:03: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": "95651c7a-2811-4d82-b1bd-1abcfab19589", + "x-ms-client-request-id": "1d2c71f0e0433d5a0453ed0e64abf434", + "x-ms-correlation-request-id": "f84f53a4-ad34-40ec-8817-5fba46bc1d19", + "x-ms-ratelimit-remaining-subscription-reads": "11584", + "x-ms-request-id": "e148d423-fb9b-42a6-8d7b-cf3bb37d7dd8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070319Z:f84f53a4-ad34-40ec-8817-5fba46bc1d19" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "097d942534df14628fa6a42489182b34", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "db6a845c-0236-4358-b1e7-02cf96488fe1", + "x-ms-client-request-id": "097d942534df14628fa6a42489182b34", + "x-ms-correlation-request-id": "68ae4c2d-628f-4574-8631-0c6ab5d02bda", + "x-ms-ratelimit-remaining-subscription-reads": "11583", + "x-ms-request-id": "764af241-ba31-466d-926b-7276419992ae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070321Z:68ae4c2d-628f-4574-8631-0c6ab5d02bda" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "932aa145f6741f67bc4577afd957182a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f8d82a84-2e56-4774-9789-a5a5f67ce638", + "x-ms-client-request-id": "932aa145f6741f67bc4577afd957182a", + "x-ms-correlation-request-id": "317ecad1-e975-4233-a253-e54478e18c97", + "x-ms-ratelimit-remaining-subscription-reads": "11582", + "x-ms-request-id": "f0d8b501-3f70-43a3-bdbd-d1cbb345083a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070322Z:317ecad1-e975-4233-a253-e54478e18c97" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8f0bc430be5ebcb30e178e9c3b36b3eb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "bb25d329-8418-42de-b838-db58c9868ae2", + "x-ms-client-request-id": "8f0bc430be5ebcb30e178e9c3b36b3eb", + "x-ms-correlation-request-id": "d72a09ca-68d8-4a8a-81b3-20f85be561d6", + "x-ms-ratelimit-remaining-subscription-reads": "11581", + "x-ms-request-id": "5cd2e16c-d6d9-4e32-a325-dda9a04bca37", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070323Z:d72a09ca-68d8-4a8a-81b3-20f85be561d6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c3c8b92760812ebf2d5e4d9abcb23b37", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "1aee6614-69ce-4634-99bd-f57e9e6bea5b", + "x-ms-client-request-id": "c3c8b92760812ebf2d5e4d9abcb23b37", + "x-ms-correlation-request-id": "d9ee995c-2e7f-4209-ae6e-4e8d4be71473", + "x-ms-ratelimit-remaining-subscription-reads": "11580", + "x-ms-request-id": "82d8d1df-8d62-4375-acd9-b6c5f501e8db", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070325Z:d9ee995c-2e7f-4209-ae6e-4e8d4be71473" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c5f37a8e9c0d86d6ed6e845c68cae385", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "70c1830b-b074-4b0a-91b2-2e31467eb0da", + "x-ms-client-request-id": "c5f37a8e9c0d86d6ed6e845c68cae385", + "x-ms-correlation-request-id": "a85029ba-37b3-4421-a684-3a4759bab60b", + "x-ms-ratelimit-remaining-subscription-reads": "11579", + "x-ms-request-id": "8692e9d4-f192-4ce4-9a04-af927fec653f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070326Z:a85029ba-37b3-4421-a684-3a4759bab60b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1f878b91548ed0a904dc62007119ff5c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "41134447-5949-43f0-93eb-a715ec9870e5", + "x-ms-client-request-id": "1f878b91548ed0a904dc62007119ff5c", + "x-ms-correlation-request-id": "524aabd0-71ad-48d6-b01b-bea01c0c0a1d", + "x-ms-ratelimit-remaining-subscription-reads": "11578", + "x-ms-request-id": "6dfe2882-3df8-409b-83b7-555a5ea9c072", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070327Z:524aabd0-71ad-48d6-b01b-bea01c0c0a1d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c10e56dbee438bdee242d512dc62c662", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "22708b6a-0b95-4cbb-a8cc-0e956e889560", + "x-ms-client-request-id": "c10e56dbee438bdee242d512dc62c662", + "x-ms-correlation-request-id": "56c93f41-3d9a-4088-873a-3c9b5b8e4e0b", + "x-ms-ratelimit-remaining-subscription-reads": "11577", + "x-ms-request-id": "24482bd1-f3c1-4936-86a9-12aa878ce230", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070328Z:56c93f41-3d9a-4088-873a-3c9b5b8e4e0b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3108c77a1b2a39a8d023c1303ad615d4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "f495c48a-ce5c-49e4-8cc2-1788ea88d79d", + "x-ms-client-request-id": "3108c77a1b2a39a8d023c1303ad615d4", + "x-ms-correlation-request-id": "46b333fc-f757-4569-b505-22552a91cc23", + "x-ms-ratelimit-remaining-subscription-reads": "11576", + "x-ms-request-id": "1db411a9-a939-4029-a310-13c83e3d9871", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070330Z:46b333fc-f757-4569-b505-22552a91cc23" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1181286f22bca342adfc3c4c7f96f4a1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "702509c8-89b0-4d73-a2e0-5bbdb7a9a5c5", + "x-ms-client-request-id": "1181286f22bca342adfc3c4c7f96f4a1", + "x-ms-correlation-request-id": "7c2f2567-6d11-4efe-93ca-1853e77459fc", + "x-ms-ratelimit-remaining-subscription-reads": "11575", + "x-ms-request-id": "fb917042-9167-467a-957d-6601d2997525", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070331Z:7c2f2567-6d11-4efe-93ca-1853e77459fc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a985ff16cd10bf31add5f01f2cad510c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3d7b4386-5c7c-48a8-81d8-96306624ac3a", + "x-ms-client-request-id": "a985ff16cd10bf31add5f01f2cad510c", + "x-ms-correlation-request-id": "0f51d77f-126d-4ce0-954e-2c0254969894", + "x-ms-ratelimit-remaining-subscription-reads": "11574", + "x-ms-request-id": "057a895a-8c69-4a34-80aa-9d62b20715fa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070332Z:0f51d77f-126d-4ce0-954e-2c0254969894" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b3a2012db4e157a68464842ede5cba39", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "bca07a0a-8b7e-4381-b1b6-7ea5c91d81f3", + "x-ms-client-request-id": "b3a2012db4e157a68464842ede5cba39", + "x-ms-correlation-request-id": "0fe6596c-3958-4009-b433-b63198a7dfee", + "x-ms-ratelimit-remaining-subscription-reads": "11573", + "x-ms-request-id": "9a8a89f9-eccd-4639-a7de-330d81e4337f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070334Z:0fe6596c-3958-4009-b433-b63198a7dfee" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3a1a1f2f6b50a1c3f7c163e7312276ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b722412f-0077-4d15-8e07-f2961d345a12", + "x-ms-client-request-id": "3a1a1f2f6b50a1c3f7c163e7312276ff", + "x-ms-correlation-request-id": "35c7080f-8c26-4198-a412-c399b163cfc7", + "x-ms-ratelimit-remaining-subscription-reads": "11572", + "x-ms-request-id": "9b42dfda-ff5d-40e0-ba17-eabf675092ab", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070335Z:35c7080f-8c26-4198-a412-c399b163cfc7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7e1f30ab40f461c0592d24ac4903e151", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3837ea3b-caf5-45f6-b327-f5ad978e8bf3", + "x-ms-client-request-id": "7e1f30ab40f461c0592d24ac4903e151", + "x-ms-correlation-request-id": "ae8fefbb-f77d-4213-825c-749d7b2a0441", + "x-ms-ratelimit-remaining-subscription-reads": "11571", + "x-ms-request-id": "038b244f-0f70-42ff-a002-25a3674cfba4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070336Z:ae8fefbb-f77d-4213-825c-749d7b2a0441" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0df0b61b1693c1bc3d00bc2051bf2661", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e0d37802-8b1b-42d1-8ea3-0ceec77da2fd", + "x-ms-client-request-id": "0df0b61b1693c1bc3d00bc2051bf2661", + "x-ms-correlation-request-id": "3a7ba5b6-23b9-45a1-9111-6f3ec0e455b4", + "x-ms-ratelimit-remaining-subscription-reads": "11570", + "x-ms-request-id": "c78a8182-5e41-45d3-9566-15a2d512cc82", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070337Z:3a7ba5b6-23b9-45a1-9111-6f3ec0e455b4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ae8284ed3b3cee455fb9e122461758f3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "dbfa4012-1731-44b8-95dc-73dd3a4a29df", + "x-ms-client-request-id": "ae8284ed3b3cee455fb9e122461758f3", + "x-ms-correlation-request-id": "3b816737-0186-44cc-9209-c233980aaf4a", + "x-ms-ratelimit-remaining-subscription-reads": "11569", + "x-ms-request-id": "c5dfab20-f627-4d8d-accd-e14d27a6b2dc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070339Z:3b816737-0186-44cc-9209-c233980aaf4a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7bcb12e06932946c745d40f3849f0f9a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e8d08063-7ab4-49fe-8366-649d5f15bfc1", + "x-ms-client-request-id": "7bcb12e06932946c745d40f3849f0f9a", + "x-ms-correlation-request-id": "bcb1c8bf-1507-490c-a46e-7f25947d1a8e", + "x-ms-ratelimit-remaining-subscription-reads": "11568", + "x-ms-request-id": "3c677e46-502b-4285-9986-4eac2424b31f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070340Z:bcb1c8bf-1507-490c-a46e-7f25947d1a8e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c4bec3073280df147002add935997b26", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b9d8e97c-2f7a-4195-8a73-2977cc90315a", + "x-ms-client-request-id": "c4bec3073280df147002add935997b26", + "x-ms-correlation-request-id": "e7957d98-76d6-4632-82ab-ed34ecba4085", + "x-ms-ratelimit-remaining-subscription-reads": "11567", + "x-ms-request-id": "fff62534-d4c8-4cbb-a089-ef50992867e5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070341Z:e7957d98-76d6-4632-82ab-ed34ecba4085" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3f40c8a8aaf3832f18ee3adffb526ac0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0a168082-66a1-4c73-8cc4-09769390515e", + "x-ms-client-request-id": "3f40c8a8aaf3832f18ee3adffb526ac0", + "x-ms-correlation-request-id": "800eb80a-896b-4681-a27c-6c5f6c8859d5", + "x-ms-ratelimit-remaining-subscription-reads": "11566", + "x-ms-request-id": "f011728b-b9d4-4804-b147-2aa39e15fe77", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070342Z:800eb80a-896b-4681-a27c-6c5f6c8859d5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "831a47a99358ad73fdec0a2fbc925fda", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e7a0cce1-ddf6-4de4-bb44-722d37c6dc1d", + "x-ms-client-request-id": "831a47a99358ad73fdec0a2fbc925fda", + "x-ms-correlation-request-id": "38f6fed5-775d-4954-a652-5e2357d8aa82", + "x-ms-ratelimit-remaining-subscription-reads": "11565", + "x-ms-request-id": "3067fd97-eaee-4ef9-8fe2-70b439612ac0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070344Z:38f6fed5-775d-4954-a652-5e2357d8aa82" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bb4a1ae2d05f5ca6933aac92f835e31e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8cd6d6cb-fc53-4537-9570-8a20d2d9b115", + "x-ms-client-request-id": "bb4a1ae2d05f5ca6933aac92f835e31e", + "x-ms-correlation-request-id": "5693eb3b-b2f2-4ddc-a960-f46d9aedc7cb", + "x-ms-ratelimit-remaining-subscription-reads": "11564", + "x-ms-request-id": "27475c59-809a-41ef-9177-32e2dcceb783", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070345Z:5693eb3b-b2f2-4ddc-a960-f46d9aedc7cb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ed30ed97f77e14cd55924106a000c785", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ec45063e-73ec-4470-9d16-32ddb8f75c12", + "x-ms-client-request-id": "ed30ed97f77e14cd55924106a000c785", + "x-ms-correlation-request-id": "498f1e39-a4e3-401e-812c-a28468852346", + "x-ms-ratelimit-remaining-subscription-reads": "11563", + "x-ms-request-id": "c1393ee6-021d-4bfc-9116-d76f05974c68", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070346Z:498f1e39-a4e3-401e-812c-a28468852346" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e0fd5f8eaf08d860a0bdf01de7e1b5c7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b407cc94-02cc-438b-b8a1-8c92886bef5e", + "x-ms-client-request-id": "e0fd5f8eaf08d860a0bdf01de7e1b5c7", + "x-ms-correlation-request-id": "18da91b9-9de3-429e-83e2-b6104d7a9ba9", + "x-ms-ratelimit-remaining-subscription-reads": "11562", + "x-ms-request-id": "a0943f14-ae63-4800-83bf-7080ced0b33b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070348Z:18da91b9-9de3-429e-83e2-b6104d7a9ba9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ce98ec087162ea5b4c3566cc8ea0bc92", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4fc7b56f-9c22-456f-ade4-a4c54cbb07b5", + "x-ms-client-request-id": "ce98ec087162ea5b4c3566cc8ea0bc92", + "x-ms-correlation-request-id": "f0454a64-f27b-4760-b673-6577f9838c94", + "x-ms-ratelimit-remaining-subscription-reads": "11561", + "x-ms-request-id": "98013da9-e769-4091-b832-5a42d44abaab", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070349Z:f0454a64-f27b-4760-b673-6577f9838c94" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "980326730338e8158c574dc107af2d74", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a45edfd7-c48e-45f0-ab8c-925fa2183a90", + "x-ms-client-request-id": "980326730338e8158c574dc107af2d74", + "x-ms-correlation-request-id": "97a464f2-e667-4db8-9da5-72169610805d", + "x-ms-ratelimit-remaining-subscription-reads": "11560", + "x-ms-request-id": "ce8b0f75-24e0-4c1b-8a89-bde804743b29", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070350Z:97a464f2-e667-4db8-9da5-72169610805d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b3fd7addf9671c23031293d2499449ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "624a8575-1488-4ddc-a0b4-21711c0c99bb", + "x-ms-client-request-id": "b3fd7addf9671c23031293d2499449ff", + "x-ms-correlation-request-id": "1805c0b3-fbb4-4639-8c48-3440e1eaab98", + "x-ms-ratelimit-remaining-subscription-reads": "11559", + "x-ms-request-id": "a22975e0-3250-4a3b-a8d6-e62390f21ec8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070351Z:1805c0b3-fbb4-4639-8c48-3440e1eaab98" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c0aa5d011cdd058fd6b0410b239ae39c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "d1f63089-4076-4c24-8022-bf9d932fb64d", + "x-ms-client-request-id": "c0aa5d011cdd058fd6b0410b239ae39c", + "x-ms-correlation-request-id": "99a0cffc-af66-4716-adbb-8d6479a17920", + "x-ms-ratelimit-remaining-subscription-reads": "11558", + "x-ms-request-id": "5421fbd2-a716-4173-8f7b-51ca95773c14", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070353Z:99a0cffc-af66-4716-adbb-8d6479a17920" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "14eef10808a3792b03e795266f439ef8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "bbb1bf14-103a-46b8-af6f-f736aed2654a", + "x-ms-client-request-id": "14eef10808a3792b03e795266f439ef8", + "x-ms-correlation-request-id": "91aa4bc1-7f05-44dd-aca5-7c6c44e93f24", + "x-ms-ratelimit-remaining-subscription-reads": "11557", + "x-ms-request-id": "60baf146-e554-499f-abd6-8b0811d2bd06", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070354Z:91aa4bc1-7f05-44dd-aca5-7c6c44e93f24" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a9c04e0d6c05c096eaf8ddb7b718f868", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b07cb8b7-afc3-4b94-96a1-d3ce1ca5feb7", + "x-ms-client-request-id": "a9c04e0d6c05c096eaf8ddb7b718f868", + "x-ms-correlation-request-id": "2e8d2156-49a8-46fa-9828-efeef5876cc6", + "x-ms-ratelimit-remaining-subscription-reads": "11556", + "x-ms-request-id": "9b0fb375-beff-4659-9f60-708cb6f0bfb9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070355Z:2e8d2156-49a8-46fa-9828-efeef5876cc6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "57caf62e35a5f85c3231bdf687699693", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "621b0eeb-e8ec-48a8-adc3-3352bc58a2b6", + "x-ms-client-request-id": "57caf62e35a5f85c3231bdf687699693", + "x-ms-correlation-request-id": "a559785e-bd26-4eaa-a60f-8bc33040800f", + "x-ms-ratelimit-remaining-subscription-reads": "11555", + "x-ms-request-id": "5499f350-dd7d-4152-a030-0b144174712f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070356Z:a559785e-bd26-4eaa-a60f-8bc33040800f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d5fd491139da9b975b2e29ab2b73c1ea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "1e366357-9570-466c-a0f2-9741a39101bb", + "x-ms-client-request-id": "d5fd491139da9b975b2e29ab2b73c1ea", + "x-ms-correlation-request-id": "ebe439d5-d96c-4151-9c6e-3133cf9eb057", + "x-ms-ratelimit-remaining-subscription-reads": "11554", + "x-ms-request-id": "fbde4775-a626-4e34-9056-a9130c834c84", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070358Z:ebe439d5-d96c-4151-9c6e-3133cf9eb057" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "78f72cee4778d752f1c777d4aea03981", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5aa35835-13e4-4d7e-9360-ab4118284fbc", + "x-ms-client-request-id": "78f72cee4778d752f1c777d4aea03981", + "x-ms-correlation-request-id": "e81f2bf6-b8ce-4b1d-82e2-0e4f588c367a", + "x-ms-ratelimit-remaining-subscription-reads": "11553", + "x-ms-request-id": "41d62612-5c4e-43f8-ab9b-19a9973778ed", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070359Z:e81f2bf6-b8ce-4b1d-82e2-0e4f588c367a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6ea64961231af58d5f2ffc770bb1ccbe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0c06c17b-2a59-4039-9194-75407efa1021", + "x-ms-client-request-id": "6ea64961231af58d5f2ffc770bb1ccbe", + "x-ms-correlation-request-id": "812717f5-1514-4f49-b0a2-9cf411f4a8d1", + "x-ms-ratelimit-remaining-subscription-reads": "11552", + "x-ms-request-id": "c21979ec-638f-4da2-9a3c-c94ff93bd9ea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070400Z:812717f5-1514-4f49-b0a2-9cf411f4a8d1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5a07d26f1d72c91af625e313c2c3ecba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "1d222065-a145-4d3e-996f-b918990825c0", + "x-ms-client-request-id": "5a07d26f1d72c91af625e313c2c3ecba", + "x-ms-correlation-request-id": "044faf8b-e3a3-4e5d-96ab-2a2408dbbc39", + "x-ms-ratelimit-remaining-subscription-reads": "11551", + "x-ms-request-id": "a9af4c63-2391-491b-b449-65256bd2bbea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070402Z:044faf8b-e3a3-4e5d-96ab-2a2408dbbc39" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e149a8f452cdcbd09e0119494bdbcc40", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4e764126-75e2-4c5c-b0e6-8e4651e042fc", + "x-ms-client-request-id": "e149a8f452cdcbd09e0119494bdbcc40", + "x-ms-correlation-request-id": "644360a7-130a-49cc-93f9-c89779f68282", + "x-ms-ratelimit-remaining-subscription-reads": "11550", + "x-ms-request-id": "3d0c5fef-8b2a-4679-ab9a-12f4f6015c0d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070403Z:644360a7-130a-49cc-93f9-c89779f68282" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "db64b9fadf98440f2fdc78f43f7a339b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1b80def1-0182-498a-b94e-9ed0592f8186", + "x-ms-client-request-id": "db64b9fadf98440f2fdc78f43f7a339b", + "x-ms-correlation-request-id": "3da88934-ff8d-4ed0-ba68-588838b8685b", + "x-ms-ratelimit-remaining-subscription-reads": "11549", + "x-ms-request-id": "17038d08-9067-4108-af09-528be2f7fed5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070404Z:3da88934-ff8d-4ed0-ba68-588838b8685b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "63834142eb681cf1023cbb7004d07e1b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e4666ac5-dc00-400a-8042-c412dd140cd3", + "x-ms-client-request-id": "63834142eb681cf1023cbb7004d07e1b", + "x-ms-correlation-request-id": "e02cb67a-b5fc-440b-a00b-8f50dc51a415", + "x-ms-ratelimit-remaining-subscription-reads": "11548", + "x-ms-request-id": "d54b199f-d0dd-4330-b8a5-77811c6a0b9b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070405Z:e02cb67a-b5fc-440b-a00b-8f50dc51a415" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0818a359105f14229905b2f0dadc8c24", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2c213ed5-2e41-4428-8b2b-d9d06607de7f", + "x-ms-client-request-id": "0818a359105f14229905b2f0dadc8c24", + "x-ms-correlation-request-id": "9e56e713-513e-4c33-b25c-ad7e96582d3d", + "x-ms-ratelimit-remaining-subscription-reads": "11547", + "x-ms-request-id": "0de6fd73-56ee-46fb-8a70-964efa5255a8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070407Z:9e56e713-513e-4c33-b25c-ad7e96582d3d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0a077dce69570fd7c747d95c249e3f5e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "852dc00a-f52c-4c72-8642-95777dee0d70", + "x-ms-client-request-id": "0a077dce69570fd7c747d95c249e3f5e", + "x-ms-correlation-request-id": "5b095d9f-7191-47da-a128-2bd046a1f704", + "x-ms-ratelimit-remaining-subscription-reads": "11546", + "x-ms-request-id": "b6f644d2-d49e-41c2-8375-8e908fab8934", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070408Z:5b095d9f-7191-47da-a128-2bd046a1f704" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9b9a5d5e2a62313c1f6ec96339004125", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a72afbed-8f49-4f34-b07e-aa370ede8eea", + "x-ms-client-request-id": "9b9a5d5e2a62313c1f6ec96339004125", + "x-ms-correlation-request-id": "7e04b9cb-e487-4f5e-b558-ab7e19c5e6ba", + "x-ms-ratelimit-remaining-subscription-reads": "11545", + "x-ms-request-id": "90ae908c-7b3f-4dfc-b281-5257dedf1753", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070409Z:7e04b9cb-e487-4f5e-b558-ab7e19c5e6ba" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "87a297b074c9f0c3cb09411737c6f0fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "89abeca5-9015-43b6-9c19-712210b66e6a", + "x-ms-client-request-id": "87a297b074c9f0c3cb09411737c6f0fa", + "x-ms-correlation-request-id": "6eb15bcb-45a3-4dab-8842-39fb3660928b", + "x-ms-ratelimit-remaining-subscription-reads": "11544", + "x-ms-request-id": "3cef6a89-6956-4a48-94f7-bd413167ee0c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070411Z:6eb15bcb-45a3-4dab-8842-39fb3660928b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7d9153c5f141a3c241d6eae99f74d6c6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "375c4837-3ce4-44d1-bb92-885c8eb101a7", + "x-ms-client-request-id": "7d9153c5f141a3c241d6eae99f74d6c6", + "x-ms-correlation-request-id": "5696aa72-a0b2-4f4e-a3b6-90f50cbe063a", + "x-ms-ratelimit-remaining-subscription-reads": "11543", + "x-ms-request-id": "31841136-9da2-42c2-ba13-0406aa40c90a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070412Z:5696aa72-a0b2-4f4e-a3b6-90f50cbe063a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8dacb306b8fcea949aaacf58e925f959", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "10d1f5ca-2d4f-43e2-bf43-aaa6a6f4c043", + "x-ms-client-request-id": "8dacb306b8fcea949aaacf58e925f959", + "x-ms-correlation-request-id": "42e7f177-1647-4f89-b2fc-d47ee67cf80c", + "x-ms-ratelimit-remaining-subscription-reads": "11542", + "x-ms-request-id": "1cc7b039-eae1-4b81-b88e-8b52dc3bfbde", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070413Z:42e7f177-1647-4f89-b2fc-d47ee67cf80c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e59dcf7ec46fbee4d4fe45f389d95057", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "6319deb4-3000-43e5-9f51-fa822e8b8375", + "x-ms-client-request-id": "e59dcf7ec46fbee4d4fe45f389d95057", + "x-ms-correlation-request-id": "04898eac-c4a0-4f9b-837d-5ccf5f020099", + "x-ms-ratelimit-remaining-subscription-reads": "11541", + "x-ms-request-id": "b95f0bc2-dc26-4dd7-a593-33b25b03fbc3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070414Z:04898eac-c4a0-4f9b-837d-5ccf5f020099" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "83117a3363190dfebfa7e3962169ba1c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "af9394dd-709c-4019-a069-bc7a94e431ba", + "x-ms-client-request-id": "83117a3363190dfebfa7e3962169ba1c", + "x-ms-correlation-request-id": "43eede55-5a01-4e1c-a17f-8ccfa342ba88", + "x-ms-ratelimit-remaining-subscription-reads": "11540", + "x-ms-request-id": "89fee340-9829-4827-b5e7-6ebb0a307f38", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070416Z:43eede55-5a01-4e1c-a17f-8ccfa342ba88" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d06a91dcf1d74157cfedb8fd72a161c0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8f5f0f32-0742-4ad8-bb42-aa0e5c4718cf", + "x-ms-client-request-id": "d06a91dcf1d74157cfedb8fd72a161c0", + "x-ms-correlation-request-id": "d79b0fed-52b2-4195-b94b-a6899756d20f", + "x-ms-ratelimit-remaining-subscription-reads": "11539", + "x-ms-request-id": "54141f1b-18e0-4162-ae6f-f47514748b38", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070417Z:d79b0fed-52b2-4195-b94b-a6899756d20f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6e25785a76131b3fd08f25c8e14e9d6b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b2b9ca8f-2f01-4c59-b03f-a062f5a11b7c", + "x-ms-client-request-id": "6e25785a76131b3fd08f25c8e14e9d6b", + "x-ms-correlation-request-id": "54c18bd0-42ca-4279-a794-58b7fe1e383f", + "x-ms-ratelimit-remaining-subscription-reads": "11538", + "x-ms-request-id": "f7efcae4-bdfd-4be6-8b42-f8ba3c5e18ac", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070418Z:54c18bd0-42ca-4279-a794-58b7fe1e383f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f7172943806f417f23cfb42cab019a1d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0e6099ea-129c-4914-a955-4eb73f748d87", + "x-ms-client-request-id": "f7172943806f417f23cfb42cab019a1d", + "x-ms-correlation-request-id": "2ba52056-5a5c-4b2e-9b91-7edab007d03f", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "1d4536a1-0a88-4396-9510-4c552c20a6e3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070420Z:2ba52056-5a5c-4b2e-9b91-7edab007d03f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a93c22454c446508524f0047cb8f5f80", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e43e845e-43c5-4611-8481-2e44a1c3bddb", + "x-ms-client-request-id": "a93c22454c446508524f0047cb8f5f80", + "x-ms-correlation-request-id": "d0390055-bc70-4568-9fd6-b4375c3262f0", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "d34b68c8-9394-4d23-8ac1-86909d85d0f9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070421Z:d0390055-bc70-4568-9fd6-b4375c3262f0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "49b94c4f6a8ad951f8e34b44c1126fce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7b98b175-ea10-4753-9ea0-702230a13144", + "x-ms-client-request-id": "49b94c4f6a8ad951f8e34b44c1126fce", + "x-ms-correlation-request-id": "f7ef0ec6-94f8-44b3-a0bf-27ef576c45c5", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "5d5d3b17-e324-4e42-ab23-7d9fae38bdcc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070423Z:f7ef0ec6-94f8-44b3-a0bf-27ef576c45c5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "be8208f4f311f72721b1a41f80377693", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "565e0cd0-d9b4-4550-8857-ac786d730d6e", + "x-ms-client-request-id": "be8208f4f311f72721b1a41f80377693", + "x-ms-correlation-request-id": "2b42f74d-9472-4f1e-a002-fbccbd33772b", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "f7cfafd4-1ac4-4726-9702-35ad7d2a9511", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070424Z:2b42f74d-9472-4f1e-a002-fbccbd33772b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5edc336f5147db93d162b06000c4a440", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0a39a1d0-3f74-4ab1-ab00-08005280e64e", + "x-ms-client-request-id": "5edc336f5147db93d162b06000c4a440", + "x-ms-correlation-request-id": "2b50fdc6-ec6a-4282-b7b8-c3560e2c7ade", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "a80fa1a5-e8ff-4dca-bf6d-04444ab3cb5a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070425Z:2b50fdc6-ec6a-4282-b7b8-c3560e2c7ade" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c35331dfa10c5c6f25c228d9c53159c1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d068eb91-902c-4b2a-9fb8-7d17b26b1343", + "x-ms-client-request-id": "c35331dfa10c5c6f25c228d9c53159c1", + "x-ms-correlation-request-id": "44780c29-8e33-48a2-a9b6-53617595068d", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "bc2f0e0d-3fbb-4252-b684-cf65ef88e137", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070426Z:44780c29-8e33-48a2-a9b6-53617595068d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8ed4b76c1135a38775a7edae43c6f75c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c6bac689-5816-4250-bed9-b5050f881ec0", + "x-ms-client-request-id": "8ed4b76c1135a38775a7edae43c6f75c", + "x-ms-correlation-request-id": "7009c881-ef2e-4faf-ab8e-b55e02ec68f1", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "d40809d5-34aa-4a4f-9c26-52e0b97b8f8b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070428Z:7009c881-ef2e-4faf-ab8e-b55e02ec68f1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4e3f640db3e4ce87c480388529b9159f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "4b9d83d0-6f8d-4fc6-a9a8-099e5a55c848", + "x-ms-client-request-id": "4e3f640db3e4ce87c480388529b9159f", + "x-ms-correlation-request-id": "223d90c7-f127-4c34-a2aa-3f05bf8f4559", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "f6ae05aa-9938-4a42-807a-10c9a8c8579b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070429Z:223d90c7-f127-4c34-a2aa-3f05bf8f4559" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "48f3ef0915efce0aaaaf4d64b3c0185f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "61d2e088-5b8f-4a93-890c-f715ff21bb59", + "x-ms-client-request-id": "48f3ef0915efce0aaaaf4d64b3c0185f", + "x-ms-correlation-request-id": "a6178ac4-ab02-4fb0-a367-e4acce5d1e64", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "1a777186-fb06-4e44-a9ba-41bc26691ead", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070430Z:a6178ac4-ab02-4fb0-a367-e4acce5d1e64" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "61cbcbcb0af1b9dc3006cab4d80179bb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a78417dd-cdf5-446b-9866-2aef7a3a19dc", + "x-ms-client-request-id": "61cbcbcb0af1b9dc3006cab4d80179bb", + "x-ms-correlation-request-id": "5b85ba8d-5ec2-462d-af92-ddf029133171", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "ffe27642-7474-43c9-9ae3-b149d59677de", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070432Z:5b85ba8d-5ec2-462d-af92-ddf029133171" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "53a54d92aed2f76d5971a43465221a03", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "108a8fa4-48cc-444b-b9f5-2337293e0f00", + "x-ms-client-request-id": "53a54d92aed2f76d5971a43465221a03", + "x-ms-correlation-request-id": "83f3848c-f910-456b-a4f9-6f11e8692c7a", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "7921cce9-8f0e-4035-99b5-aa4eafd85ccf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070433Z:83f3848c-f910-456b-a4f9-6f11e8692c7a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5ebad967b4edffad123a18e94b55f5a8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ce4ff8ce-1c1e-4328-9209-ecd2ba28751c", + "x-ms-client-request-id": "5ebad967b4edffad123a18e94b55f5a8", + "x-ms-correlation-request-id": "d9c3e5a5-0960-4daa-ade7-640fc953328e", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "f20ecb9c-dee4-46e8-b5d3-67fbb2e6f6a0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070434Z:d9c3e5a5-0960-4daa-ade7-640fc953328e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "66d29236c51b1c8c5dd4078065a8530e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "01a9f39b-70a9-4c86-9f80-125ebd9dad62", + "x-ms-client-request-id": "66d29236c51b1c8c5dd4078065a8530e", + "x-ms-correlation-request-id": "e68e5d77-c9bc-4468-b804-c068be224241", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "c4c6d311-a11b-4d6f-8e09-0c7febbdf1e7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070436Z:e68e5d77-c9bc-4468-b804-c068be224241" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fe4cc6eb1b47decd9fa640989584ab03", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1f99b26f-83d5-4da6-8b54-bbab70b388bd", + "x-ms-client-request-id": "fe4cc6eb1b47decd9fa640989584ab03", + "x-ms-correlation-request-id": "ea7729f5-785b-4bc7-957b-f65b9e3bcd61", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "07184a7f-007a-42f3-83c6-02cb6f0dc9e2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070437Z:ea7729f5-785b-4bc7-957b-f65b9e3bcd61" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d3fefc7bb44fa2e84d9d0019ac2d996a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "11686018-843f-43b6-ace3-428d04ddd1da", + "x-ms-client-request-id": "d3fefc7bb44fa2e84d9d0019ac2d996a", + "x-ms-correlation-request-id": "383d7334-c055-4d00-bd36-d89220a8d0d5", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "b1792233-db46-4c82-9576-a51a780baa74", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070438Z:383d7334-c055-4d00-bd36-d89220a8d0d5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "85fe09e6f6091b61c5f4c67584f486d9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "26e81d2d-4512-481e-84f9-22ef8065e745", + "x-ms-client-request-id": "85fe09e6f6091b61c5f4c67584f486d9", + "x-ms-correlation-request-id": "e524a9ce-569a-4ffa-a3e2-3e7e66ab2fc2", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "f0543022-9ad6-486f-8fb6-5acbb4363d6f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070440Z:e524a9ce-569a-4ffa-a3e2-3e7e66ab2fc2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6904032880a936beddaab1a91ab33172", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6e4e7c7e-bfe8-41f4-aba4-6dce3f892876", + "x-ms-client-request-id": "6904032880a936beddaab1a91ab33172", + "x-ms-correlation-request-id": "82c10885-a309-41b0-8287-fae38d33208d", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "2368491e-e40e-41b2-94fe-6a63c44111e4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070441Z:82c10885-a309-41b0-8287-fae38d33208d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8bb1d50c268685fa9ae20d5bee731d59", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "39fc014c-5e81-4e9e-ba39-9dfd812a3247", + "x-ms-client-request-id": "8bb1d50c268685fa9ae20d5bee731d59", + "x-ms-correlation-request-id": "545149ea-2ba6-472c-93b7-6baf3a37f634", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "25eb85eb-f365-49cd-a972-e596a22c3e77", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070442Z:545149ea-2ba6-472c-93b7-6baf3a37f634" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a9f027162f2866c04bc7a85f45b70011", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "dc807ae8-dfba-4d57-b246-418c7081bc6d", + "x-ms-client-request-id": "a9f027162f2866c04bc7a85f45b70011", + "x-ms-correlation-request-id": "e0affa82-f40f-4434-a478-424ffc4b5c17", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "d1a39201-4ab4-4ce2-ae9a-e61aed51a1d7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070444Z:e0affa82-f40f-4434-a478-424ffc4b5c17" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ae6853c2fb420253087fcec673634869", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ef8bf472-e462-4483-9188-6c5fe4fbf987", + "x-ms-client-request-id": "ae6853c2fb420253087fcec673634869", + "x-ms-correlation-request-id": "bae2a2ab-16e3-4439-9076-5cd794aee5b8", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "5092bf8d-71a8-4eb5-8488-061f4395c3d7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070445Z:bae2a2ab-16e3-4439-9076-5cd794aee5b8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f393588c88c3dc49154b40be7e9b3fe3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0f29e7ad-5e5f-4e2c-a8ff-16d612fbd273", + "x-ms-client-request-id": "f393588c88c3dc49154b40be7e9b3fe3", + "x-ms-correlation-request-id": "c7274a40-4987-4525-9f1d-2149f5ebd6d9", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "55e705c9-8baf-4057-89e9-dc7cb3aee025", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070446Z:c7274a40-4987-4525-9f1d-2149f5ebd6d9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9a98fbe26f0a1b16d3eea0a960f9f3e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0445f2a2-3b6b-41ca-b1db-c985b55a1a21", + "x-ms-client-request-id": "9a98fbe26f0a1b16d3eea0a960f9f3e7", + "x-ms-correlation-request-id": "6c363712-51c4-4d33-98ba-58a3a72186a1", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "e80fb109-b8e1-4ad3-9caa-c7ae757377c2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070448Z:6c363712-51c4-4d33-98ba-58a3a72186a1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "edd33e7f0d243a4e0a8b99f7ba94846d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "513cac1d-da46-4a1b-865c-e6d2741f39f5", + "x-ms-client-request-id": "edd33e7f0d243a4e0a8b99f7ba94846d", + "x-ms-correlation-request-id": "601409a0-c98f-492d-89dd-99c491e2cd55", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "7f7329c4-9be1-49df-930e-7d241eda0de1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070449Z:601409a0-c98f-492d-89dd-99c491e2cd55" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "77e4eb3fadcb1c5f41771fd5e8a07b1b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "dab8a16d-ec13-4125-8a5b-25d5c30f2511", + "x-ms-client-request-id": "77e4eb3fadcb1c5f41771fd5e8a07b1b", + "x-ms-correlation-request-id": "17c26f7b-9724-45e6-9ba2-c30a84a3f738", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "dec82aa4-4fe9-4d1a-90fa-275e96d7c9c6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070450Z:17c26f7b-9724-45e6-9ba2-c30a84a3f738" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3f3f595752c8d4bead5d907fd51e613e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "dea274b2-7c4b-4448-a83d-58b019245edb", + "x-ms-client-request-id": "3f3f595752c8d4bead5d907fd51e613e", + "x-ms-correlation-request-id": "ea3b1cc5-decc-4b65-b0d5-eb8c88002afd", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "58c00218-acbf-42cd-b865-2bb555df3e96", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070452Z:ea3b1cc5-decc-4b65-b0d5-eb8c88002afd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "756932697c15d11cdfb6abaded795269", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ad92bece-dc4f-43cd-8926-d7f1db1eaecf", + "x-ms-client-request-id": "756932697c15d11cdfb6abaded795269", + "x-ms-correlation-request-id": "887a3974-2ba1-4e9f-8af2-352b43c9cdc4", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "2af6bfcd-db89-48b7-88d2-82c378dd198e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070453Z:887a3974-2ba1-4e9f-8af2-352b43c9cdc4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "619f7e0f4455eca52d0fc96d1cdf4722", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "54a50458-bda6-4d25-84cc-7aca7a0cc63b", + "x-ms-client-request-id": "619f7e0f4455eca52d0fc96d1cdf4722", + "x-ms-correlation-request-id": "7d974e19-ba45-46f5-b99d-e2e1ce7c4900", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "ac910784-2839-436d-a129-bf2c51d51a06", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070454Z:7d974e19-ba45-46f5-b99d-e2e1ce7c4900" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b56be1160636db063d6e6011a711e733", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "24ff3ebd-1f28-445d-b882-466efd152876", + "x-ms-client-request-id": "b56be1160636db063d6e6011a711e733", + "x-ms-correlation-request-id": "c85bdf4c-d285-4142-9cf2-9d9b0f42b108", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "b630bff3-d26a-4661-bce4-4e9ec84d913c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070456Z:c85bdf4c-d285-4142-9cf2-9d9b0f42b108" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "566f260a007f24e98d7d4705b2aeb4ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a0c07318-6776-4d4f-a4e1-58e4e3e72055", + "x-ms-client-request-id": "566f260a007f24e98d7d4705b2aeb4ff", + "x-ms-correlation-request-id": "ebde81c4-7da6-4d95-8028-da26c0d3cd69", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "0144d964-72f8-4c61-9f4b-c111c7446a90", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070457Z:ebde81c4-7da6-4d95-8028-da26c0d3cd69" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0c96886e9d0d093378c423e7e493451b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1685965d-e17d-4ce9-8146-775ae5a9ee74", + "x-ms-client-request-id": "0c96886e9d0d093378c423e7e493451b", + "x-ms-correlation-request-id": "d3a58bce-27b0-4d68-9cb8-0fdbfb802bf2", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "183395b1-54fb-480d-93f6-8f733c605baf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070458Z:d3a58bce-27b0-4d68-9cb8-0fdbfb802bf2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f5639628f07016a3f74628b9be00298e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:04: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": "b4f3faf3-8b75-436a-b325-d4399d21c2bf", + "x-ms-client-request-id": "f5639628f07016a3f74628b9be00298e", + "x-ms-correlation-request-id": "c4f2273d-e3a8-4855-b009-bce7f3d81cdb", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "112ade96-a473-496b-934d-1cb6aa240db1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070459Z:c4f2273d-e3a8-4855-b009-bce7f3d81cdb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1fa261b9da7a6d25f366debbdc0140f9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "670069d1-31e8-4091-b5bd-ce51480e9bc3", + "x-ms-client-request-id": "1fa261b9da7a6d25f366debbdc0140f9", + "x-ms-correlation-request-id": "37a01b9e-d655-407a-a93c-46d93cadfd96", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "f33a53ec-d3d5-485a-bf66-7b2362afc120", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070501Z:37a01b9e-d655-407a-a93c-46d93cadfd96" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1bdc2c37bf4a7e8ee48014c6747a4a77", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e9e0df4d-d9df-4b26-a64b-05d923d06004", + "x-ms-client-request-id": "1bdc2c37bf4a7e8ee48014c6747a4a77", + "x-ms-correlation-request-id": "2f48d9af-7222-40ed-83d4-5486821103d5", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "5d8c65f7-489b-4b42-951b-c700e7c666ae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070503Z:2f48d9af-7222-40ed-83d4-5486821103d5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "822e959a26f04da170f5020a12e839f6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e9f303ac-7442-47f9-bc07-d044254dc089", + "x-ms-client-request-id": "822e959a26f04da170f5020a12e839f6", + "x-ms-correlation-request-id": "80c0c2c6-76fc-46c5-a461-3771a119db35", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "082a8123-276b-4504-913b-080f5d6109d2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070504Z:80c0c2c6-76fc-46c5-a461-3771a119db35" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "92812e060d24fa43d2243af9c65ef879", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c7f96c98-d7b6-467e-87ea-79a77972a6fe", + "x-ms-client-request-id": "92812e060d24fa43d2243af9c65ef879", + "x-ms-correlation-request-id": "e8d80e9c-ff59-462d-95d8-d0269e34c6a9", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "c199bcb3-38a0-4fcb-857f-a7f77f23035f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070505Z:e8d80e9c-ff59-462d-95d8-d0269e34c6a9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4720661bbdd311088a8eab55bc846cfc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "da37bc88-04e3-42b6-a7d8-c65af97c9803", + "x-ms-client-request-id": "4720661bbdd311088a8eab55bc846cfc", + "x-ms-correlation-request-id": "34e6d8c0-69e8-46a1-a822-254fee6aa790", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "ed05a018-edeb-42ab-a959-5b6fa1218b84", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070506Z:34e6d8c0-69e8-46a1-a822-254fee6aa790" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "46c01e46b8f88c525133b0cceca78711", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:05: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": "8153a2c9-1469-408c-bcda-6ef6e0baa872", + "x-ms-client-request-id": "46c01e46b8f88c525133b0cceca78711", + "x-ms-correlation-request-id": "811cda81-15bb-4f6d-859d-ba8deac3dcff", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "fd99fe8f-a1a8-48aa-9a98-175f7a05f083", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070508Z:811cda81-15bb-4f6d-859d-ba8deac3dcff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "abee89fdf2c74822266f079662ee3d4e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f3d0b359-521f-4296-8600-9b66cdf0157a", + "x-ms-client-request-id": "abee89fdf2c74822266f079662ee3d4e", + "x-ms-correlation-request-id": "58799ece-863b-4e4d-888d-dad66cf7ac35", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "6e244d9c-59d9-4d25-b916-3a61b977521a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070509Z:58799ece-863b-4e4d-888d-dad66cf7ac35" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a8b33db8b29e63801494f69f0d3c25e3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "02b8867e-3d70-432d-869b-eaf59c49a754", + "x-ms-client-request-id": "a8b33db8b29e63801494f69f0d3c25e3", + "x-ms-correlation-request-id": "547e26d2-008e-4851-a9e2-cf9baeafa999", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "029a780e-36ac-4418-a7f4-68f991f6ae3e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070510Z:547e26d2-008e-4851-a9e2-cf9baeafa999" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "33589907c1955434fc771f89b0bc2962", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e4f201bc-d744-47f2-8c87-23dee8976f4a", + "x-ms-client-request-id": "33589907c1955434fc771f89b0bc2962", + "x-ms-correlation-request-id": "bc61a572-6ced-459b-a737-67ba79cd8ff5", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "3d4bc652-47be-44e9-bc2d-c5252b805c70", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070512Z:bc61a572-6ced-459b-a737-67ba79cd8ff5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ae1362f6def44a73098b9733fc823ae9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "eb53f845-0291-447a-b5ad-8b3cf8b31e54", + "x-ms-client-request-id": "ae1362f6def44a73098b9733fc823ae9", + "x-ms-correlation-request-id": "8fabf3e8-1c4a-4591-b8ca-0558a2b1cb42", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "bff9457f-5da4-4b93-b943-9393e142ce8c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070513Z:8fabf3e8-1c4a-4591-b8ca-0558a2b1cb42" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c98e234a0996f7b8095eac2692f6b257", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "80ea6447-1529-4347-bf58-d2972d109372", + "x-ms-client-request-id": "c98e234a0996f7b8095eac2692f6b257", + "x-ms-correlation-request-id": "224779fe-d7d5-4efc-89d7-4b640a1e9890", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "12eb5cf0-d976-44c5-b781-a5990fb67c14", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070514Z:224779fe-d7d5-4efc-89d7-4b640a1e9890" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aba9936a772828ef250d2a0a29005779", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "53b12fa2-39b4-4330-8b4c-0343942598a6", + "x-ms-client-request-id": "aba9936a772828ef250d2a0a29005779", + "x-ms-correlation-request-id": "0d0330e1-78f5-4266-8532-59f57c9f02e2", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "02a18569-0ac0-4441-8ea2-c8f273e5d4c0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070516Z:0d0330e1-78f5-4266-8532-59f57c9f02e2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8c3e353d602eeccba91ca495324db712", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:05: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": "6dd5019e-e930-4ab1-9ce1-c16736cae232", + "x-ms-client-request-id": "8c3e353d602eeccba91ca495324db712", + "x-ms-correlation-request-id": "bc8925f6-1bd6-4e4a-a6f7-6d2c1db7d68d", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "d2a4c35b-ee5b-488a-b5fb-0a4cacc3778d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070517Z:bc8925f6-1bd6-4e4a-a6f7-6d2c1db7d68d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "68c93fd88fd9d2c13366a388dfadcd08", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "887daffc-95d0-4d88-b46f-22e9e059006e", + "x-ms-client-request-id": "68c93fd88fd9d2c13366a388dfadcd08", + "x-ms-correlation-request-id": "bb9b88ba-9fb1-4400-8c9f-3c3c7273aa82", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "c8cbd7a2-e8b0-4311-8c11-55390d660628", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070518Z:bb9b88ba-9fb1-4400-8c9f-3c3c7273aa82" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5de8320625b80929c8bc010cd25af5d8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5a9794e8-6cfa-4015-b8d4-8db6b94e31ad", + "x-ms-client-request-id": "5de8320625b80929c8bc010cd25af5d8", + "x-ms-correlation-request-id": "7d8f433b-fca6-4a18-998a-a21ddd70f45c", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "8060110e-1180-44f7-8c7e-99376914d0e8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070520Z:7d8f433b-fca6-4a18-998a-a21ddd70f45c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e9311855ef37aea0746c59c7bd420dfb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "bcfc5f92-5a58-4e4d-a1b0-c5c2f3afee4e", + "x-ms-client-request-id": "e9311855ef37aea0746c59c7bd420dfb", + "x-ms-correlation-request-id": "06096fee-ef43-4250-901a-056a720a643a", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "8124057c-b37b-4a07-a5ef-2cd70ea86184", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070521Z:06096fee-ef43-4250-901a-056a720a643a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "008e9b4e5a64b25a16bfa01c8db500d9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "8e34ec84-85ee-4618-a26d-eae432dd061e", + "x-ms-client-request-id": "008e9b4e5a64b25a16bfa01c8db500d9", + "x-ms-correlation-request-id": "724aef1e-8352-45d6-9147-1a3060b781f0", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "cd2cd3f3-4d68-457f-aa80-0aa9fb5ebfee", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070522Z:724aef1e-8352-45d6-9147-1a3060b781f0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c733cb70e37c17d0913ae84bcc614c85", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "83c80dce-bef3-4d6c-85d5-0fdbd3d1a167", + "x-ms-client-request-id": "c733cb70e37c17d0913ae84bcc614c85", + "x-ms-correlation-request-id": "393c8997-ceb1-43e1-938a-bf312dd7bc4f", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "48e4617b-98d4-4870-937a-b1845f8e503d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070524Z:393c8997-ceb1-43e1-938a-bf312dd7bc4f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "36bd06aff4ccfb74be7fd3784f8421bf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8565b3bf-d02c-472f-9670-15528046dcb4", + "x-ms-client-request-id": "36bd06aff4ccfb74be7fd3784f8421bf", + "x-ms-correlation-request-id": "a4327c69-e078-485b-87d8-66f867b49e70", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "3d51be56-fabf-45be-95c7-474f96b459fe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070525Z:a4327c69-e078-485b-87d8-66f867b49e70" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f2567f6b450f6b7fcb766f29710ee6b5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1d36c2bc-e372-465a-b960-0e3d5494bc17", + "x-ms-client-request-id": "f2567f6b450f6b7fcb766f29710ee6b5", + "x-ms-correlation-request-id": "8905a98e-c439-415a-8f37-de8477b9c0fe", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "c1c1d666-612e-46c8-9e54-a065fda9e2ea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070526Z:8905a98e-c439-415a-8f37-de8477b9c0fe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "876c1b72c9f77c0c573709fd1058c80c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b50ca300-775e-4ed4-96f1-207c0fbe0043", + "x-ms-client-request-id": "876c1b72c9f77c0c573709fd1058c80c", + "x-ms-correlation-request-id": "fe6da18d-7f8a-4660-b5b5-4de96a793ae2", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "721b49c1-4934-4642-9464-4174a9988aa2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070528Z:fe6da18d-7f8a-4660-b5b5-4de96a793ae2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4ce029195a0a697586516b55854a89af", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f4cfbb5f-0062-4a9b-a3a5-d92876a1478f", + "x-ms-client-request-id": "4ce029195a0a697586516b55854a89af", + "x-ms-correlation-request-id": "5e978bb2-003b-4c8d-8da9-0e61ea728f33", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "48f3f978-90ef-49f4-8248-7e1a514025af", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070529Z:5e978bb2-003b-4c8d-8da9-0e61ea728f33" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "33061d999917a2c773da9bd83c825b73", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2fe56d2c-4b8e-4b87-aa31-dc4a550bd3c3", + "x-ms-client-request-id": "33061d999917a2c773da9bd83c825b73", + "x-ms-correlation-request-id": "8884d6e4-1cd3-4c73-9280-913357e57aa2", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "7253f560-8c4a-4ecd-b287-480a972f3a2b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070530Z:8884d6e4-1cd3-4c73-9280-913357e57aa2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "480f62ae992e17aaa50200a65db7f70c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b4326f87-4b06-4e25-a031-766839084587", + "x-ms-client-request-id": "480f62ae992e17aaa50200a65db7f70c", + "x-ms-correlation-request-id": "8dedc4ca-4ebd-44ca-b97c-c1a2c8376a46", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "783634fb-2d78-4bfd-9e16-876ec0098c25", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070532Z:8dedc4ca-4ebd-44ca-b97c-c1a2c8376a46" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f26459ae94517ff5623dd930bf9d2d03", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "097d5cab-7c65-4440-9337-c0e953defc22", + "x-ms-client-request-id": "f26459ae94517ff5623dd930bf9d2d03", + "x-ms-correlation-request-id": "4c1762d6-4b2a-4a70-848b-76732a34e4cf", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "30599b79-0e1a-452a-b38d-00a12cbf361b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070533Z:4c1762d6-4b2a-4a70-848b-76732a34e4cf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "22a7f8f6413aff8173ee8d14992145bc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "12d84747-dc1c-4ec9-928d-b28610f39ab3", + "x-ms-client-request-id": "22a7f8f6413aff8173ee8d14992145bc", + "x-ms-correlation-request-id": "5c9f1d6d-f5e9-4030-b958-eddceb979271", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "eefe23e4-03d3-4024-93eb-6083ba14c2e1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070534Z:5c9f1d6d-f5e9-4030-b958-eddceb979271" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e2298ee3681e19216d8fe5f0bf7a5708", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c4995686-7785-47a9-a83c-62aee18572df", + "x-ms-client-request-id": "e2298ee3681e19216d8fe5f0bf7a5708", + "x-ms-correlation-request-id": "e0962d30-5f1b-4857-a699-aeb59d337612", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "39252773-dbbc-43c4-b3ec-9af4caadae8b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070535Z:e0962d30-5f1b-4857-a699-aeb59d337612" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "65affcd5d40f6cd1d7647f6206e0e641", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "7c27bbe3-d0c5-4a86-b7a4-6be317d133a9", + "x-ms-client-request-id": "65affcd5d40f6cd1d7647f6206e0e641", + "x-ms-correlation-request-id": "83c1b694-78ea-4691-bff5-1d414452c5bd", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "a91238d7-2f26-4c13-91cd-dbfc6245736d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070537Z:83c1b694-78ea-4691-bff5-1d414452c5bd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "314d1df84b738de5d68eb5aa5b9140f8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c023c9b8-aeb1-4d4a-9999-d4b91b126e9b", + "x-ms-client-request-id": "314d1df84b738de5d68eb5aa5b9140f8", + "x-ms-correlation-request-id": "5f62a420-88d9-4046-a27e-d662a23efc29", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "7d91057c-7b1c-4d12-9ada-d2b1b7f7a385", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070538Z:5f62a420-88d9-4046-a27e-d662a23efc29" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9c3f8496e0710eacbcbd0abae9be128d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b63fa499-b4ab-4aee-835f-9249a5c946f7", + "x-ms-client-request-id": "9c3f8496e0710eacbcbd0abae9be128d", + "x-ms-correlation-request-id": "25f94c69-8351-4661-b75d-8f09f9af9c11", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "049a9b5e-dfe7-421d-9c46-bdcfeb20bad3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070539Z:25f94c69-8351-4661-b75d-8f09f9af9c11" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a1f8a4a9262d8a9517218e811f271146", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a5b88f2c-edf7-49d7-8264-efd33eb33628", + "x-ms-client-request-id": "a1f8a4a9262d8a9517218e811f271146", + "x-ms-correlation-request-id": "1b437797-9145-4434-8bf0-42fe24b27ad7", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "0ca4dd53-6923-4f68-bce0-99877a7a8260", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070541Z:1b437797-9145-4434-8bf0-42fe24b27ad7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "81cb86234aa018cf713e74b6402aa418", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7ab188e5-e908-42cf-acd4-033e2fdd3f04", + "x-ms-client-request-id": "81cb86234aa018cf713e74b6402aa418", + "x-ms-correlation-request-id": "6da8fb86-5bf9-4582-877b-37d102cd27ab", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "1966c9d3-0f16-43d6-b328-5c182077e48e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070542Z:6da8fb86-5bf9-4582-877b-37d102cd27ab" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b701277b9e9870cbefb5844f512bef95", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5f9c536e-eb03-4ef1-901f-9c22bad4c6cc", + "x-ms-client-request-id": "b701277b9e9870cbefb5844f512bef95", + "x-ms-correlation-request-id": "361130b5-65a8-43d7-839f-ab4dbded13cc", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "fd59dc08-6573-468f-a157-58d9c294758b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070543Z:361130b5-65a8-43d7-839f-ab4dbded13cc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6296c4ac90f35eecd5e030efb1df49ed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d82ee891-475f-4659-bffa-269e93ddbe5d", + "x-ms-client-request-id": "6296c4ac90f35eecd5e030efb1df49ed", + "x-ms-correlation-request-id": "0bdc0fba-9ba3-4710-aee4-5b987c40a751", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "d71aabdb-b7e2-4e09-9fd4-8f934e06e6c2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070545Z:0bdc0fba-9ba3-4710-aee4-5b987c40a751" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f705767d5a2585adbb5b92ebc67fc646", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e1881f71-dc43-4360-8877-afe81f3dce90", + "x-ms-client-request-id": "f705767d5a2585adbb5b92ebc67fc646", + "x-ms-correlation-request-id": "d516f120-4162-42e8-a151-3d07a3674cd2", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "e486b0d1-7fe6-40a4-9589-26ea299b61e7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070546Z:d516f120-4162-42e8-a151-3d07a3674cd2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7b09df4e4194eb243ba2e1b86edcbe0f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8a66446e-cb64-41e9-864d-1c6d2eb46d50", + "x-ms-client-request-id": "7b09df4e4194eb243ba2e1b86edcbe0f", + "x-ms-correlation-request-id": "835c2854-37c4-4755-a45b-4ece07d7ce3b", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "f6f51f5c-4692-4c80-a244-0980adada473", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070547Z:835c2854-37c4-4755-a45b-4ece07d7ce3b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dbd1976bf725526f1611a797fd019855", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "fd66ed07-5cca-45b1-a7e2-c8802c05520a", + "x-ms-client-request-id": "dbd1976bf725526f1611a797fd019855", + "x-ms-correlation-request-id": "788ccdf9-980b-4e1b-a77e-484b439abae5", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "c10d119f-57fa-4a2d-9e0f-9ee83eecdd48", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070549Z:788ccdf9-980b-4e1b-a77e-484b439abae5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d2a0ea19ced53c59511abc8378f516de", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "db2f43f3-6f58-4a63-82d6-75d4d471a785", + "x-ms-client-request-id": "d2a0ea19ced53c59511abc8378f516de", + "x-ms-correlation-request-id": "0a596756-a075-4b9c-9fad-699086caa17f", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "a06fe498-fe16-483c-96bb-dbc1068815a2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070550Z:0a596756-a075-4b9c-9fad-699086caa17f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2e7f829deaae572070b76582998ded3a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4ba9b44a-29a8-4500-b762-820732db1649", + "x-ms-client-request-id": "2e7f829deaae572070b76582998ded3a", + "x-ms-correlation-request-id": "4e037be8-b633-4dc4-ad1d-66c95732f5b3", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "d0ee5fd9-042f-4985-90f4-dd12027dc149", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070551Z:4e037be8-b633-4dc4-ad1d-66c95732f5b3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "839e8c09ec3c9d3a3e958a0a3becda20", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "57e6c6d1-299f-4115-9ce2-d9dd92c251b9", + "x-ms-client-request-id": "839e8c09ec3c9d3a3e958a0a3becda20", + "x-ms-correlation-request-id": "0c9a5a3e-fe2f-4c16-926b-7f331f1375de", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "139f3370-8652-42e3-95ca-dabbadca49a1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070553Z:0c9a5a3e-fe2f-4c16-926b-7f331f1375de" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7bfac9fa69812fa7c948621d68d6a2c3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1757dd66-14c0-453d-84e4-874eca063c6d", + "x-ms-client-request-id": "7bfac9fa69812fa7c948621d68d6a2c3", + "x-ms-correlation-request-id": "ff618018-bd0b-40fd-a73d-cc2d15308531", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "bc08a557-cfb8-44f1-87ff-72e3fc1ebe49", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070554Z:ff618018-bd0b-40fd-a73d-cc2d15308531" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eb79822d9357b1a248e1f0185f151b83", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "09537da0-64cb-4cd1-9887-55663a5f1e69", + "x-ms-client-request-id": "eb79822d9357b1a248e1f0185f151b83", + "x-ms-correlation-request-id": "0d3fa605-e0fb-4dc6-8c04-e460acf73ee2", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "ef14fc4e-b2f6-4e31-857d-7ce5874ecd60", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070555Z:0d3fa605-e0fb-4dc6-8c04-e460acf73ee2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d08744dd7292a0b8e56ebaf3891c3467", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a7dda174-2cf9-4b0d-85b2-6863a023a09d", + "x-ms-client-request-id": "d08744dd7292a0b8e56ebaf3891c3467", + "x-ms-correlation-request-id": "bcb5095f-d4b1-496e-9ca8-921df89a2558", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "506512fb-62a0-406a-92c8-d6665345716c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070557Z:bcb5095f-d4b1-496e-9ca8-921df89a2558" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b9ddc6f3ee7367c92649329f798ecfb3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d2f44d50-d6b2-4593-ba51-4717f0340181", + "x-ms-client-request-id": "b9ddc6f3ee7367c92649329f798ecfb3", + "x-ms-correlation-request-id": "18aa53f3-72d1-4d1f-93b9-3ea793983315", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "b769f663-c0a0-478c-8b01-766bd6d1c031", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070558Z:18aa53f3-72d1-4d1f-93b9-3ea793983315" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2440de2dd14ebb31c9d905e8d9af272b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "979db0fe-7d08-4320-9590-6fda0f6276f7", + "x-ms-client-request-id": "2440de2dd14ebb31c9d905e8d9af272b", + "x-ms-correlation-request-id": "1a8bca80-9399-4de2-83a2-88035b1fc118", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "b5b46346-44a3-4438-94e9-c71a0ee834f1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070559Z:1a8bca80-9399-4de2-83a2-88035b1fc118" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "982489ac6238ef107a20aa483f182756", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c9f9c408-2188-42d4-824f-184729768029", + "x-ms-client-request-id": "982489ac6238ef107a20aa483f182756", + "x-ms-correlation-request-id": "08857332-ee9b-4d60-91f3-4faf78c64496", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "a5243e22-ec6c-42ef-9bc6-3cdb0d5304fc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070601Z:08857332-ee9b-4d60-91f3-4faf78c64496" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "abc6069f10dc22189522ef9ae8e18e77", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "bf7703ac-ea22-4881-a54a-810d09f3b559", + "x-ms-client-request-id": "abc6069f10dc22189522ef9ae8e18e77", + "x-ms-correlation-request-id": "fa745cbc-68a2-4eab-a959-e83b58607837", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "cae3cb41-9356-4c2b-a764-23a01d1a72fd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070602Z:fa745cbc-68a2-4eab-a959-e83b58607837" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eff20622366acb7bce51a92e27e87cb1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "59a088aa-81f0-4eff-b8a1-f53e3e075129", + "x-ms-client-request-id": "eff20622366acb7bce51a92e27e87cb1", + "x-ms-correlation-request-id": "8665ab2e-02f4-4021-aea5-b13e89d57cd9", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "f1ffa2a1-c4f8-4580-a415-18c38cfc0900", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070603Z:8665ab2e-02f4-4021-aea5-b13e89d57cd9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d248afb17ce89c4f7102031672760698", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b2a03a4a-f716-4df7-9a46-b30caa6c286c", + "x-ms-client-request-id": "d248afb17ce89c4f7102031672760698", + "x-ms-correlation-request-id": "822642ae-3cf1-4a2a-907b-cf0c61875e5e", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "515958e5-4e75-4ee8-9d5b-f7f34017033d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070604Z:822642ae-3cf1-4a2a-907b-cf0c61875e5e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "38263292372568ec8bfbdd8b67eafaac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f245670b-5997-4826-8635-c7e4ca8c528c", + "x-ms-client-request-id": "38263292372568ec8bfbdd8b67eafaac", + "x-ms-correlation-request-id": "8e2ed3ce-b4a2-4665-9486-a40b5985d01f", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "5e478390-175b-4ae6-9899-a389d08564f2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070606Z:8e2ed3ce-b4a2-4665-9486-a40b5985d01f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "39e83ea6bb98a68eb7567e6833655857", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e0ebd729-6fdf-4636-aa30-229ec8fd5117", + "x-ms-client-request-id": "39e83ea6bb98a68eb7567e6833655857", + "x-ms-correlation-request-id": "3ed544ef-49b7-432f-8088-77c81d72ae40", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "42790bd2-8d69-46b2-a685-16d2f8839250", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070607Z:3ed544ef-49b7-432f-8088-77c81d72ae40" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f59c104b43c27a8bc2e047ed9fc43586", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "cd701124-c627-4a9f-9a99-7c6e94889d2b", + "x-ms-client-request-id": "f59c104b43c27a8bc2e047ed9fc43586", + "x-ms-correlation-request-id": "81dd63c2-c0cb-4ac2-abb3-0095bc132510", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "a9448abb-bcb6-4ca4-a7d8-76752825b522", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070608Z:81dd63c2-c0cb-4ac2-abb3-0095bc132510" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "336f5707cc8ed600a38080ceb9843526", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3dd5a910-30f0-4f5a-9762-5929631ea0ad", + "x-ms-client-request-id": "336f5707cc8ed600a38080ceb9843526", + "x-ms-correlation-request-id": "3541c85f-1820-41ed-90e3-5bd27369ac95", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "60ad052b-c3af-4c6a-b80c-253bff9eb0dc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070610Z:3541c85f-1820-41ed-90e3-5bd27369ac95" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "564085a2054d62eab26d77b874a006f2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d9d49220-bf7b-450d-8618-af84146e0ad9", + "x-ms-client-request-id": "564085a2054d62eab26d77b874a006f2", + "x-ms-correlation-request-id": "40ab630c-7e76-4280-9d33-7726b9b9f397", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "c503e819-a92e-403b-ab36-5275aff37418", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070611Z:40ab630c-7e76-4280-9d33-7726b9b9f397" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "db60f72124f57ec910c55141c3bcc13e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "48fc4239-f9a9-4931-8680-5a5d7c7d859d", + "x-ms-client-request-id": "db60f72124f57ec910c55141c3bcc13e", + "x-ms-correlation-request-id": "239408b0-8b7b-4ac0-b5a5-280b32361e51", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "d125cc37-4286-4224-a24c-369a79a10604", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070612Z:239408b0-8b7b-4ac0-b5a5-280b32361e51" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "194b21abde8402396c0d802055476202", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8f0a42da-3c66-4c44-897e-8dd3c4258b66", + "x-ms-client-request-id": "194b21abde8402396c0d802055476202", + "x-ms-correlation-request-id": "8d643318-0378-4478-b9c4-f4d371cf730c", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "44638158-7cb8-4f55-87d8-d974bcc488d6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070614Z:8d643318-0378-4478-b9c4-f4d371cf730c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c1ad8d7959247d30bbc14587b3a89ff5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "86b03f99-ef60-4608-8b13-2f5b0bd3b495", + "x-ms-client-request-id": "c1ad8d7959247d30bbc14587b3a89ff5", + "x-ms-correlation-request-id": "5aaec1b2-d337-404d-845d-615439bec26f", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "d17e33fa-c6a2-4aa8-be6b-2b87b48a5888", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070615Z:5aaec1b2-d337-404d-845d-615439bec26f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "530c38aced54426ebe5d6fe7a4a829c8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "1e255654-0ca7-4eae-b139-af9550f9fdc0", + "x-ms-client-request-id": "530c38aced54426ebe5d6fe7a4a829c8", + "x-ms-correlation-request-id": "d0758bf0-2376-4c0e-b2f6-011bc96fa7a1", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "15f95c34-d3a9-485e-8f28-767492bc24f2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070616Z:d0758bf0-2376-4c0e-b2f6-011bc96fa7a1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "35c84e63ff0f511af0ce5dc299b14ec3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "134f1b38-eb5c-46d2-a638-7849f4e6ecd8", + "x-ms-client-request-id": "35c84e63ff0f511af0ce5dc299b14ec3", + "x-ms-correlation-request-id": "6f2e5a3d-54bd-4362-8eac-99c3c3a3246d", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "c687473e-1618-433c-9e8c-62462ba3600b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070618Z:6f2e5a3d-54bd-4362-8eac-99c3c3a3246d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1c748b6e0e3b8cad1f6a03c6ea49d913", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "69564ea4-f88a-42e1-b2c4-47e776b26a06", + "x-ms-client-request-id": "1c748b6e0e3b8cad1f6a03c6ea49d913", + "x-ms-correlation-request-id": "fa2a19fa-a23d-4ab7-960f-dfbbca5b2aec", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "4d8fe69c-7e74-4acb-9fd0-eb8b1ff91e3a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070619Z:fa2a19fa-a23d-4ab7-960f-dfbbca5b2aec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "65247c9769e0ace61dba62868faba90d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "55f5b3f7-a8b0-405b-a422-09d6d56acd99", + "x-ms-client-request-id": "65247c9769e0ace61dba62868faba90d", + "x-ms-correlation-request-id": "9570b8b1-1d86-4465-96c4-c48709413fc7", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "c549c497-e47f-4963-a112-94ed10cac2fc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070620Z:9570b8b1-1d86-4465-96c4-c48709413fc7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1878ab0e0d34548da03b16a4fc5467a6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "cacaf7fd-6972-4ed0-bbb8-abc77fb7f087", + "x-ms-client-request-id": "1878ab0e0d34548da03b16a4fc5467a6", + "x-ms-correlation-request-id": "3c6e8eb4-c673-44f4-b6f6-49547d07d5c0", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "35df96f5-ad42-4810-b511-8a84ce586ccc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070622Z:3c6e8eb4-c673-44f4-b6f6-49547d07d5c0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1c2b4af5e98c04e3a4c7fe80ac27fd73", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "60c31c37-7ab1-4b89-82ab-6ad6f189bc70", + "x-ms-client-request-id": "1c2b4af5e98c04e3a4c7fe80ac27fd73", + "x-ms-correlation-request-id": "6ce250e2-5a58-4ac7-ab73-36a2b7fa6a0c", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "b9d020e9-4e14-489e-b8d5-f8e15b5a1cd5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070623Z:6ce250e2-5a58-4ac7-ab73-36a2b7fa6a0c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3fb7f5c1c0d08adeefcfc4a55341afc9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "859a8ce9-2cfa-48b0-ac40-83f0e12b4d3b", + "x-ms-client-request-id": "3fb7f5c1c0d08adeefcfc4a55341afc9", + "x-ms-correlation-request-id": "9d900024-4344-4aee-928c-e1a71c28ec9c", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "a985267b-c642-4d35-99aa-4d6f0a91e5a3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070624Z:9d900024-4344-4aee-928c-e1a71c28ec9c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4491bc538d802580c874746d0e0da879", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0d74c91e-b02f-4e8c-af82-1fa5d011ef8b", + "x-ms-client-request-id": "4491bc538d802580c874746d0e0da879", + "x-ms-correlation-request-id": "5b630038-09b2-4aa3-a60c-e79f7084f570", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "79916504-4983-4c31-aef5-b5cf739bca94", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070625Z:5b630038-09b2-4aa3-a60c-e79f7084f570" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "06e3a33e289c34d66ca12dbd243db163", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "1b370135-3937-40a6-9656-9b386ba62d9a", + "x-ms-client-request-id": "06e3a33e289c34d66ca12dbd243db163", + "x-ms-correlation-request-id": "2d103f38-fcc8-4bb0-bf0d-963e046a370f", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "d1c60b90-7b14-4da7-9621-3378056a7b92", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070627Z:2d103f38-fcc8-4bb0-bf0d-963e046a370f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f02d3517b99534f37592775c4c717be1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "cf20992f-0477-4dd8-a197-102066509b60", + "x-ms-client-request-id": "f02d3517b99534f37592775c4c717be1", + "x-ms-correlation-request-id": "c6e5a901-1808-43c2-9a81-3792b455cc0d", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "94582cd5-52e3-4caa-8c85-946ff5080b7d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070628Z:c6e5a901-1808-43c2-9a81-3792b455cc0d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b0674b26a85d2a2de55cd7de5fc2008a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b97ef790-a2dd-481e-9a75-99f6ec272edb", + "x-ms-client-request-id": "b0674b26a85d2a2de55cd7de5fc2008a", + "x-ms-correlation-request-id": "80c7cd93-5b42-4064-85df-9ba3f11729f8", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "bcc6c5c7-94c0-4005-91b4-14c216cf8581", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070629Z:80c7cd93-5b42-4064-85df-9ba3f11729f8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d95510c2b8e084e3b0af910ab17ae8fb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "9c4b8ce7-0785-4af8-9044-7a308e06df07", + "x-ms-client-request-id": "d95510c2b8e084e3b0af910ab17ae8fb", + "x-ms-correlation-request-id": "13a65c8f-738e-4a0b-86e4-d8ff75c19528", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "351b113a-f88e-4283-b23c-359fe27335a1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070631Z:13a65c8f-738e-4a0b-86e4-d8ff75c19528" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d9974b2501d66f0508020a39e114d4b2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9a300b8b-fabd-409b-ba05-3296123f261a", + "x-ms-client-request-id": "d9974b2501d66f0508020a39e114d4b2", + "x-ms-correlation-request-id": "da764e6a-97db-4503-b3bd-d66cd3b051c2", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "b73d8ad2-ec0f-4fc7-8094-ff2aa3ff5ba7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070632Z:da764e6a-97db-4503-b3bd-d66cd3b051c2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3b99ed91a21c6d0168e200ae1722796b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "336afaa0-4a8c-4485-9a24-47778c3773df", + "x-ms-client-request-id": "3b99ed91a21c6d0168e200ae1722796b", + "x-ms-correlation-request-id": "f232b35f-08b5-4315-92a1-93b661e4999a", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "ed9d73c4-4204-431d-81ff-08df090a32c8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070633Z:f232b35f-08b5-4315-92a1-93b661e4999a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "14b9dc73272bc1b30ae6d0ddaea9a39c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d3f13aeb-3284-47e5-8625-c4509d6e45f5", + "x-ms-client-request-id": "14b9dc73272bc1b30ae6d0ddaea9a39c", + "x-ms-correlation-request-id": "1ac921db-e8bf-4fb7-bbe5-5e829e54288b", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "c89988ff-30c4-42a5-895c-6279e65357f8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070635Z:1ac921db-e8bf-4fb7-bbe5-5e829e54288b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c478dedaade082df4a2971f4015757e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:06: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": "8e860a1d-27d1-4527-bee6-c3423005bdb0", + "x-ms-client-request-id": "c478dedaade082df4a2971f4015757e5", + "x-ms-correlation-request-id": "b1cbb78a-e998-4f1b-8a69-3f384b67fa8c", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "50649a43-029a-460b-9fac-f9241800b25c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070636Z:b1cbb78a-e998-4f1b-8a69-3f384b67fa8c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "05c59e89c05a6a8739d83036d123bfbe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7061c551-c7cc-4f09-aebf-847cd3a55a69", + "x-ms-client-request-id": "05c59e89c05a6a8739d83036d123bfbe", + "x-ms-correlation-request-id": "13233396-1ba6-401a-924f-d25363eaa979", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "a3e602e4-5a01-4bdb-ba8f-3932eafa69a7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070637Z:13233396-1ba6-401a-924f-d25363eaa979" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "39d3643eb4aac68bfc36c902b5bec0b3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8e767c0e-0fdf-461e-848a-c63b0bf87984", + "x-ms-client-request-id": "39d3643eb4aac68bfc36c902b5bec0b3", + "x-ms-correlation-request-id": "f8511bfa-7fc8-4239-a68b-25fa4f7d247e", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "27db6eda-2a8b-4f68-894e-12c06f239f08", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070639Z:f8511bfa-7fc8-4239-a68b-25fa4f7d247e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c8509fa0-5834-4b41-aecd-273ee1b78620?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0f54eb8e9de31a41560d8a087ca9b127", + "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, 08 Sep 2021 07:06:39 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": "206c8799-add4-4679-ba93-f0989126e33c", + "x-ms-client-request-id": "0f54eb8e9de31a41560d8a087ca9b127", + "x-ms-correlation-request-id": "37dfc986-634e-494a-92c9-60852bbe85ae", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "3295df7d-58ca-4529-b14e-ffc9c6253f58", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070640Z:37dfc986-634e-494a-92c9-60852bbe85ae" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + } + ], + "Variables": { + "LOCATION": "westus2", + "RandomSeed": "1799176764", + "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/BastionHostContainerTests/GetAll.json b/sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/BastionHostContainerTests/GetAll.json new file mode 100644 index 0000000000000..3c5bab0ff8363 --- /dev/null +++ b/sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/BastionHostContainerTests/GetAll.json @@ -0,0 +1,18432 @@ +{ + "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-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a29562bb5a15ae90a453925fd12e7e83", + "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, 08 Sep 2021 07:06:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "9c871807-3580-4d14-acb2-9fe5c03c57a3", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "9c871807-3580-4d14-acb2-9fe5c03c57a3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070641Z:9c871807-3580-4d14-acb2-9fe5c03c57a3" + }, + "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/bastionrg-5755?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-7c6fcdd765ef9341ad3156413cb6ab15-2560b0132fecde48-00", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "88d89373902a9ba2afb1866a20bd22ea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "226", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:06:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5a865450-35f3-4293-bf21-b90606f3737d", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "5a865450-35f3-4293-bf21-b90606f3737d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070641Z:5a865450-35f3-4293-bf21-b90606f3737d" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755", + "name": "bastionrg-5755", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a0cdc4626f58c9d8281233c40eb1dacb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1246", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:06:40 GMT", + "ETag": "W/\u0022c06fb8d2-7b1d-4eec-b596-bebc5a8f4fa0\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": "f09d6b6d-f7dc-4803-bd7b-d90f397f1de0", + "x-ms-client-request-id": "a0cdc4626f58c9d8281233c40eb1dacb", + "x-ms-correlation-request-id": "9e6ed3d0-21ce-4578-b8b7-23f89a2e2b67", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "1ce8d9d9-c148-43a8-a132-ba5e6e0de4ef", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070641Z:9e6ed3d0-21ce-4578-b8b7-23f89a2e2b67" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022vnet-166\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022c06fb8d2-7b1d-4eec-b596-bebc5a8f4fa0\\\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: \u00229692cf54-c17f-418b-8261-5e5404984cd4\u0022,\r\n", + " \u0022addressSpace\u0022: {\r\n", + " \u0022addressPrefixes\u0022: [\r\n", + " \u002210.0.0.0/16\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022subnets\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022AzureBastionSubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166/subnets/AzureBastionSubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022c06fb8d2-7b1d-4eec-b596-bebc5a8f4fa0\\\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/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166/subnets/AzureBastionSubnet?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ea90cb25cc482b31c0faf264d4258ee6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "550", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:06:41 GMT", + "ETag": "W/\u0022c06fb8d2-7b1d-4eec-b596-bebc5a8f4fa0\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": "34e07a21-b0d9-453a-b818-a205293a8fc0", + "x-ms-client-request-id": "ea90cb25cc482b31c0faf264d4258ee6", + "x-ms-correlation-request-id": "00766f61-05dd-4fc2-bfae-e6fc0abf0f1f", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "e844dbfb-d034-4514-8993-c6c9418f4e6d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070641Z:00766f61-05dd-4fc2-bfae-e6fc0abf0f1f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022AzureBastionSubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166/subnets/AzureBastionSubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022c06fb8d2-7b1d-4eec-b596-bebc5a8f4fa0\\\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/bastionrg-5755/providers/Microsoft.Network/publicIPAddresses/ip-7939?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0cfca831de61042aba0e5f175cdd8dfd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "665", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:06:41 GMT", + "ETag": "W/\u0022cb9c1a6c-1034-4b78-963d-c196d9def9bc\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": "0c13f98a-1358-4803-9da2-42f259c8e1d5", + "x-ms-client-request-id": "0cfca831de61042aba0e5f175cdd8dfd", + "x-ms-correlation-request-id": "0eadb4e6-6048-41d9-be86-6a97280c44e2", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "d0218236-5103-43a0-a8d2-3a21fd73dcca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070642Z:0eadb4e6-6048-41d9-be86-6a97280c44e2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022ip-7939\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/publicIPAddresses/ip-7939\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022cb9c1a6c-1034-4b78-963d-c196d9def9bc\\\u0022\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022452cc13c-6c20-4dcf-9d83-4519820eb94f\u0022,\r\n", + " \u0022ipAddress\u0022: \u002252.151.15.185\u0022,\r\n", + " \u0022publicIPAddressVersion\u0022: \u0022IPv4\u0022,\r\n", + " \u0022publicIPAllocationMethod\u0022: \u0022Static\u0022,\r\n", + " \u0022idleTimeoutInMinutes\u0022: 4,\r\n", + " \u0022ipTags\u0022: []\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/publicIPAddresses\u0022,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Standard\u0022,\r\n", + " \u0022tier\u0022: \u0022Regional\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-7597?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "468", + "Content-Type": "application/json", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2d5444bba1379295a1e05e7c74f50384", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "id": null, + "properties": { + "ipConfigurations": [ + { + "name": "bastionIPConfig-9874", + "id": null, + "properties": { + "subnet": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166/subnets/AzureBastionSubnet" + }, + "publicIPAddress": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/publicIPAddresses/ip-7939" + } + } + } + ] + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "1455", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:06:47 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": "dff427b3-cdc3-4ae6-be3b-2f2bb5907983", + "x-ms-client-request-id": "2d5444bba1379295a1e05e7c74f50384", + "x-ms-correlation-request-id": "d0ee0263-366e-4bd6-9853-1a20f91dc0ab", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "bc928af2-b002-4e88-92ef-dc239273496a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070647Z:d0ee0263-366e-4bd6-9853-1a20f91dc0ab" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022bastion-7597\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-7597\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00224b2fb75d-75a4-4042-ad5b-ca5c14e22311\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022scaleUnits\u0022: 2,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022bastionIPConfig-9874\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-7597/bastionHostIpConfigurations/bastionIPConfig-9874\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00224b2fb75d-75a4-4042-ad5b-ca5c14e22311\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts/bastionHostIpConfigurations\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/bastionrg-5755/providers/Microsoft.Network/publicIPAddresses/ip-7939\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166/subnets/AzureBastionSubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022bastionShareableLinks\u0022: {}\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e0188df5b93906f9667abffecc884519", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:06:47 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": "2e631e21-81ce-406b-b4c3-486b228a9514", + "x-ms-client-request-id": "e0188df5b93906f9667abffecc884519", + "x-ms-correlation-request-id": "7a4424a7-2acf-4d73-b3db-c91ea4a45ceb", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "b67ade50-cb52-4bc5-a8ed-587c7ee4ba5a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070648Z:7a4424a7-2acf-4d73-b3db-c91ea4a45ceb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4a0e935c48275209fdb3a106672878d2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:06:48 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": "d2e1053a-7707-40bb-badf-e531c76f49e5", + "x-ms-client-request-id": "4a0e935c48275209fdb3a106672878d2", + "x-ms-correlation-request-id": "3f518a0d-94f3-4a6e-b18c-26bc7cd59dd5", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "3553ad1b-8f28-4eb0-8424-281c9dbb0fa0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070649Z:3f518a0d-94f3-4a6e-b18c-26bc7cd59dd5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e787f0fe22dd944a995f4e53aa48d403", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:06:50 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": "a53a1023-365c-4565-ab49-8a6d3b3a95ea", + "x-ms-client-request-id": "e787f0fe22dd944a995f4e53aa48d403", + "x-ms-correlation-request-id": "1d2afa01-b5a4-4a8b-80cd-5dc794610778", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "b457decf-7f13-4c66-b0bd-523d6b1ee2d1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070650Z:1d2afa01-b5a4-4a8b-80cd-5dc794610778" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "871020ea97c0ac4683c6e38518f29f3e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:06:51 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": "190244f5-398b-4fa0-a14b-44a65ba1d75a", + "x-ms-client-request-id": "871020ea97c0ac4683c6e38518f29f3e", + "x-ms-correlation-request-id": "1c889c30-3e4c-4cf3-9d27-9bf3406640e6", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "f4a31f8e-9b41-4d46-ab66-744477ed2614", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070652Z:1c889c30-3e4c-4cf3-9d27-9bf3406640e6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dc00ed015d013a3b487ab0c8f9b5a7b5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:06:52 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": "5a71e1e8-347a-4b90-9114-05fb6e9f0e64", + "x-ms-client-request-id": "dc00ed015d013a3b487ab0c8f9b5a7b5", + "x-ms-correlation-request-id": "b5c6a1fe-7ce8-4892-ac1b-4f2e5c68ca09", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "15817e85-9d88-47e3-8070-81206399bb77", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070653Z:b5c6a1fe-7ce8-4892-ac1b-4f2e5c68ca09" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "461c9ddff0176612aada63163ec47ca6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:06:54 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": "2eacb3eb-51c7-46d4-a3af-8ca42a497420", + "x-ms-client-request-id": "461c9ddff0176612aada63163ec47ca6", + "x-ms-correlation-request-id": "ccbcc172-310f-4548-8054-9063f28801a5", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "611a3ea4-263b-4ea4-8f7a-eece1f4cc399", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070654Z:ccbcc172-310f-4548-8054-9063f28801a5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bc5110bff8478c02e4d63e45e67eb3cd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:06:55 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": "449ffc00-d4c0-4aa7-80d9-1d41a8e809fd", + "x-ms-client-request-id": "bc5110bff8478c02e4d63e45e67eb3cd", + "x-ms-correlation-request-id": "ffb3f356-45c9-4ff6-ae13-02cb3a244ca2", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "3934ca54-91a0-4004-b23e-e65d4ada2a47", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070656Z:ffb3f356-45c9-4ff6-ae13-02cb3a244ca2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7aa62d1e58d61026da9a3126fa25fb83", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:06:56 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": "ed632d2b-a573-4b07-aade-8a3ba167af49", + "x-ms-client-request-id": "7aa62d1e58d61026da9a3126fa25fb83", + "x-ms-correlation-request-id": "1910057d-e692-4706-bc85-0eb3148320da", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "a2591678-0307-4f74-984c-66f9b54d8909", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070657Z:1910057d-e692-4706-bc85-0eb3148320da" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e8080afeeb64e76d9a8f6241b1cc7f2c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:06:58 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": "7b92a0f3-67f9-402e-b27a-aa72e109635d", + "x-ms-client-request-id": "e8080afeeb64e76d9a8f6241b1cc7f2c", + "x-ms-correlation-request-id": "c886d991-160c-4a0a-ad2f-756d3d8ed10e", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "21c5e6b0-581b-4f17-b46f-3898095062a1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070658Z:c886d991-160c-4a0a-ad2f-756d3d8ed10e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "10f89526011e67cfea40e2adc6db92bf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "963722ae-c19d-4088-81c0-d0e901c6c59e", + "x-ms-client-request-id": "10f89526011e67cfea40e2adc6db92bf", + "x-ms-correlation-request-id": "c8f10515-a5fc-45dd-9bed-ab99c4bcc3c6", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "aea17fa2-432c-4506-9628-58b909d00ca1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070700Z:c8f10515-a5fc-45dd-9bed-ab99c4bcc3c6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dc47bbdaca753369c0bfe046f6e45e0e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e2efd3ff-3da7-4d00-8e8d-4f2fd6787b53", + "x-ms-client-request-id": "dc47bbdaca753369c0bfe046f6e45e0e", + "x-ms-correlation-request-id": "d9fc545d-5ffc-44e4-930e-cf779e0e918a", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "44f15549-0ca8-4795-94e9-1e2749968858", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070701Z:d9fc545d-5ffc-44e4-930e-cf779e0e918a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6400051aea2cfc653aa0fd2308bf21be", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "c6108e33-432f-4850-bf20-0db431d804a8", + "x-ms-client-request-id": "6400051aea2cfc653aa0fd2308bf21be", + "x-ms-correlation-request-id": "b0ece3cd-19a4-4ecf-837e-faaca1880a02", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "f91a2b61-20ca-4932-be99-c518d43f6441", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070702Z:b0ece3cd-19a4-4ecf-837e-faaca1880a02" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f667a2fda2845bb62cc4505f21887106", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "254d5e35-dfcb-49a5-bda3-35fd2b0f8352", + "x-ms-client-request-id": "f667a2fda2845bb62cc4505f21887106", + "x-ms-correlation-request-id": "7d284450-4fcc-468a-a033-95a8b1ca28f7", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "a288dd89-9913-42ed-97ae-054e219cb5d3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070704Z:7d284450-4fcc-468a-a033-95a8b1ca28f7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c092d3e22edbef92564ba2d5cc462a01", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "3c496bd4-d964-4cde-9bae-4b3d125287b1", + "x-ms-client-request-id": "c092d3e22edbef92564ba2d5cc462a01", + "x-ms-correlation-request-id": "9b87d369-199f-4a7f-9146-cdc6043e3a2b", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "068d0a33-adaa-4ae6-babb-fbd0e23bbebb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070705Z:9b87d369-199f-4a7f-9146-cdc6043e3a2b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5349219d687c788a4fa438689a05dbb1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:07: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": "12fe87e6-b696-4297-af44-7a9be01c3eb8", + "x-ms-client-request-id": "5349219d687c788a4fa438689a05dbb1", + "x-ms-correlation-request-id": "dc9dce67-80f0-4ea8-8c26-e3d2ceb79771", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "c7331479-c60e-4d8d-84b3-ded0abddb3cb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070706Z:dc9dce67-80f0-4ea8-8c26-e3d2ceb79771" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3541f72e602ccee21077a03900e08ee5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "281ec30e-d59a-489a-891d-3613d6fd4064", + "x-ms-client-request-id": "3541f72e602ccee21077a03900e08ee5", + "x-ms-correlation-request-id": "91e736a1-73cb-49b8-b615-ea78c4bcf047", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "79f7cf99-bcdd-4ece-a153-1b0b308bf777", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070708Z:91e736a1-73cb-49b8-b615-ea78c4bcf047" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ffc14f9a1e3f7989491a7037f62a5550", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "4fdb7b52-3e26-4790-ba01-be72011b6904", + "x-ms-client-request-id": "ffc14f9a1e3f7989491a7037f62a5550", + "x-ms-correlation-request-id": "193a87d5-af79-42d9-addf-7d6344c4d20e", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "29771fad-aaf0-4824-b583-58ba20d8195e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070709Z:193a87d5-af79-42d9-addf-7d6344c4d20e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d5a6f16ff4053dd43e7b4304c751786e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:07: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": "759e6b89-d11a-4f12-a45b-57c6089c54ba", + "x-ms-client-request-id": "d5a6f16ff4053dd43e7b4304c751786e", + "x-ms-correlation-request-id": "c1edac0c-b9fa-4c3f-bc19-c96cdf349a2e", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "72b88f41-1ad3-48ff-a005-f28b367c358d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070710Z:c1edac0c-b9fa-4c3f-bc19-c96cdf349a2e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4bcd5215dc4410726dc7ec12efabd8e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "90a17414-06b5-45aa-ad27-d9304dbc351f", + "x-ms-client-request-id": "4bcd5215dc4410726dc7ec12efabd8e5", + "x-ms-correlation-request-id": "af3417e5-c82b-4a16-9f05-bc2b5fbb1d2d", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "2282f7eb-2cc4-4999-afea-c9d1688c97b2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070711Z:af3417e5-c82b-4a16-9f05-bc2b5fbb1d2d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0ec95022b939a5df7a84c0c4da84b1f7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "15366682-1987-431b-8378-3c2f869f2357", + "x-ms-client-request-id": "0ec95022b939a5df7a84c0c4da84b1f7", + "x-ms-correlation-request-id": "429a2868-1062-4b50-b0db-23aa4f518fbf", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "6220937f-5584-4c63-8325-7012799608d2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070713Z:429a2868-1062-4b50-b0db-23aa4f518fbf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a32102a20a5c930b7f96673e08c14d92", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:07: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": "06961d09-d81c-431d-a059-bb4a2a2a80b5", + "x-ms-client-request-id": "a32102a20a5c930b7f96673e08c14d92", + "x-ms-correlation-request-id": "55fee471-8f7f-4050-bca9-0f219ee4393f", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "d2886c97-f655-40d6-8576-d2e3c1a9aed6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070714Z:55fee471-8f7f-4050-bca9-0f219ee4393f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "77e25da369875c347328d0c01bae35e8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "f5b4695b-865c-46ac-8fc8-94dcb311d124", + "x-ms-client-request-id": "77e25da369875c347328d0c01bae35e8", + "x-ms-correlation-request-id": "a43ee24e-9b5a-4af7-b57c-ed52c21dae91", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "f358ff99-ea84-4f49-a5f1-13b60b8f009c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070715Z:a43ee24e-9b5a-4af7-b57c-ed52c21dae91" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ed70f415348a188944358fa351a19cb9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "905b91c0-3766-4e39-bbc7-bbb574556635", + "x-ms-client-request-id": "ed70f415348a188944358fa351a19cb9", + "x-ms-correlation-request-id": "30a230da-d1d1-466b-bd9a-86b8a25ccdf9", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "c90f2a5f-6dde-4d3f-b7c1-f492f7eda5e8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070717Z:30a230da-d1d1-466b-bd9a-86b8a25ccdf9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7d202d363aa2386fcdc43034394b78d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:07: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": "691234b0-b56a-465f-93c6-2cea04319f2b", + "x-ms-client-request-id": "7d202d363aa2386fcdc43034394b78d1", + "x-ms-correlation-request-id": "c9b5b77e-17ce-44c2-8143-b314f4a72653", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "0fef2c38-2c55-462c-ad67-f7d19ba89d41", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070718Z:c9b5b77e-17ce-44c2-8143-b314f4a72653" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "13287e605f516e08d4ca3352d9910ad1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:07: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": "7403929c-e20f-4a1b-892a-89e6ba9683cb", + "x-ms-client-request-id": "13287e605f516e08d4ca3352d9910ad1", + "x-ms-correlation-request-id": "c75a1b30-4828-4d74-97e1-e4961a3a5d30", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "4bbdac13-6317-4981-9a94-6f9ab0b159d9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070719Z:c75a1b30-4828-4d74-97e1-e4961a3a5d30" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ee89178bb88ddb46843720c50355def8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "d5de0a69-3328-47cd-afa7-4b83a9e74870", + "x-ms-client-request-id": "ee89178bb88ddb46843720c50355def8", + "x-ms-correlation-request-id": "2774c813-d6b9-487d-8395-2af6d047c863", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "17e9b797-da3a-45af-afb2-ff04b0bc3474", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070721Z:2774c813-d6b9-487d-8395-2af6d047c863" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d243bebd8978d76825b2a8d7061d5e3c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "96415f28-2018-4599-9464-d294edc5770d", + "x-ms-client-request-id": "d243bebd8978d76825b2a8d7061d5e3c", + "x-ms-correlation-request-id": "305dc954-2bb0-45b2-b17f-c89de2e47eeb", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "cd679afb-200e-4332-a836-bb49d920873f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070722Z:305dc954-2bb0-45b2-b17f-c89de2e47eeb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "22a85eba89c2a744384d8e193f426a7f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:07: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": "d3e3b2c1-5733-483a-a13b-b5dd46798c57", + "x-ms-client-request-id": "22a85eba89c2a744384d8e193f426a7f", + "x-ms-correlation-request-id": "df54a68f-44ac-4ffd-a68a-3666b2b5c581", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "eed55618-d701-46ac-a183-3285f7fc46ca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070723Z:df54a68f-44ac-4ffd-a68a-3666b2b5c581" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1b943aec374d0259afb1c9da0f6fd566", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "48133531-9f91-4fcc-ab31-a52429d290d9", + "x-ms-client-request-id": "1b943aec374d0259afb1c9da0f6fd566", + "x-ms-correlation-request-id": "30e7a119-ec29-4592-acef-bb8d52bf1ca4", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "2640cb32-fddc-41fa-8d1f-fa637cd9a7cd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070725Z:30e7a119-ec29-4592-acef-bb8d52bf1ca4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a40be4d9bbac33367a9b9a2bfa4e98e2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0e3d3859-2e41-459a-ae35-311d79a4ec5d", + "x-ms-client-request-id": "a40be4d9bbac33367a9b9a2bfa4e98e2", + "x-ms-correlation-request-id": "13bc55a0-9499-4530-85f3-6020a4abe3cb", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "75938733-2ce4-4692-b12e-78cedd69fb3b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070726Z:13bc55a0-9499-4530-85f3-6020a4abe3cb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cbeb2947438982ee05a67310c06998c8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b95cd4e5-16d1-4f96-a6b2-b556bbeeed57", + "x-ms-client-request-id": "cbeb2947438982ee05a67310c06998c8", + "x-ms-correlation-request-id": "fa72dcef-c8e4-4564-b453-691eeadd24e8", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "5ede5beb-3f7d-4e4f-ac94-66c372786fa2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070727Z:fa72dcef-c8e4-4564-b453-691eeadd24e8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5a402878c53730d30360a0b29c2d0760", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "939c93ea-a54f-44a1-b0b1-2562b1f6e8bc", + "x-ms-client-request-id": "5a402878c53730d30360a0b29c2d0760", + "x-ms-correlation-request-id": "99ef6c0c-62f6-40eb-9186-ce2f87afe3e4", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "84fbaf0a-6eec-46ab-90cf-00ace8588ad1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070729Z:99ef6c0c-62f6-40eb-9186-ce2f87afe3e4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e693e619098495ddf6899e0548267311", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "60652c24-212d-4b0f-953c-3df36f555405", + "x-ms-client-request-id": "e693e619098495ddf6899e0548267311", + "x-ms-correlation-request-id": "e784ffb6-7948-4caa-aee4-89ac7a5bfaad", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "fe414b1e-66dc-44ca-83b2-766423af8078", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070730Z:e784ffb6-7948-4caa-aee4-89ac7a5bfaad" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d2b3d2033d0e81ab56bac828a33be5d8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:07: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": "3be3222a-898b-4ab0-aae4-adc879b2b6fd", + "x-ms-client-request-id": "d2b3d2033d0e81ab56bac828a33be5d8", + "x-ms-correlation-request-id": "49f80e2b-8e0d-4663-bf32-bff85c418cff", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "309fdb8b-4544-4f1f-b1f1-bdb17eef8632", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070731Z:49f80e2b-8e0d-4663-bf32-bff85c418cff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "daf6129eb1d66f444aab64ad26cde8dd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "38f264fe-d04c-4e50-b0e7-96b39990f43b", + "x-ms-client-request-id": "daf6129eb1d66f444aab64ad26cde8dd", + "x-ms-correlation-request-id": "5c67e709-0aa0-4bdf-8cc4-dc43092d46e6", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "4c8bb91f-b937-46ec-9221-e3c36e1d820e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070733Z:5c67e709-0aa0-4bdf-8cc4-dc43092d46e6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "caaf8fed357adc513b1190c940b5f1ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "af5dc9d9-f4a7-4328-b78a-e29ffdb3fdd1", + "x-ms-client-request-id": "caaf8fed357adc513b1190c940b5f1ba", + "x-ms-correlation-request-id": "2aefaa2a-f02a-4ba2-b6cc-baefa2ec8155", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "50e2994c-c7a7-4e8a-8612-a9a6a05c86c8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070734Z:2aefaa2a-f02a-4ba2-b6cc-baefa2ec8155" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3567c6a39830513a8d448763d9fd5a89", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:07: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": "47d9dc81-87cf-4462-bc9f-2f3caaeb9e88", + "x-ms-client-request-id": "3567c6a39830513a8d448763d9fd5a89", + "x-ms-correlation-request-id": "210b1be7-210b-4224-84a4-6a54c34ec7cf", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "366a084c-75bc-41fa-a576-4b84e0e035a3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070735Z:210b1be7-210b-4224-84a4-6a54c34ec7cf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "133aead21a8c695ec01a9ec4217b2e95", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "d399fe04-0816-4cd9-ad63-36adc1199fd4", + "x-ms-client-request-id": "133aead21a8c695ec01a9ec4217b2e95", + "x-ms-correlation-request-id": "9f13b035-44d4-4c08-b4d8-8f67e19a7169", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "90abde47-1a5d-4bf7-ad70-324eb36ba737", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070737Z:9f13b035-44d4-4c08-b4d8-8f67e19a7169" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6009a9b9b26654ac545e3d35adee023d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7f3328cb-9a3a-4c8c-8dc0-2d4f718e100c", + "x-ms-client-request-id": "6009a9b9b26654ac545e3d35adee023d", + "x-ms-correlation-request-id": "5407fb4f-4804-4fd4-8b52-783f5dedb19f", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-request-id": "0b716083-6c4d-4f74-8579-ba4577dd0ee7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070738Z:5407fb4f-4804-4fd4-8b52-783f5dedb19f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "55f707b6de7a892e68fe7415fa752f12", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5de16588-6707-49b6-bcdd-ea349c09f597", + "x-ms-client-request-id": "55f707b6de7a892e68fe7415fa752f12", + "x-ms-correlation-request-id": "e0bfd31f-036b-41e5-9be1-36f33277bad9", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "ba2b80fa-7b7c-4c6c-8863-99c27832e559", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070740Z:e0bfd31f-036b-41e5-9be1-36f33277bad9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2faaf216faf31f223de6be2edd28bbd2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d6d4a838-7f6c-4759-a58e-116c843e747b", + "x-ms-client-request-id": "2faaf216faf31f223de6be2edd28bbd2", + "x-ms-correlation-request-id": "64dc1202-ad37-461b-8387-8a0b12682e16", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "650c4aeb-99f7-446a-9b55-aba1c271e251", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070741Z:64dc1202-ad37-461b-8387-8a0b12682e16" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1a0e6117d883da1a7b80f7673d975adf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "a68a2c4a-d520-450c-89dd-d0f02df2dfe0", + "x-ms-client-request-id": "1a0e6117d883da1a7b80f7673d975adf", + "x-ms-correlation-request-id": "13f9fae4-b270-4655-a783-c1301583a141", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "27d004da-6514-4da7-92e9-4889235d91e3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070742Z:13f9fae4-b270-4655-a783-c1301583a141" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ba1f2b2ed343bc49e4d717941fffab3f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4346acc0-8ada-4ffc-9893-31926d2469ba", + "x-ms-client-request-id": "ba1f2b2ed343bc49e4d717941fffab3f", + "x-ms-correlation-request-id": "4be6b131-486e-46d9-b89f-681bb9d95d24", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "167455b7-9266-49dd-b1df-4419af732985", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070744Z:4be6b131-486e-46d9-b89f-681bb9d95d24" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "98fea24214673d8ed8cfb47302bae2a6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "778a5e6b-51f1-48ac-9b3d-aa818335d4ba", + "x-ms-client-request-id": "98fea24214673d8ed8cfb47302bae2a6", + "x-ms-correlation-request-id": "b37ebbb7-cbda-4fde-b098-19c22dc2978e", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "fe7eb63c-4b65-4828-872b-201ee233be2a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070745Z:b37ebbb7-cbda-4fde-b098-19c22dc2978e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b2ffdf8b0008448e175236acc086bb7b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "5d92dd16-8c55-479f-85b3-bb01a3816f82", + "x-ms-client-request-id": "b2ffdf8b0008448e175236acc086bb7b", + "x-ms-correlation-request-id": "7048049c-c096-4be5-b97d-7f87009928d3", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "66e0677d-a6a7-4ac5-aac6-f6e49b1546a6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070746Z:7048049c-c096-4be5-b97d-7f87009928d3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9b25b8d4c19919779ce1e2731ed6b929", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6b9d3644-6dc9-4972-b11c-98e2851be80e", + "x-ms-client-request-id": "9b25b8d4c19919779ce1e2731ed6b929", + "x-ms-correlation-request-id": "e97fccfd-5826-4a50-8763-da6a6507f870", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "76f0132a-8ecb-45d7-804a-d158d59f2517", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070748Z:e97fccfd-5826-4a50-8763-da6a6507f870" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3f0871f4f900423713b98115dee17d52", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2add2496-ead8-4151-834a-dc62bdd7eac4", + "x-ms-client-request-id": "3f0871f4f900423713b98115dee17d52", + "x-ms-correlation-request-id": "7692d81a-f9fa-451a-a5c1-3b841fe9f9ba", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "ffc7f0c6-13a7-4c64-9208-65c6dbe086b3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070749Z:7692d81a-f9fa-451a-a5c1-3b841fe9f9ba" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4a9e38144795c90d68e515261d1b2540", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "27e4ab41-7382-487b-af4e-e42b94c39b47", + "x-ms-client-request-id": "4a9e38144795c90d68e515261d1b2540", + "x-ms-correlation-request-id": "b78ad777-49e4-4b96-93b6-4b53f0bbef5c", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "89f6cc33-3dba-4788-bb34-6d061f993d62", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070751Z:b78ad777-49e4-4b96-93b6-4b53f0bbef5c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4fb70d987c7ddb7b80e388df40623bbb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6d4bea29-8752-4f12-baab-b421fc9bead6", + "x-ms-client-request-id": "4fb70d987c7ddb7b80e388df40623bbb", + "x-ms-correlation-request-id": "e9b16d00-8087-4ca7-ae2e-606a7ba26a3a", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "7d1f0fc6-0357-40b1-82ac-1abc5a1dae9d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070752Z:e9b16d00-8087-4ca7-ae2e-606a7ba26a3a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e65f90646f38ad93633fd61ae41024f8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "42a2e667-08e0-4701-99e9-d5ae1d77c5b3", + "x-ms-client-request-id": "e65f90646f38ad93633fd61ae41024f8", + "x-ms-correlation-request-id": "f2cfbff5-ced6-47fc-9c3f-476405026fce", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "efeecc9f-241a-457a-ad11-b58b1bd197c1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070753Z:f2cfbff5-ced6-47fc-9c3f-476405026fce" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d07c40932e2a97d4bcc3c9b2be2d8905", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "416ffcc0-a0de-4deb-84bc-13bee495cbd5", + "x-ms-client-request-id": "d07c40932e2a97d4bcc3c9b2be2d8905", + "x-ms-correlation-request-id": "1b90b489-3a26-4740-ae57-b0fb624a509a", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "0d6553a4-d2a6-4e91-ad00-97f46949ddb1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070754Z:1b90b489-3a26-4740-ae57-b0fb624a509a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8dc25aaa3fbb28087a09eb3ea561f670", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:07: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": "cf82a4eb-febf-435c-a1cc-fb74d1b45216", + "x-ms-client-request-id": "8dc25aaa3fbb28087a09eb3ea561f670", + "x-ms-correlation-request-id": "1eb9d316-fd9b-42f0-b767-86bece73a584", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "e39ad3cf-fa81-40c5-b7be-e277cb79c488", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070756Z:1eb9d316-fd9b-42f0-b767-86bece73a584" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ff4c8fbe6be53590bbc72975a5e0ef36", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "da44d0ba-4c7e-446a-af9c-cb89d9e5b751", + "x-ms-client-request-id": "ff4c8fbe6be53590bbc72975a5e0ef36", + "x-ms-correlation-request-id": "6ad75aee-4efd-41ba-81f0-4c35b5d989d4", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "5f3b428a-cfc2-4439-8d1c-1fc39f72ec40", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070757Z:6ad75aee-4efd-41ba-81f0-4c35b5d989d4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8a70d1b5974d543c385356204396f25b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9590d11e-4e7f-4315-957b-39441c62c853", + "x-ms-client-request-id": "8a70d1b5974d543c385356204396f25b", + "x-ms-correlation-request-id": "c1a34ca7-2c72-4a2c-9231-b8802041277f", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "ae898ce7-b060-4d35-98cf-4c0fbb0301b8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070758Z:c1a34ca7-2c72-4a2c-9231-b8802041277f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2ef359cc8ae13e20c98cd1f315938399", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "17dc24c3-efd3-4cf9-ab69-95abc92c4abd", + "x-ms-client-request-id": "2ef359cc8ae13e20c98cd1f315938399", + "x-ms-correlation-request-id": "a921f13c-966f-486d-9603-32b07b05d8ab", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "fe6d9b35-8471-4749-8c72-7932852a21c6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070800Z:a921f13c-966f-486d-9603-32b07b05d8ab" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d489b51a6cf1272253f7c7911570f225", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b9a31601-7255-4e29-8bea-50c4738a017b", + "x-ms-client-request-id": "d489b51a6cf1272253f7c7911570f225", + "x-ms-correlation-request-id": "47c013f9-d266-4252-978f-43821792672b", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "c5ee6f6d-864b-4f0b-abee-1be33176e9c2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070801Z:47c013f9-d266-4252-978f-43821792672b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4ca9ced5c0ec2a54b031c0c0c6493fa5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "10e6a78f-c2ce-40ae-bc3d-535b08f6826d", + "x-ms-client-request-id": "4ca9ced5c0ec2a54b031c0c0c6493fa5", + "x-ms-correlation-request-id": "d4976b61-da61-4ddd-aba4-125fa31c59ba", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "f508a435-6664-4580-ac6a-163453b110ae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070802Z:d4976b61-da61-4ddd-aba4-125fa31c59ba" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8d05bcd01e0d5f6a36ccdbe9c38e2958", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9b5c20f1-ab84-45ac-8f8d-b12cd1b06c4d", + "x-ms-client-request-id": "8d05bcd01e0d5f6a36ccdbe9c38e2958", + "x-ms-correlation-request-id": "1c7f889a-b883-4ec4-a0b6-de71247715a5", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "d80d1d3f-8880-4068-bd21-a4cc56742ae3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070804Z:1c7f889a-b883-4ec4-a0b6-de71247715a5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "461eab9a36e95aac605e23bfab616109", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:08: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": "235eb8ca-795e-4628-90fd-9c66f219c1cc", + "x-ms-client-request-id": "461eab9a36e95aac605e23bfab616109", + "x-ms-correlation-request-id": "710d91f6-161e-4829-a244-9b047505e509", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "8a2ad460-9ec4-4426-a9a3-b2123d72b737", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070805Z:710d91f6-161e-4829-a244-9b047505e509" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "58c022b8656ab61764491620e46b6721", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b1becc80-46a1-4e37-80b2-d316753816cb", + "x-ms-client-request-id": "58c022b8656ab61764491620e46b6721", + "x-ms-correlation-request-id": "91314b26-c48d-47ae-bd59-2ffd24b2c441", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "27688db6-3fdf-4812-863c-b07e9686252a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070806Z:91314b26-c48d-47ae-bd59-2ffd24b2c441" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1a266707f82b9abb10ab2daffaaab3d4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "419d178a-a965-4c25-9167-65c0a6b431b9", + "x-ms-client-request-id": "1a266707f82b9abb10ab2daffaaab3d4", + "x-ms-correlation-request-id": "a27756ae-86b6-4fdc-9157-86a465d84b17", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "80fbb3ab-b184-4d11-a4a9-1f8b4cf844f0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070808Z:a27756ae-86b6-4fdc-9157-86a465d84b17" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a031d26bd1ce34ee9467e2a01f8c75f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "7c5c1d6c-5e75-4593-b2f0-d4a5ce1bd17b", + "x-ms-client-request-id": "a031d26bd1ce34ee9467e2a01f8c75f5", + "x-ms-correlation-request-id": "6653487e-8463-44bf-b532-0016d8e59c82", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "52dd0ddd-4052-4b8d-806c-632d5586f0c8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070809Z:6653487e-8463-44bf-b532-0016d8e59c82" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "43b701f6463bc0de672547be3868bcb9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7b241314-ae70-4646-8776-12996f78ccfc", + "x-ms-client-request-id": "43b701f6463bc0de672547be3868bcb9", + "x-ms-correlation-request-id": "25706146-8948-4da0-aaf2-e694deba35e8", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "ac9c7c11-a418-4a1c-af48-1a9e59d73c2c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070810Z:25706146-8948-4da0-aaf2-e694deba35e8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "12b44295c63a365379f186c4151a7a84", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "31eb3260-a795-455a-bfb0-493d6fb2ab81", + "x-ms-client-request-id": "12b44295c63a365379f186c4151a7a84", + "x-ms-correlation-request-id": "90e768fb-eeec-4674-8f59-10fd19974481", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "a26d7efd-cbfe-4c35-b992-dc51d276c178", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070812Z:90e768fb-eeec-4674-8f59-10fd19974481" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f8b837356ff22499f37039a8892ffc2b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a384dbec-4156-4ad5-8390-9fca1e973789", + "x-ms-client-request-id": "f8b837356ff22499f37039a8892ffc2b", + "x-ms-correlation-request-id": "cb03666d-0dd6-4f18-b2ae-10d4d42fdbe0", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "1dc8dd0a-0e11-432e-8496-7374cdd35044", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070813Z:cb03666d-0dd6-4f18-b2ae-10d4d42fdbe0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dd0a28aa63d730bbae81ca49c01aaa4c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:08: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": "e781b087-80ac-4ce9-8174-ca228c115098", + "x-ms-client-request-id": "dd0a28aa63d730bbae81ca49c01aaa4c", + "x-ms-correlation-request-id": "68044721-9647-4777-8f11-3d509a4bd6d0", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "6aef7f0d-f261-4b7c-9a43-4e68a18d682d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070814Z:68044721-9647-4777-8f11-3d509a4bd6d0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0089c3aac3b025c7a8901ec98caaac49", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "24621317-7199-4b43-84c2-c7da8880b6fa", + "x-ms-client-request-id": "0089c3aac3b025c7a8901ec98caaac49", + "x-ms-correlation-request-id": "6bff39ff-8cda-4ef2-bd72-a908f0bc583c", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "516110b1-811d-4f44-a9f5-6f9060dd0901", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070816Z:6bff39ff-8cda-4ef2-bd72-a908f0bc583c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ed195af49d10d1ac7c884a71a55064d9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "eee4c58d-8c57-4e12-9766-1adacdc57667", + "x-ms-client-request-id": "ed195af49d10d1ac7c884a71a55064d9", + "x-ms-correlation-request-id": "33d11d86-1977-4354-b08d-77cbdc291012", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "0fcc0275-5ed3-4470-bf4c-9f6351effcf3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070817Z:33d11d86-1977-4354-b08d-77cbdc291012" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c6fdedc6fca6e77b61e4354744f2a303", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "4640fac7-35b8-4cc2-b57c-5e10bdeb860f", + "x-ms-client-request-id": "c6fdedc6fca6e77b61e4354744f2a303", + "x-ms-correlation-request-id": "927e7a66-853a-4f9d-8327-9e0f75b02f9f", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "fa8c62f5-1fef-4666-9dea-4bc205e7ec04", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070818Z:927e7a66-853a-4f9d-8327-9e0f75b02f9f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "655480d4bd010d3b17b7842778568058", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "82e14e2d-7c2a-4c30-84f1-b9f23aeb36a5", + "x-ms-client-request-id": "655480d4bd010d3b17b7842778568058", + "x-ms-correlation-request-id": "2b7df88e-42d3-47d7-b802-d5dd87fc6681", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "73763cb8-d6f1-432d-9029-1d03c1e5f10c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070820Z:2b7df88e-42d3-47d7-b802-d5dd87fc6681" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9f02452be6adf8a3df318b2b68658d8a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3992384c-5508-45b7-a89d-fbe8ede84132", + "x-ms-client-request-id": "9f02452be6adf8a3df318b2b68658d8a", + "x-ms-correlation-request-id": "2fc027b8-9842-487b-bf59-a5842f48ce16", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "0a8cc87e-97f2-4ecb-ba3b-80f4c604caf3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070821Z:2fc027b8-9842-487b-bf59-a5842f48ce16" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "249c46e5fefc09d7b1f0aeee78536e0a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7f1c1091-d3f7-42c1-a408-3e2400784fd9", + "x-ms-client-request-id": "249c46e5fefc09d7b1f0aeee78536e0a", + "x-ms-correlation-request-id": "9a9303b1-fc09-451c-a23c-255392a008ce", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "04233cb8-f06f-4215-991f-8f18357627db", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070822Z:9a9303b1-fc09-451c-a23c-255392a008ce" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ff1bdc6404efed56dc5b86cf3110a5b1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:08: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": "1f201ae1-a8f6-41fc-bf0c-bb9e1a70961b", + "x-ms-client-request-id": "ff1bdc6404efed56dc5b86cf3110a5b1", + "x-ms-correlation-request-id": "2da982ae-c260-4ef0-8efd-da8fc5dc7fef", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "73b18dbf-fed6-43e7-9fb6-4b073d84d2ea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070824Z:2da982ae-c260-4ef0-8efd-da8fc5dc7fef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3142fa2a5bb92d5c6df9edbd37b4808b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "06fb0ee9-0df3-443b-a5bb-d0907f9dc5cc", + "x-ms-client-request-id": "3142fa2a5bb92d5c6df9edbd37b4808b", + "x-ms-correlation-request-id": "00ce54fa-2687-44c5-9a7a-a813b407fe1e", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "fecc2095-f28d-4a8c-ad66-48d4f585eedf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070825Z:00ce54fa-2687-44c5-9a7a-a813b407fe1e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8bc780c28e49e09af0ae47a07807d7a1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1899035c-d4e7-4b26-b7a9-e8b85a1037b2", + "x-ms-client-request-id": "8bc780c28e49e09af0ae47a07807d7a1", + "x-ms-correlation-request-id": "899f12ca-e592-4531-a8c5-47fd5e85adb0", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "41dc30c1-df8c-40ed-acd4-059ccf966748", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070826Z:899f12ca-e592-4531-a8c5-47fd5e85adb0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7dc4fd4a3c11085180ee91f51699b628", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:08: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": "ef3baeb8-03a3-4fab-a5d0-9932cbeb53f3", + "x-ms-client-request-id": "7dc4fd4a3c11085180ee91f51699b628", + "x-ms-correlation-request-id": "ec7deeb0-9873-4462-96b6-a3fbc91df6dc", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "3c1fbf8e-ea93-4498-bbf7-76af51ec4192", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070827Z:ec7deeb0-9873-4462-96b6-a3fbc91df6dc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b00dfbdb1a489c685f61410a13bbb466", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "acd04a88-92ce-4071-af88-ccf7491e9d51", + "x-ms-client-request-id": "b00dfbdb1a489c685f61410a13bbb466", + "x-ms-correlation-request-id": "eac98a6e-966d-4896-8b64-a1ff49c7f20a", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "928e846a-7540-4a75-b4cf-4d37651320c2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070829Z:eac98a6e-966d-4896-8b64-a1ff49c7f20a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3a724c2202f085792fbe0a5afca5ca57", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "eaed4ea1-8286-4c86-8d58-bbde2f5186dd", + "x-ms-client-request-id": "3a724c2202f085792fbe0a5afca5ca57", + "x-ms-correlation-request-id": "1f30e2eb-5a55-450f-a27c-f4fca26859b0", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "44e1bc69-3017-46f0-aaf1-15ce58e5a78b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070830Z:1f30e2eb-5a55-450f-a27c-f4fca26859b0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7dc51ff826fa305894281eaffb46f5c4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "baa299f1-57e7-47bb-bfff-1a8bacc30c7f", + "x-ms-client-request-id": "7dc51ff826fa305894281eaffb46f5c4", + "x-ms-correlation-request-id": "bfaa433e-0035-4a7f-b97f-76f082aed298", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "9ebd55ca-64a5-4f16-a739-cbfeb9db0911", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070831Z:bfaa433e-0035-4a7f-b97f-76f082aed298" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cad32b3a7b26d837818780890f0e9fba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e69f77df-f72e-4149-adca-bb80dbf19924", + "x-ms-client-request-id": "cad32b3a7b26d837818780890f0e9fba", + "x-ms-correlation-request-id": "c71bd221-40da-462e-8a8c-5cf02209b43a", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "bb646049-5952-4a54-940a-fc72714efd1f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070833Z:c71bd221-40da-462e-8a8c-5cf02209b43a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f312ea9737f6fb6bf342a6c8e4c98ae9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "baddeffe-b64a-455a-9c18-06340478337d", + "x-ms-client-request-id": "f312ea9737f6fb6bf342a6c8e4c98ae9", + "x-ms-correlation-request-id": "a03486dd-d3b2-4faa-9152-a2b89fcea7a8", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "4eff3cc2-f65d-4562-95e4-93623576c391", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070834Z:a03486dd-d3b2-4faa-9152-a2b89fcea7a8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d12046c9ffd17d30e8ecfb73a6ce2185", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "533b5d73-9593-4961-b0e7-b05f2eea8389", + "x-ms-client-request-id": "d12046c9ffd17d30e8ecfb73a6ce2185", + "x-ms-correlation-request-id": "04407032-f1c4-4138-9dd6-9c3bdccf07c6", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "92699c19-cd8c-4861-bae4-05a26443d483", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070836Z:04407032-f1c4-4138-9dd6-9c3bdccf07c6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "10186388013402cebfd8d6e4d46ff3b7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "136fed99-2c95-4f2b-9a5e-ef9abb4cc019", + "x-ms-client-request-id": "10186388013402cebfd8d6e4d46ff3b7", + "x-ms-correlation-request-id": "f4de6be7-9b06-403d-8b22-1fdcbcb09b6e", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "a6ecec47-7909-4348-86b0-9c662808fc04", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070837Z:f4de6be7-9b06-403d-8b22-1fdcbcb09b6e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c9bf97fccded97e8b9940b093bf75524", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2eb819be-72d5-4525-97b6-7592f2f45b31", + "x-ms-client-request-id": "c9bf97fccded97e8b9940b093bf75524", + "x-ms-correlation-request-id": "2930dc8b-138c-4a98-84b9-4816dd3eed66", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "4b7d58a2-cb67-41f2-a9d6-e4c66fabfe12", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070838Z:2930dc8b-138c-4a98-84b9-4816dd3eed66" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "803f202179b1c8b5781e11f9284ca879", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "cba4ee18-22d2-4d2a-8378-c81690a85d6e", + "x-ms-client-request-id": "803f202179b1c8b5781e11f9284ca879", + "x-ms-correlation-request-id": "032ef60a-821f-4c07-bcc2-6891de8ae1d6", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "fda0dc82-e97c-4ea8-87a0-5e2e21f8da9a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070839Z:032ef60a-821f-4c07-bcc2-6891de8ae1d6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0e7644f8570ebb987a80579ff6c4c6c8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:08: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": "c1a46b91-6e33-4510-a9e5-8a695ba97581", + "x-ms-client-request-id": "0e7644f8570ebb987a80579ff6c4c6c8", + "x-ms-correlation-request-id": "3e13683e-70f6-487b-a68e-1866baf4085e", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "85dbd636-842c-49ab-a1c1-ef5d8797ba2c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070841Z:3e13683e-70f6-487b-a68e-1866baf4085e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b4c3b182722f8305e2f751cfbbef6f6d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "93f0bb5e-030e-412a-bd85-07e1ddb4d538", + "x-ms-client-request-id": "b4c3b182722f8305e2f751cfbbef6f6d", + "x-ms-correlation-request-id": "2ea59f19-1300-4189-8df4-fc905022889b", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "7e88dcfb-6a24-4736-b378-4b571035d762", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070842Z:2ea59f19-1300-4189-8df4-fc905022889b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f71092eb4681c916888306312215d2b3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "be011ee7-d8d3-4bb3-b7de-49a072119be0", + "x-ms-client-request-id": "f71092eb4681c916888306312215d2b3", + "x-ms-correlation-request-id": "40c3750b-6b52-42cf-bae4-36b11d56d417", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "b22bf825-72b7-4c95-baf6-7897371c9d55", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070843Z:40c3750b-6b52-42cf-bae4-36b11d56d417" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "76764957f48885493ef32c1706c8ff8b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9798e061-c1f6-4dbc-9ed3-9e6e3ef8c40b", + "x-ms-client-request-id": "76764957f48885493ef32c1706c8ff8b", + "x-ms-correlation-request-id": "4923da3d-9f02-4710-8533-7e79a6920cc5", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "903e1d85-46df-4ee5-8b05-c71ff3ed698b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070845Z:4923da3d-9f02-4710-8533-7e79a6920cc5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "64b3e911ceb33c469bf92bac6cd460cc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:08: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": "bf758bab-771d-4805-99d3-08d1564a7a99", + "x-ms-client-request-id": "64b3e911ceb33c469bf92bac6cd460cc", + "x-ms-correlation-request-id": "c7a2556d-b086-4020-9ec7-271d616f3489", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "72535ee0-bb3e-4c1a-90d1-d6d9132bb3a1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070846Z:c7a2556d-b086-4020-9ec7-271d616f3489" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "71789d25f878f7e4498bb88d1affc2c0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "04f8f347-4b3b-4148-b99e-ed9e870a2084", + "x-ms-client-request-id": "71789d25f878f7e4498bb88d1affc2c0", + "x-ms-correlation-request-id": "c6ad3873-11ef-4fcb-886c-cb8dd5c90d03", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "4c984e9f-227d-419d-be78-76c57362114e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070847Z:c6ad3873-11ef-4fcb-886c-cb8dd5c90d03" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "39207a846e628800023adb8ec89d196a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "381a0dc5-82ff-488b-8a8e-d6d3760cf5a9", + "x-ms-client-request-id": "39207a846e628800023adb8ec89d196a", + "x-ms-correlation-request-id": "3e5fb97b-5987-4924-97c7-be3c3280090f", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "9cb9413e-2385-4385-bbdd-577210d100a4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070848Z:3e5fb97b-5987-4924-97c7-be3c3280090f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "69f260928d50181304bb1a2816b9219c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4325fa6d-59e0-48f4-8d7c-92c8c35efb8d", + "x-ms-client-request-id": "69f260928d50181304bb1a2816b9219c", + "x-ms-correlation-request-id": "d25fec60-7b55-44c3-a00c-da0d6800ff88", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "3b17b86b-edc3-407e-a37e-669c3abb7062", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070850Z:d25fec60-7b55-44c3-a00c-da0d6800ff88" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f1276b3727b4b6699cef6e3d1d562eac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "eeab0017-5395-45d2-b5f2-893bcaecbf0c", + "x-ms-client-request-id": "f1276b3727b4b6699cef6e3d1d562eac", + "x-ms-correlation-request-id": "202716b7-87d8-48a7-96dc-09dc9d695fb8", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "7d6efbef-b945-4a0d-b41c-3cde314b3a7f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070851Z:202716b7-87d8-48a7-96dc-09dc9d695fb8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bafa4e71580df670670734a653d87249", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "cf833a59-ea9b-4af8-b1a9-f8dd6d126708", + "x-ms-client-request-id": "bafa4e71580df670670734a653d87249", + "x-ms-correlation-request-id": "bfa903ee-87a2-42c9-963d-1a6df453e2e4", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "bc275db3-ff4e-4dd5-900c-31ccd1b4b72f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070852Z:bfa903ee-87a2-42c9-963d-1a6df453e2e4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5c573e1927756bb5f63bcc601ed5fbae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "657110ec-7c49-4ac4-bf7b-8c0f2bcd16b1", + "x-ms-client-request-id": "5c573e1927756bb5f63bcc601ed5fbae", + "x-ms-correlation-request-id": "cc98f879-ee7e-4567-af29-8c98319bdc8c", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "5f5c8bf0-7e90-4721-a9e2-eb430040ad11", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070853Z:cc98f879-ee7e-4567-af29-8c98319bdc8c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c7b66e8c67bede8ffb318aadf2c363c4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:08: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": "ecf3fd2b-e30a-49d6-9d37-5ac9e60acad1", + "x-ms-client-request-id": "c7b66e8c67bede8ffb318aadf2c363c4", + "x-ms-correlation-request-id": "a1cf8382-d158-4a91-9199-6b4c3327e3d3", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "64329e20-97f9-43b8-a9fa-893f773afa88", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070855Z:a1cf8382-d158-4a91-9199-6b4c3327e3d3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "de24257cd2fe4a36988fc4d18c0fd792", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b001dc8e-d658-4486-9460-4ccbb58c9174", + "x-ms-client-request-id": "de24257cd2fe4a36988fc4d18c0fd792", + "x-ms-correlation-request-id": "73b6f499-c722-448d-af41-7959d8b78b7a", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-request-id": "3c9e1692-51bc-439e-91f3-e650c50a2267", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070856Z:73b6f499-c722-448d-af41-7959d8b78b7a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e419860cab21b18aaf7861439d087833", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9443884c-772c-4fad-a016-a265ebd3c0e3", + "x-ms-client-request-id": "e419860cab21b18aaf7861439d087833", + "x-ms-correlation-request-id": "c708a1ec-0037-4afc-9191-59e6edefcfc8", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "b57c3860-dd25-4bcf-92a6-8b332b06cfca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070857Z:c708a1ec-0037-4afc-9191-59e6edefcfc8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f9e407d71cb0baaf386b2e2fa2bd52ec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ea0c69c7-6ab5-4b85-b721-38e78d88cd18", + "x-ms-client-request-id": "f9e407d71cb0baaf386b2e2fa2bd52ec", + "x-ms-correlation-request-id": "bd9a9357-3a8c-4543-a574-d0d00e7d103d", + "x-ms-ratelimit-remaining-subscription-reads": "11788", + "x-ms-request-id": "cb1ef97c-2c8d-4d66-840e-95fac24d4140", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070859Z:bd9a9357-3a8c-4543-a574-d0d00e7d103d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6ba1f75a7fa9d1a39a722f8671f2ad90", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9fb2c659-5012-42a1-a421-779ca4adc484", + "x-ms-client-request-id": "6ba1f75a7fa9d1a39a722f8671f2ad90", + "x-ms-correlation-request-id": "2afaebcb-31d0-47c2-aecd-9d02abbf1899", + "x-ms-ratelimit-remaining-subscription-reads": "11787", + "x-ms-request-id": "6518dabe-81fe-4cdc-ab89-7425efea9ec5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070900Z:2afaebcb-31d0-47c2-aecd-9d02abbf1899" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "84fa9116dd2aefe1d75eacb67c5b0ff1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7e793cc4-9410-4075-8a36-c988bcfc079e", + "x-ms-client-request-id": "84fa9116dd2aefe1d75eacb67c5b0ff1", + "x-ms-correlation-request-id": "3639b77f-f397-4d98-97da-613cd8337e41", + "x-ms-ratelimit-remaining-subscription-reads": "11786", + "x-ms-request-id": "ae82bfba-d46a-47d8-9cec-d49d7699e7bc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070901Z:3639b77f-f397-4d98-97da-613cd8337e41" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a5e974260c67588964135f3eec294945", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5c0ef1e8-a082-4894-8106-ca92efab9d08", + "x-ms-client-request-id": "a5e974260c67588964135f3eec294945", + "x-ms-correlation-request-id": "76d5d467-0d96-4955-91b0-3b5f71d7239d", + "x-ms-ratelimit-remaining-subscription-reads": "11785", + "x-ms-request-id": "228bd71a-991a-41c6-b786-ef6ec4e7dc37", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070902Z:76d5d467-0d96-4955-91b0-3b5f71d7239d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "11189ebecdc37cc215b1944ad2ec543e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "bf6d000d-6a74-4801-898e-9d1e3faf1a4c", + "x-ms-client-request-id": "11189ebecdc37cc215b1944ad2ec543e", + "x-ms-correlation-request-id": "1ba77c74-9aa0-4238-96fd-48a4ff307396", + "x-ms-ratelimit-remaining-subscription-reads": "11784", + "x-ms-request-id": "696239a3-2021-4662-ba4d-ce397805c4bd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070904Z:1ba77c74-9aa0-4238-96fd-48a4ff307396" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fc5f3e630809092807a120177ea303ad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "22159187-a889-4d86-bbbc-d98e4a76e658", + "x-ms-client-request-id": "fc5f3e630809092807a120177ea303ad", + "x-ms-correlation-request-id": "8e934db4-faee-4aad-81e4-3dd238138d48", + "x-ms-ratelimit-remaining-subscription-reads": "11783", + "x-ms-request-id": "5d1cc54c-276b-4bf0-ab63-700f1ea4e2bf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070905Z:8e934db4-faee-4aad-81e4-3dd238138d48" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ddf86615fd43592db26d8fb6773e8577", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4e3cf0ce-8e23-4a3b-a243-d028bcf7e8ec", + "x-ms-client-request-id": "ddf86615fd43592db26d8fb6773e8577", + "x-ms-correlation-request-id": "219895eb-0fb6-46b8-843c-b37ba4b11c02", + "x-ms-ratelimit-remaining-subscription-reads": "11782", + "x-ms-request-id": "c7194a0d-5e05-4a83-8859-b7d29e63bfdd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070906Z:219895eb-0fb6-46b8-843c-b37ba4b11c02" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "adda20be4cc9b63c760e0a22adaafd72", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1d6f24a8-70c6-440e-a057-fa158858cc35", + "x-ms-client-request-id": "adda20be4cc9b63c760e0a22adaafd72", + "x-ms-correlation-request-id": "79d988ec-573a-4a5a-8d34-89907b00486c", + "x-ms-ratelimit-remaining-subscription-reads": "11781", + "x-ms-request-id": "12f5e46e-a208-42d6-b4e0-27c8a4bcfe14", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070907Z:79d988ec-573a-4a5a-8d34-89907b00486c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6c35e7ad76f466fb10064a9b787191c8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:09: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": "36ce4578-6e18-455c-bc67-e90147a95649", + "x-ms-client-request-id": "6c35e7ad76f466fb10064a9b787191c8", + "x-ms-correlation-request-id": "5aaf026c-1bc1-4aeb-a032-a44aad619aea", + "x-ms-ratelimit-remaining-subscription-reads": "11780", + "x-ms-request-id": "d086cce8-ad2e-4236-bfba-865dd816fbeb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070909Z:5aaf026c-1bc1-4aeb-a032-a44aad619aea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5e58a81b55c9c8e32a426734f30bab07", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "29c03c85-1903-4195-a678-2c71924edc45", + "x-ms-client-request-id": "5e58a81b55c9c8e32a426734f30bab07", + "x-ms-correlation-request-id": "f3a95e59-8c38-4b98-b81e-2bf150e21f08", + "x-ms-ratelimit-remaining-subscription-reads": "11779", + "x-ms-request-id": "495a06c2-c28a-4ab5-88b2-8477e10cfcb8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070910Z:f3a95e59-8c38-4b98-b81e-2bf150e21f08" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "90091d6f1909478324749cc302a03d04", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "35acbcde-bc9e-4fac-8458-633610056f8a", + "x-ms-client-request-id": "90091d6f1909478324749cc302a03d04", + "x-ms-correlation-request-id": "29b12e61-0975-4cf9-820a-a7ebff06df53", + "x-ms-ratelimit-remaining-subscription-reads": "11778", + "x-ms-request-id": "701512de-e42a-4a76-963c-bcd1e2dd8df8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070911Z:29b12e61-0975-4cf9-820a-a7ebff06df53" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0506417c9f5257a9036c41b20fc77305", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:09: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": "aa2bba3d-ae7b-41f5-b46c-4a0efe0e4861", + "x-ms-client-request-id": "0506417c9f5257a9036c41b20fc77305", + "x-ms-correlation-request-id": "16916be1-fc4d-4500-9a74-a3980083e62d", + "x-ms-ratelimit-remaining-subscription-reads": "11777", + "x-ms-request-id": "0fcd9968-4a72-41e6-a025-30611a3e0d42", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070913Z:16916be1-fc4d-4500-9a74-a3980083e62d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5b2c425a006801bf25103954b920c68a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8a8fc9fd-7e34-459a-acc0-c9c5ec3785ad", + "x-ms-client-request-id": "5b2c425a006801bf25103954b920c68a", + "x-ms-correlation-request-id": "a677c070-75f7-4857-b434-cf80a3e322ac", + "x-ms-ratelimit-remaining-subscription-reads": "11776", + "x-ms-request-id": "ddf463d9-42ce-4899-9e82-d9c1f1b5f9dc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070914Z:a677c070-75f7-4857-b434-cf80a3e322ac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b1b76304a604d0b573b18d9cd8d0385d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a967e998-786d-4d46-ae5b-653e44e5c19c", + "x-ms-client-request-id": "b1b76304a604d0b573b18d9cd8d0385d", + "x-ms-correlation-request-id": "271aac45-d111-44cb-9418-8448ffe1de56", + "x-ms-ratelimit-remaining-subscription-reads": "11775", + "x-ms-request-id": "db406cad-59c4-4405-be01-783bf074d6cc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070915Z:271aac45-d111-44cb-9418-8448ffe1de56" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bf689701e1747c9b8204e04165549ee2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "52702c1a-8071-4336-a603-cd10c55403cd", + "x-ms-client-request-id": "bf689701e1747c9b8204e04165549ee2", + "x-ms-correlation-request-id": "1973ddc4-a76f-4b81-b51f-d7f12ff418d3", + "x-ms-ratelimit-remaining-subscription-reads": "11774", + "x-ms-request-id": "77f033e8-0e9d-49fa-abf8-bf6b076f80db", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070917Z:1973ddc4-a76f-4b81-b51f-d7f12ff418d3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "acaeb7a6c110b4018d5be7b773222954", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f9ac75c5-b863-40c0-8fce-e553a0d72d02", + "x-ms-client-request-id": "acaeb7a6c110b4018d5be7b773222954", + "x-ms-correlation-request-id": "cb959878-2a71-4074-8e6f-423d201493ea", + "x-ms-ratelimit-remaining-subscription-reads": "11773", + "x-ms-request-id": "a2639e67-4bf3-4fdf-be57-2d3b0ea2ebf4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070918Z:cb959878-2a71-4074-8e6f-423d201493ea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2153dcd806b72216c73b2fffc6746a1f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7f7f1aa0-4eac-42a7-b3b7-ff163e58ba34", + "x-ms-client-request-id": "2153dcd806b72216c73b2fffc6746a1f", + "x-ms-correlation-request-id": "2cad0034-199a-4075-8b67-298e6bd34285", + "x-ms-ratelimit-remaining-subscription-reads": "11772", + "x-ms-request-id": "344ae5aa-ea79-41a8-83eb-810ad2f4ffa8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070919Z:2cad0034-199a-4075-8b67-298e6bd34285" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "20f6ab128b22404c95b43218fae3085f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d2a6d034-9e3c-42b5-8a0a-c330f9b595d6", + "x-ms-client-request-id": "20f6ab128b22404c95b43218fae3085f", + "x-ms-correlation-request-id": "5419778d-47ce-460d-9137-61406ebfdbb1", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "45f1c1cb-b4b5-4604-9c26-5daeb5850c06", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070921Z:5419778d-47ce-460d-9137-61406ebfdbb1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "89688bdb7c009f2aa18be4d59101ee19", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ce17b3fe-0245-4bfa-9cba-0d573a0a48bb", + "x-ms-client-request-id": "89688bdb7c009f2aa18be4d59101ee19", + "x-ms-correlation-request-id": "ff426f14-d260-4b3f-8db4-2bd8268d772d", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "4d55ee50-94cc-4e02-b2fe-93d217504560", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070922Z:ff426f14-d260-4b3f-8db4-2bd8268d772d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c8a4c7f1082c4c328f138b03d4fd28e3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "c716fdcf-d4c1-4e3e-9b94-f515832fbb2c", + "x-ms-client-request-id": "c8a4c7f1082c4c328f138b03d4fd28e3", + "x-ms-correlation-request-id": "9edff7a2-da04-4343-b922-2c81840f0356", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "2660afbd-9d3a-458a-b48d-7e81ed304e87", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070923Z:9edff7a2-da04-4343-b922-2c81840f0356" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3a24d032e00b951f80567f96a777ae94", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7c7a454e-ffce-496d-a071-c27de4a73001", + "x-ms-client-request-id": "3a24d032e00b951f80567f96a777ae94", + "x-ms-correlation-request-id": "b2703041-0442-4e32-8bdc-7970d2d93a50", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "8767e934-20da-49a9-b478-f21f280fd1b5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070925Z:b2703041-0442-4e32-8bdc-7970d2d93a50" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "322619c5403fd233581cfaecf027cba3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9025f7d9-5eaa-4e59-be24-f6bc40f4d13a", + "x-ms-client-request-id": "322619c5403fd233581cfaecf027cba3", + "x-ms-correlation-request-id": "69799dfa-a63c-44da-a3c7-7d817cf6a417", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "89a0718f-767d-4e76-9b74-2bd70187da75", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070926Z:69799dfa-a63c-44da-a3c7-7d817cf6a417" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c1a20163b3dd100da80e47d5889ca517", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3d64bacf-04c0-4fa0-a82e-76274e816fa0", + "x-ms-client-request-id": "c1a20163b3dd100da80e47d5889ca517", + "x-ms-correlation-request-id": "628ba9b3-cfe1-49d8-b5de-2533050d64a2", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "00dfca38-cbd9-4cbc-b548-53b4bf63ee27", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070927Z:628ba9b3-cfe1-49d8-b5de-2533050d64a2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bb3df764f5d7f1a49c51e1efe632a558", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8beb97d0-8db1-4628-b9cd-6e3c9d8ecce2", + "x-ms-client-request-id": "bb3df764f5d7f1a49c51e1efe632a558", + "x-ms-correlation-request-id": "8b22450f-aaff-445c-b34c-1683d2c44f07", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "d8643a04-37d2-4cce-98ae-e98471eea721", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070928Z:8b22450f-aaff-445c-b34c-1683d2c44f07" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a533dc8aedd512b60b158930f85d49bc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e594b25a-19bb-4f3e-bce9-1773159a33c4", + "x-ms-client-request-id": "a533dc8aedd512b60b158930f85d49bc", + "x-ms-correlation-request-id": "632086e6-32f3-4a4b-91ba-979dbf46d914", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "653c9b02-00b6-4494-b9e8-d8bce8a6248c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070930Z:632086e6-32f3-4a4b-91ba-979dbf46d914" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f987e27610e96dcc5cb1248cd11e2a76", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "db5cd134-8944-4b7c-ba9e-88c489ddd248", + "x-ms-client-request-id": "f987e27610e96dcc5cb1248cd11e2a76", + "x-ms-correlation-request-id": "6a5b4ef5-7a80-440c-a84d-15b618f5ea16", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "a694f882-6137-432c-abbc-4a3dd073651d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070931Z:6a5b4ef5-7a80-440c-a84d-15b618f5ea16" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ac4bef69ff687742402bafc16b74f83e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "99039126-5099-49c2-9781-9b683be868a8", + "x-ms-client-request-id": "ac4bef69ff687742402bafc16b74f83e", + "x-ms-correlation-request-id": "d8355739-17d1-4b15-8a4e-adde57a2f0cf", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "7af028fa-b3a7-44ab-9355-a9c06a429e72", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070932Z:d8355739-17d1-4b15-8a4e-adde57a2f0cf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "03782507abaa7a6e10c54923c82a40ed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2890aaba-56dc-4006-848c-900706878c65", + "x-ms-client-request-id": "03782507abaa7a6e10c54923c82a40ed", + "x-ms-correlation-request-id": "4f34f06b-5c3a-468a-96e1-b723e8773532", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "dd4ab171-a09a-45ee-b84e-521ecaaf8b58", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070934Z:4f34f06b-5c3a-468a-96e1-b723e8773532" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "09c613eb9d127653a010b8be600a02e8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "01d90749-3218-4711-8859-7b2ff8fb548f", + "x-ms-client-request-id": "09c613eb9d127653a010b8be600a02e8", + "x-ms-correlation-request-id": "875388fb-8a23-4699-8250-9014126f3a9b", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "9663c782-3d2e-4120-b712-e4d128a32045", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070935Z:875388fb-8a23-4699-8250-9014126f3a9b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ac84e6b926a5bdcb80d09ca3b61eae16", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e9df3490-5d7a-4afe-9dd5-28d6413ad718", + "x-ms-client-request-id": "ac84e6b926a5bdcb80d09ca3b61eae16", + "x-ms-correlation-request-id": "82407652-adbe-4f85-a079-2632f38ec847", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "9dbd3f22-151c-405d-b93e-03118380281e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070936Z:82407652-adbe-4f85-a079-2632f38ec847" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "57d6c2eaeead6a2bd1026399f3b01905", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "17d0f0ee-c119-4580-9e2c-03a7327e42cf", + "x-ms-client-request-id": "57d6c2eaeead6a2bd1026399f3b01905", + "x-ms-correlation-request-id": "9ad4ac9e-1c6b-419c-8e40-74923f33dd2e", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "d46ac00b-31cc-4e17-8862-05ae29b11e1f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070938Z:9ad4ac9e-1c6b-419c-8e40-74923f33dd2e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e26a60c394a6c4474808894200b0c082", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "61572925-59d8-4434-b929-f92b44657d7f", + "x-ms-client-request-id": "e26a60c394a6c4474808894200b0c082", + "x-ms-correlation-request-id": "b7e64f6d-c110-42d6-9888-941c829cd9a0", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "9ea61616-65d7-4bd4-9823-91fc0030f455", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070939Z:b7e64f6d-c110-42d6-9888-941c829cd9a0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9dd3a262aa34ca3aba1adba3c331cacf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9090555b-2027-45a2-a0e9-52f96ef4e635", + "x-ms-client-request-id": "9dd3a262aa34ca3aba1adba3c331cacf", + "x-ms-correlation-request-id": "31082506-561e-4357-88f0-0ca1df5faf49", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "c40d036a-c66e-459e-a3a8-09a0b218d7d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070940Z:31082506-561e-4357-88f0-0ca1df5faf49" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "55e096b6cbb356707b110fa565e96920", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "59705c8f-5a39-4e21-b796-1654e1922583", + "x-ms-client-request-id": "55e096b6cbb356707b110fa565e96920", + "x-ms-correlation-request-id": "a3288c2b-2fd7-41f8-b5e1-b0aa87fecada", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "4941d018-278b-41ed-8e9d-fd675f19f250", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070941Z:a3288c2b-2fd7-41f8-b5e1-b0aa87fecada" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5137e1427cdc18d126a0278bb8a40116", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8d852de8-dd56-4a27-8c3b-ee2bf20e00d3", + "x-ms-client-request-id": "5137e1427cdc18d126a0278bb8a40116", + "x-ms-correlation-request-id": "96bc1e54-40dc-43b1-81fd-c892e9bd61bd", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "9235218b-b270-41ff-b1dc-d55fa5cce64e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070943Z:96bc1e54-40dc-43b1-81fd-c892e9bd61bd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6a8bb93e6acf96ce317d22229a9565d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "cf2a899b-6122-480a-826b-d1fab843bf54", + "x-ms-client-request-id": "6a8bb93e6acf96ce317d22229a9565d1", + "x-ms-correlation-request-id": "8632d4ce-1fa0-4b4a-891c-7320aa8c244c", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "f26cd20d-f8bd-40a5-821f-2ca4b0c625ce", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070944Z:8632d4ce-1fa0-4b4a-891c-7320aa8c244c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e261bab178f93af2c5c72f13a3e49dd6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "aae0d395-b48f-4103-8fc5-e244e912d2eb", + "x-ms-client-request-id": "e261bab178f93af2c5c72f13a3e49dd6", + "x-ms-correlation-request-id": "b650ed8e-1dc3-4b70-a70a-20a76faae9d4", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "0278262f-08ac-4627-8d6f-cb5abbaf72f3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070945Z:b650ed8e-1dc3-4b70-a70a-20a76faae9d4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ab66f910ff5dd75112a11f5f59af7e91", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "43c5dde6-1550-4c0f-8506-c1d26d911926", + "x-ms-client-request-id": "ab66f910ff5dd75112a11f5f59af7e91", + "x-ms-correlation-request-id": "0c62b3f0-6db1-4d89-b35b-d6053c442330", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "c6b7cb58-a5ad-4339-90a8-f6012634edf1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070947Z:0c62b3f0-6db1-4d89-b35b-d6053c442330" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "feda563b1e43c61cc650a4083bbaf24d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "89791190-acfb-4bdf-bd6a-dba8ccabb511", + "x-ms-client-request-id": "feda563b1e43c61cc650a4083bbaf24d", + "x-ms-correlation-request-id": "afa27495-0751-449d-abf3-c28e9a48a285", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "bda4cedc-dbe9-466b-8c4a-0893d33fb77f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070948Z:afa27495-0751-449d-abf3-c28e9a48a285" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a1114cdfb92eb2736989cf585893e016", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8a7f003e-7f18-4251-8bf3-f75b512b06fb", + "x-ms-client-request-id": "a1114cdfb92eb2736989cf585893e016", + "x-ms-correlation-request-id": "dba10854-3caa-4ac8-81dd-4e1af5e23169", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "cd43025b-0860-4aa4-8ee8-7c48b84d1f80", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070949Z:dba10854-3caa-4ac8-81dd-4e1af5e23169" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4dd89d499f09f292dca0e40c5a489c58", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "08602652-4f74-4877-89db-ab83d8509e9a", + "x-ms-client-request-id": "4dd89d499f09f292dca0e40c5a489c58", + "x-ms-correlation-request-id": "8a9a2ae6-d505-4ca3-a8e3-f0b2dfa635ee", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "4b1fd873-79e5-4347-9e4d-d950e6e9d5e4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070950Z:8a9a2ae6-d505-4ca3-a8e3-f0b2dfa635ee" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0d7fd2aedd9d8162e22894ba4fc46d33", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "50765b9a-7003-4eb6-94e7-b38dd840c494", + "x-ms-client-request-id": "0d7fd2aedd9d8162e22894ba4fc46d33", + "x-ms-correlation-request-id": "9b04d67b-30ef-468d-bcb5-1ab302f540e4", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "1def339e-c6a8-4fc1-b9f9-24c15edcd08a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070952Z:9b04d67b-30ef-468d-bcb5-1ab302f540e4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9dbe8e70a4e24043b91fc48dd4675720", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6054b973-51cc-4fa1-99cd-d069220b850d", + "x-ms-client-request-id": "9dbe8e70a4e24043b91fc48dd4675720", + "x-ms-correlation-request-id": "ec19a71e-0ef0-438d-99a4-51132eb292c5", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "5683daa2-06ea-4a27-9b2d-b75ed822c368", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070953Z:ec19a71e-0ef0-438d-99a4-51132eb292c5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "86a977edd3146c783b566be10ad8a218", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "22d2a9f0-1c24-4598-95ab-7ce6d99fd2bb", + "x-ms-client-request-id": "86a977edd3146c783b566be10ad8a218", + "x-ms-correlation-request-id": "2cdbd62f-7070-4d7a-8b74-d0819b7d1403", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "1e30f90e-60ec-4ca7-a842-ecf23e13b60c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070954Z:2cdbd62f-7070-4d7a-8b74-d0819b7d1403" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cc9cb133fe8a0a758f3e547e19d5ad7b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "00927e06-a247-4819-8d7a-c4a79cd6d335", + "x-ms-client-request-id": "cc9cb133fe8a0a758f3e547e19d5ad7b", + "x-ms-correlation-request-id": "022f0966-8878-459b-a205-d3095aa24b8a", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "dd1a4500-ec60-4e7d-97c9-52dc5666661c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070956Z:022f0966-8878-459b-a205-d3095aa24b8a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d7cc74d1e71a9c1f1652628b396236e0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ff297b83-6509-4fd8-b74f-1ddd45feecf6", + "x-ms-client-request-id": "d7cc74d1e71a9c1f1652628b396236e0", + "x-ms-correlation-request-id": "225c1489-8a21-4e7f-9bf5-9f240e21e87c", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "3d08562a-70b4-4e91-aa90-fcb78dd660dd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070957Z:225c1489-8a21-4e7f-9bf5-9f240e21e87c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "235aab7c8bcaee96019ff7d57ef95265", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3b77ae25-8940-4cda-8f09-e1dede459dda", + "x-ms-client-request-id": "235aab7c8bcaee96019ff7d57ef95265", + "x-ms-correlation-request-id": "9cd346a5-5966-45af-8959-8d1f34cca53b", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "907678df-f478-4d86-9814-4dc8bedc3818", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T070958Z:9cd346a5-5966-45af-8959-8d1f34cca53b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9610f0a9ca0b4cfe92ffb5379cead12c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "aeb83299-f5c9-4eb5-b709-014568a137cd", + "x-ms-client-request-id": "9610f0a9ca0b4cfe92ffb5379cead12c", + "x-ms-correlation-request-id": "0c5f332e-da08-4a73-aa52-61c517884377", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "f6adec0f-5976-441e-8e83-c7852d3fbc0b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071000Z:0c5f332e-da08-4a73-aa52-61c517884377" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6d027308897a45b0ddded67af0491e1c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "cac40291-c282-4a46-a537-1db610e3ced5", + "x-ms-client-request-id": "6d027308897a45b0ddded67af0491e1c", + "x-ms-correlation-request-id": "47fda3d1-f545-48fe-8746-0915ef3e7cff", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "76602aeb-081f-4ed3-8a3a-cb3de7dc83dc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071001Z:47fda3d1-f545-48fe-8746-0915ef3e7cff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "48e1fcff9f51b1d4ac0e90cad55e5116", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "33513ccd-9037-4dac-8f49-7eb5ac7b0f54", + "x-ms-client-request-id": "48e1fcff9f51b1d4ac0e90cad55e5116", + "x-ms-correlation-request-id": "94c8e397-b377-434b-bbe8-168e5e040e8c", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "7f3cdbda-2ccc-4778-b85f-c218454495c8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071002Z:94c8e397-b377-434b-bbe8-168e5e040e8c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0acccacee4f71feb3fcab82df4835c49", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:10: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": "fc5639e5-9a6b-4f80-8adb-d5c9c40778e7", + "x-ms-client-request-id": "0acccacee4f71feb3fcab82df4835c49", + "x-ms-correlation-request-id": "ea7aa30e-6c3a-42e2-be31-3c47234624f8", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "a42110d4-9a8b-4cf8-99ac-dc56f40cc42b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071003Z:ea7aa30e-6c3a-42e2-be31-3c47234624f8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a03799e1880868db9f51c16cf9e66f7f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "61f5237b-f8b9-41c1-969d-6538bf8addf6", + "x-ms-client-request-id": "a03799e1880868db9f51c16cf9e66f7f", + "x-ms-correlation-request-id": "ccdee719-1b8a-470f-a2d1-7f0c38b31b95", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "fc1befb9-b4a7-46db-aa3b-1ee797d8274e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071005Z:ccdee719-1b8a-470f-a2d1-7f0c38b31b95" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "25acbf8c137c1a2511c10887e7a6bd29", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2803dced-b74a-4b94-a011-167222c7eff6", + "x-ms-client-request-id": "25acbf8c137c1a2511c10887e7a6bd29", + "x-ms-correlation-request-id": "b40fcda4-2550-4f8b-afdd-a047f0235277", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "2218c919-9e0c-4cc2-8c6f-5303e064b010", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071006Z:b40fcda4-2550-4f8b-afdd-a047f0235277" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3ce847b1b126450eef636ba6237e2659", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "dae6dade-7b1c-44fb-a32d-6bd97490d308", + "x-ms-client-request-id": "3ce847b1b126450eef636ba6237e2659", + "x-ms-correlation-request-id": "cda7f2d7-789e-4f8a-9384-f9718d218a61", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "b3fc5652-f2b7-49f6-9bd1-782ec0b8303d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071007Z:cda7f2d7-789e-4f8a-9384-f9718d218a61" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "34a0395a36d6cecc741c8e467f5381f8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e2eb5d6f-aa5a-474f-8e53-897b02690fcf", + "x-ms-client-request-id": "34a0395a36d6cecc741c8e467f5381f8", + "x-ms-correlation-request-id": "e699bc6c-cbf0-4c2a-8957-11cdf2d4fb9a", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "c620ff7d-4830-4d28-9515-f6472dc8931b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071009Z:e699bc6c-cbf0-4c2a-8957-11cdf2d4fb9a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b2ba979333fddb58b1663618a87ff792", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f981a038-638f-4a51-9551-37a63aaea3be", + "x-ms-client-request-id": "b2ba979333fddb58b1663618a87ff792", + "x-ms-correlation-request-id": "7bcc51f9-92f5-4282-aeb9-10f1a30e565f", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "ce4e8cf8-8651-496d-b07d-330619398733", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071010Z:7bcc51f9-92f5-4282-aeb9-10f1a30e565f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ad2caf9b88067b527a1ac70a22c7c69b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0e100d5c-89de-419e-9311-d5b84b034f0c", + "x-ms-client-request-id": "ad2caf9b88067b527a1ac70a22c7c69b", + "x-ms-correlation-request-id": "a6553c19-03e1-4845-839e-0ff240d677e4", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "c4a88269-3d26-408f-954a-33adf7ece4f9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071011Z:a6553c19-03e1-4845-839e-0ff240d677e4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8c1272e274c3265be1c58270ffb326f4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "176654f2-e3d4-42ed-9b01-11b644576108", + "x-ms-client-request-id": "8c1272e274c3265be1c58270ffb326f4", + "x-ms-correlation-request-id": "0457e61e-5759-48d3-8e4f-5168c6c2043d", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "1a5497a1-5123-4310-8c72-096556c40a38", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071012Z:0457e61e-5759-48d3-8e4f-5168c6c2043d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cfabfb25d4270bf2443f37e26b4eb8ea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "dae25fb0-4535-4730-b543-c056e01b8f9c", + "x-ms-client-request-id": "cfabfb25d4270bf2443f37e26b4eb8ea", + "x-ms-correlation-request-id": "cf34f7f6-62d1-48a6-b2d2-47c391dda2c4", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "b683999d-5e0d-42ab-b46a-ab86db01b8eb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071014Z:cf34f7f6-62d1-48a6-b2d2-47c391dda2c4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "35369ba06a6d27cf5305cc4005e27cc6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "641e92bf-32b1-4659-9580-c4cb024d3195", + "x-ms-client-request-id": "35369ba06a6d27cf5305cc4005e27cc6", + "x-ms-correlation-request-id": "20bc3432-9243-4537-9381-8816407bb4dd", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "771764b0-09d5-4d61-9e8d-6180a88d7b6c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071015Z:20bc3432-9243-4537-9381-8816407bb4dd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "26e4d3f4f61c0d73800747843d79ba92", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2c47f94a-743e-431f-b1d4-9421fdf148e6", + "x-ms-client-request-id": "26e4d3f4f61c0d73800747843d79ba92", + "x-ms-correlation-request-id": "e66a009f-1dfa-435c-bc9d-4596634344a2", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "df2db0c8-9dc7-46ff-bfe3-c08c5ebf90bd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071016Z:e66a009f-1dfa-435c-bc9d-4596634344a2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "63cf980df07dba872c837c2107b20562", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e592399e-aa3d-4096-9608-5df4dace343b", + "x-ms-client-request-id": "63cf980df07dba872c837c2107b20562", + "x-ms-correlation-request-id": "23ee7549-9964-4f72-8f9f-cbf4d1732308", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "d11a5ccd-ce1d-4466-a522-77c3effc7aac", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071018Z:23ee7549-9964-4f72-8f9f-cbf4d1732308" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "98ee70c29269a9cd2728b465234aeada", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6d79b62c-3bda-4557-b3c4-2e06d9fb5382", + "x-ms-client-request-id": "98ee70c29269a9cd2728b465234aeada", + "x-ms-correlation-request-id": "6658f50b-f86c-4183-8edd-3f333dbd6a89", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "8ff0130e-98ff-4bb1-bf63-994bb0e1655e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071019Z:6658f50b-f86c-4183-8edd-3f333dbd6a89" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6d33394a181203494b29f9987a5206ce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0ff1718d-6419-48a4-874d-23a859bf8937", + "x-ms-client-request-id": "6d33394a181203494b29f9987a5206ce", + "x-ms-correlation-request-id": "fbfc6ced-46d8-4399-b545-d6e52b83600e", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "32ce9e3c-14d4-4bd4-8927-ad1ef4ab6b02", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071020Z:fbfc6ced-46d8-4399-b545-d6e52b83600e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ccc1e502228a7b28ca263c543c2197e1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "ab5e636d-c4e0-4ab5-98cc-35416a75da9e", + "x-ms-client-request-id": "ccc1e502228a7b28ca263c543c2197e1", + "x-ms-correlation-request-id": "3b4f92f0-a6c8-4308-a784-f646b018b2cf", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "ada3b164-0977-4adc-b296-252f3ca1af53", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071021Z:3b4f92f0-a6c8-4308-a784-f646b018b2cf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cdd7a199977eaa4f26ea4d4098352fd5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ed791448-1f0b-45d5-9a0b-6d0be7196069", + "x-ms-client-request-id": "cdd7a199977eaa4f26ea4d4098352fd5", + "x-ms-correlation-request-id": "31a25d2a-1298-4263-a418-4d27480026a2", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "642d1ca2-e5b4-4fb3-9bdf-c1a4468f6b28", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071023Z:31a25d2a-1298-4263-a418-4d27480026a2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3e63e6211d88284f11b8a2ecdcf4c729", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4f3631bf-83f6-437d-9dbc-c8cd37748ded", + "x-ms-client-request-id": "3e63e6211d88284f11b8a2ecdcf4c729", + "x-ms-correlation-request-id": "e6414aa9-b1e0-4526-a478-fb29043e771d", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "56184f27-2c38-4e4f-b341-2ae04a04e236", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071024Z:e6414aa9-b1e0-4526-a478-fb29043e771d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d8ff1791397a6a4f9517a6a0d4e8e295", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:10: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": "b9292c15-17d9-4472-a374-4395ee6c9a5e", + "x-ms-client-request-id": "d8ff1791397a6a4f9517a6a0d4e8e295", + "x-ms-correlation-request-id": "1defb855-1df7-4218-9f9f-70b79bfee01f", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "e4ce4b30-2c6c-43bb-b4dd-99ab73b97be5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071025Z:1defb855-1df7-4218-9f9f-70b79bfee01f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "553266f759bd7b5951aebcc6f463cd31", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a23c3491-8120-443b-b843-41defd360b1a", + "x-ms-client-request-id": "553266f759bd7b5951aebcc6f463cd31", + "x-ms-correlation-request-id": "10d8ae92-dd2c-4004-aef7-23a2908d3efb", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "f97b374a-77da-4a9c-ae97-c9244b181483", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071027Z:10d8ae92-dd2c-4004-aef7-23a2908d3efb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "80ae23235635e85a96f9a97177af5329", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a0ab6c07-4198-4b84-8389-451ea3c347f2", + "x-ms-client-request-id": "80ae23235635e85a96f9a97177af5329", + "x-ms-correlation-request-id": "9e2314e9-ffee-41f6-a998-3765c2a9a639", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "45c6e69f-51de-4049-b70a-6ce055b7b16b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071028Z:9e2314e9-ffee-41f6-a998-3765c2a9a639" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "75f50dd571c1386bbe8487cc7c897531", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "900a9eb7-97a5-427e-bef8-dcbdd9fe0001", + "x-ms-client-request-id": "75f50dd571c1386bbe8487cc7c897531", + "x-ms-correlation-request-id": "648a1e32-83b5-49b6-ad79-6aa95611abb2", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "eb233c38-1a60-4709-92c6-3ee5a9202503", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071029Z:648a1e32-83b5-49b6-ad79-6aa95611abb2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b17d74496239a0600c4abfc4afe704a2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "264d8489-75cb-4403-ab4c-3de3c73513ee", + "x-ms-client-request-id": "b17d74496239a0600c4abfc4afe704a2", + "x-ms-correlation-request-id": "4ca821a1-18a0-4ce1-a61a-c644dd99204c", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "c63fd5f3-6593-4215-9d9e-8d1c286e28a7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071030Z:4ca821a1-18a0-4ce1-a61a-c644dd99204c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e7f1935b586eb170b776c1b0cf8e6c0d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f423b01c-c772-403d-b789-68477d26573d", + "x-ms-client-request-id": "e7f1935b586eb170b776c1b0cf8e6c0d", + "x-ms-correlation-request-id": "a11ff3a2-4645-474b-b935-545f168968e0", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "aedab3cb-c0f6-44d2-94b5-a4d92d7bc13b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071032Z:a11ff3a2-4645-474b-b935-545f168968e0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "02277783a23272efac546977b2a788d6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "937ecfb3-10d9-4448-9f16-d3d69660ae95", + "x-ms-client-request-id": "02277783a23272efac546977b2a788d6", + "x-ms-correlation-request-id": "c0180f93-79eb-48d8-a088-4bbb7caab4e6", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "a6ce7409-b084-49ff-ad8a-000332c3bc97", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071033Z:c0180f93-79eb-48d8-a088-4bbb7caab4e6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e970e5808e97f1c204cbf9c3a1afd17d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "46de80a1-686a-439a-8174-278bd0127dc6", + "x-ms-client-request-id": "e970e5808e97f1c204cbf9c3a1afd17d", + "x-ms-correlation-request-id": "a28e1abd-442a-4848-a150-022e3fac49ef", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "32bd5b6d-e5af-4091-922e-a488350e1b4e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071034Z:a28e1abd-442a-4848-a150-022e3fac49ef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3840b1dd01c0b96fa37e3a1aeef8fe10", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "d8c6fae7-e222-46bb-ab58-0978ac34006a", + "x-ms-client-request-id": "3840b1dd01c0b96fa37e3a1aeef8fe10", + "x-ms-correlation-request-id": "a353c871-7017-4a59-a552-5cff7f281d48", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "f09e73e4-8677-4e88-82db-f5a3069be9dc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071036Z:a353c871-7017-4a59-a552-5cff7f281d48" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ea30eaed821df575b535fe66a82cd0fd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "04185d61-ded6-4317-9a07-53bbad49b1ce", + "x-ms-client-request-id": "ea30eaed821df575b535fe66a82cd0fd", + "x-ms-correlation-request-id": "42885738-d57e-4cd6-affe-0834d0e220b4", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "1f3d4708-c0d6-4c5f-a04c-58f9b7d6c5ec", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071037Z:42885738-d57e-4cd6-affe-0834d0e220b4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0199eb8350677e1675b7451953a8030b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a5cc7e17-4a54-41ce-8210-1d2c13a9f7f7", + "x-ms-client-request-id": "0199eb8350677e1675b7451953a8030b", + "x-ms-correlation-request-id": "689e4177-46ba-43f4-8ee7-727978aceee7", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "6842e7ac-a2fc-40be-927b-f4f1d5e1297c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071038Z:689e4177-46ba-43f4-8ee7-727978aceee7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b7d5e9cce77e5b603b4a828b02081077", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e45545bf-4c5e-4165-891f-f69cc59f4fa7", + "x-ms-client-request-id": "b7d5e9cce77e5b603b4a828b02081077", + "x-ms-correlation-request-id": "58429c11-62ae-4e7f-9d02-ad29b59d0e60", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "61ba6005-8493-4761-9c0c-5674d8a11660", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071040Z:58429c11-62ae-4e7f-9d02-ad29b59d0e60" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "03973dadfd5e9ca8d4b274653c5ca20c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "be51f42d-b8bd-4647-a36c-36be4e7accc0", + "x-ms-client-request-id": "03973dadfd5e9ca8d4b274653c5ca20c", + "x-ms-correlation-request-id": "39bfcd2a-35e2-4d01-a2c4-a87066a35b49", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "c93140af-b6cc-43f8-9cc0-9004416393d3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071041Z:39bfcd2a-35e2-4d01-a2c4-a87066a35b49" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "be9af33219569b7f8b3ec51ccd8a7c6d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "882fea22-0f01-44c9-956f-2f8d51fe9a46", + "x-ms-client-request-id": "be9af33219569b7f8b3ec51ccd8a7c6d", + "x-ms-correlation-request-id": "9b5a5e75-613b-44c9-afea-58ac17136f98", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "25a6c167-f1e5-4fca-9ec6-4adb796c0385", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071042Z:9b5a5e75-613b-44c9-afea-58ac17136f98" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "166bcea60011ceac4038e3cc72fa1ede", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "170e8090-29bb-40ee-9243-12ef7c758cc3", + "x-ms-client-request-id": "166bcea60011ceac4038e3cc72fa1ede", + "x-ms-correlation-request-id": "afb5d8ee-0a7e-42c7-bdce-c844de082a01", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "3ce5be33-f82f-4766-a4c6-16312d49a97d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071043Z:afb5d8ee-0a7e-42c7-bdce-c844de082a01" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0e5976a8516e9420bdfb781f388ccf49", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "32fcc01c-1cb5-409e-898b-6d0bdbd6b713", + "x-ms-client-request-id": "0e5976a8516e9420bdfb781f388ccf49", + "x-ms-correlation-request-id": "c077f8ac-97ea-4925-ae00-272c68d40803", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "5c5502d0-1267-4c9a-a167-a86311d9ad0e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071045Z:c077f8ac-97ea-4925-ae00-272c68d40803" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6dbf07358bf131fb46cb7e1e36b22990", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "cb185780-6c41-4029-8010-3bad9dae77eb", + "x-ms-client-request-id": "6dbf07358bf131fb46cb7e1e36b22990", + "x-ms-correlation-request-id": "d814c5b4-b9a8-4fd9-bfd0-e8c7d6a7a757", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "3e11152a-4dc2-4513-b906-cc4670a0462a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071046Z:d814c5b4-b9a8-4fd9-bfd0-e8c7d6a7a757" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5773e6206d3154feaed65816878c96b3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e353b8c0-6a4b-4961-8018-c7172c7a694c", + "x-ms-client-request-id": "5773e6206d3154feaed65816878c96b3", + "x-ms-correlation-request-id": "12391c2f-9516-4643-bf71-cb850fa164ad", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "f8deeb0f-657c-4ff6-bac4-e4b5d9e2013d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071047Z:12391c2f-9516-4643-bf71-cb850fa164ad" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6b969969b03b1ced7a27c8a2d3025d0b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "560e2e2c-7edd-4f55-82c1-81709da54758", + "x-ms-client-request-id": "6b969969b03b1ced7a27c8a2d3025d0b", + "x-ms-correlation-request-id": "54079826-83bc-4c3e-8355-3f6ad5f18bba", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "9098d25b-e234-4de3-98a5-c68bbe49254a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071049Z:54079826-83bc-4c3e-8355-3f6ad5f18bba" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "51ffe7d27818c717086abe1a33e5a9b9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "682cc3d0-05f0-4f3a-ad7f-9e307b61370a", + "x-ms-client-request-id": "51ffe7d27818c717086abe1a33e5a9b9", + "x-ms-correlation-request-id": "e3136c36-f95e-49ec-a4f2-20a943638a75", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "58762b9b-64cf-4834-a794-e93da03d8ad3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071050Z:e3136c36-f95e-49ec-a4f2-20a943638a75" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9cb4ca34bd1b6f55f956dc09a55b81ac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "06abe38d-673b-440a-a9b4-712a7b34829f", + "x-ms-client-request-id": "9cb4ca34bd1b6f55f956dc09a55b81ac", + "x-ms-correlation-request-id": "fcbc564d-7773-40d3-b65a-9ce673f36892", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "8189b952-1476-4675-a6a5-6da581437b45", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071051Z:fcbc564d-7773-40d3-b65a-9ce673f36892" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a0434d79448df19a81cf62d1f1d2e995", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2307e0b1-97eb-42ae-89e4-c255917656ff", + "x-ms-client-request-id": "a0434d79448df19a81cf62d1f1d2e995", + "x-ms-correlation-request-id": "1bb90314-a6c2-49a4-8b92-10cd8d3d6483", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "4b1e7886-2a31-4008-90bf-b5f9ef74ab48", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071052Z:1bb90314-a6c2-49a4-8b92-10cd8d3d6483" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "086e0e7dc04d14ef929058c29b0e22ac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c1af98a7-e1f1-4349-a7fc-b5209a3339b8", + "x-ms-client-request-id": "086e0e7dc04d14ef929058c29b0e22ac", + "x-ms-correlation-request-id": "131d06b2-c9da-4db4-ac8e-a29555bcef4e", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "24d6b5e1-e40c-41b0-95b1-f209e4a6a865", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071054Z:131d06b2-c9da-4db4-ac8e-a29555bcef4e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e5a112e809a1f02c2fc31b4c5b847d27", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "61c84061-ebbd-460c-9529-6c8cf5ea029f", + "x-ms-client-request-id": "e5a112e809a1f02c2fc31b4c5b847d27", + "x-ms-correlation-request-id": "575ca371-cd85-4ebb-9860-c6e081c1fe13", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "9b365e31-c360-469d-b6e1-46fd813d877c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071055Z:575ca371-cd85-4ebb-9860-c6e081c1fe13" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "968c466d78edb85f5d2f0dfdecd85573", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "86a2e4e4-16e6-471b-ba3e-d1e9333d5a73", + "x-ms-client-request-id": "968c466d78edb85f5d2f0dfdecd85573", + "x-ms-correlation-request-id": "8cbe0261-ba11-4fce-be90-924e707fc0dc", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "c73f3613-64d6-4ef2-9c7c-ba593c3b592a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071056Z:8cbe0261-ba11-4fce-be90-924e707fc0dc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dfe8b5ac033073f4e27dd989a5a3b90e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "56afd117-31d1-490b-acdb-20a44ddcabbb", + "x-ms-client-request-id": "dfe8b5ac033073f4e27dd989a5a3b90e", + "x-ms-correlation-request-id": "9dd52156-f2ba-4d0b-8231-e79dfad66c05", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "88b10707-8fbf-4815-b4d0-9b35918c7dcb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071058Z:9dd52156-f2ba-4d0b-8231-e79dfad66c05" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "545430128b8170bfb2e98871fb2f0356", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:10: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": "5fff5037-34ab-432a-af06-c5a398e65ded", + "x-ms-client-request-id": "545430128b8170bfb2e98871fb2f0356", + "x-ms-correlation-request-id": "5c405a52-f93a-4fce-aaf6-d9e78123183f", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "fb0dd679-fbea-48fe-a2be-08b6f6c31cc9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071059Z:5c405a52-f93a-4fce-aaf6-d9e78123183f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a59fa76e9e9b69f75218b46f9fd512ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "633f59ff-33d8-4a56-b4aa-c32295513e00", + "x-ms-client-request-id": "a59fa76e9e9b69f75218b46f9fd512ba", + "x-ms-correlation-request-id": "0465bd50-b58e-4d5a-8b85-43d282d0a203", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "37ebdce2-c260-49d1-9844-e3a8e6485cf3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071100Z:0465bd50-b58e-4d5a-8b85-43d282d0a203" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bceaff76008321f2f6782c467b8278b2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "366ce087-090a-493d-9296-08e27ac9c9c7", + "x-ms-client-request-id": "bceaff76008321f2f6782c467b8278b2", + "x-ms-correlation-request-id": "956c135e-ec8f-4e2f-a802-7ac809795b78", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "39b431e8-4f31-472c-948c-359e28a7bb79", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071102Z:956c135e-ec8f-4e2f-a802-7ac809795b78" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fe1b827a1303747239eb0268d74fd0dc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:11: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": "874c8902-efd7-4089-ac14-92a3efe8098f", + "x-ms-client-request-id": "fe1b827a1303747239eb0268d74fd0dc", + "x-ms-correlation-request-id": "8cf565da-e414-479b-88c3-fc8433da842f", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "e51ea1e1-2770-4a92-89b8-f94b8c2e2770", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071103Z:8cf565da-e414-479b-88c3-fc8433da842f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fcfbcdd747446dd2b57eae2371b0edd0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c40ca441-7d13-42b3-aa79-9715a362c00d", + "x-ms-client-request-id": "fcfbcdd747446dd2b57eae2371b0edd0", + "x-ms-correlation-request-id": "15804f5b-f43f-4d69-b292-3399b72a25ee", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "232e8302-158e-4dda-b64f-0f0042c1c59c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071104Z:15804f5b-f43f-4d69-b292-3399b72a25ee" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1cf501a014ba62b78c768298fe8949a7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8b891ff2-cb50-42d9-9d5c-86194f5f7d6f", + "x-ms-client-request-id": "1cf501a014ba62b78c768298fe8949a7", + "x-ms-correlation-request-id": "0f4ff5cb-6b8b-4bb6-842f-09dd0e0a783a", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "c40848e3-e27d-4767-a721-9459bffd0835", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071105Z:0f4ff5cb-6b8b-4bb6-842f-09dd0e0a783a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ae6f50a77c86336eb0ad4985654f0289", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9533e40b-d3b7-41c4-b97e-f51a592a55ee", + "x-ms-client-request-id": "ae6f50a77c86336eb0ad4985654f0289", + "x-ms-correlation-request-id": "ab010da1-e685-4c9a-afaa-7bf13c56766b", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "5a646673-0195-41fe-8ea8-96233a63db91", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071107Z:ab010da1-e685-4c9a-afaa-7bf13c56766b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d5c831feb45ac32216996fcec43a6f2c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "6dd5abb0-ef78-43c2-be4a-048ff4eeb54d", + "x-ms-client-request-id": "d5c831feb45ac32216996fcec43a6f2c", + "x-ms-correlation-request-id": "62c3f68b-221d-4167-ac10-f21b70c0d8e9", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "ee8e11b0-8fca-487a-b5ff-48aa4e9bfd22", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071108Z:62c3f68b-221d-4167-ac10-f21b70c0d8e9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "217b07343f40244a93c26b0cca32fd3c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "017e8e26-854b-44e9-827c-83f4c7f05502", + "x-ms-client-request-id": "217b07343f40244a93c26b0cca32fd3c", + "x-ms-correlation-request-id": "0b9b414e-c2fb-4961-9eb5-a5d90d7d993f", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "58eb6473-6c61-4d80-824c-4aa3d56bcdfd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071109Z:0b9b414e-c2fb-4961-9eb5-a5d90d7d993f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cd9af97374c0f24c2dac98ed0c9f6e75", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "ad154c80-fe89-4bb9-8971-0b0d144688d4", + "x-ms-client-request-id": "cd9af97374c0f24c2dac98ed0c9f6e75", + "x-ms-correlation-request-id": "fb2668c7-0644-4dee-8e86-e0bfc22d1b74", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "94359ac2-d778-404c-a7e6-6b89eec7975a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071111Z:fb2668c7-0644-4dee-8e86-e0bfc22d1b74" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5d501d3ee1d4be48e6a442984815f8e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d6ec4288-41b7-4712-ac91-00e196ef7e12", + "x-ms-client-request-id": "5d501d3ee1d4be48e6a442984815f8e4", + "x-ms-correlation-request-id": "6e81bdea-e1db-4e9c-bb89-b5bd32e18c0f", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "f0bc2c26-a7da-4593-ba39-8715354b3817", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071112Z:6e81bdea-e1db-4e9c-bb89-b5bd32e18c0f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cb5a329ca1a0c06bbb88f394a65d17f3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5c7d1a8d-97ca-4e19-b631-6cdfb97512bc", + "x-ms-client-request-id": "cb5a329ca1a0c06bbb88f394a65d17f3", + "x-ms-correlation-request-id": "d7c1f1f2-5de7-4df9-bf0d-3fdc4f6deace", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "827814de-83ca-48e5-be79-2072bca78606", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071113Z:d7c1f1f2-5de7-4df9-bf0d-3fdc4f6deace" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "adcdf6539fe19268b1dbe61b31b4aa18", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "34dd55a7-a9e2-40f8-8d1a-17ec1126d2fa", + "x-ms-client-request-id": "adcdf6539fe19268b1dbe61b31b4aa18", + "x-ms-correlation-request-id": "d893fdb8-34cf-4e30-946e-6862934d307a", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "1fd99cf5-778d-4c73-bcc5-9755fdfca07b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071114Z:d893fdb8-34cf-4e30-946e-6862934d307a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "da50b4b4a2459dd5b190a24cedb31889", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "bc77bc3a-5285-480c-8a24-57fcab815c4f", + "x-ms-client-request-id": "da50b4b4a2459dd5b190a24cedb31889", + "x-ms-correlation-request-id": "9ae0c476-fd2c-484c-9b3c-18efeb1dd71e", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "7f021b2b-ba65-43de-b10d-9fb9e11481fc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071116Z:9ae0c476-fd2c-484c-9b3c-18efeb1dd71e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "52444e8d4a47fc02cac71ac5bb4f8e06", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "423ee85e-ffa3-4903-807c-b67cda5c456e", + "x-ms-client-request-id": "52444e8d4a47fc02cac71ac5bb4f8e06", + "x-ms-correlation-request-id": "b02f9f7d-63e2-4977-841f-19622ae96ada", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "0ff1e8be-701e-41ea-be5d-6e56eafec88d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071117Z:b02f9f7d-63e2-4977-841f-19622ae96ada" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f2e0dbde3d0cb1ad2030fc50fc1ca5fd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4d64bd5f-0878-4f4c-bcbb-16f3763827c4", + "x-ms-client-request-id": "f2e0dbde3d0cb1ad2030fc50fc1ca5fd", + "x-ms-correlation-request-id": "e4fd2133-508b-4d2e-9322-167e0ebc0eb6", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "d1b386d2-7c64-4881-9d62-c66a2957ef8d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071118Z:e4fd2133-508b-4d2e-9322-167e0ebc0eb6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e38e5cc3576f6ad0b153107e8810e161", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "a62264ef-1826-4469-841b-136e218f6512", + "x-ms-client-request-id": "e38e5cc3576f6ad0b153107e8810e161", + "x-ms-correlation-request-id": "d791edcb-5865-4def-9c9f-f497408cc746", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "dce6b29a-0a1d-4b7d-aa60-89c984c8bac2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071120Z:d791edcb-5865-4def-9c9f-f497408cc746" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "126d9b0125d3507da19231164db100ad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "69219205-7ba1-40f8-af55-4467065c0f0b", + "x-ms-client-request-id": "126d9b0125d3507da19231164db100ad", + "x-ms-correlation-request-id": "d99afc1b-ab7b-44ae-a307-17757c95b5b4", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "02a1fabe-9a67-49b1-b1db-f324267db302", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071121Z:d99afc1b-ab7b-44ae-a307-17757c95b5b4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5e011c22abc186960b7640b82c2f2910", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "355acd4c-3527-406c-b882-2c13bcb32a21", + "x-ms-client-request-id": "5e011c22abc186960b7640b82c2f2910", + "x-ms-correlation-request-id": "0f9866c1-faec-4447-9f3a-fd44b6de3d04", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "d2364510-1778-4e74-bddc-b87f3ce623c2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071122Z:0f9866c1-faec-4447-9f3a-fd44b6de3d04" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "604e9a4e93ae9d2adf3d41dc26b91cff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5e2a1b12-46d4-47fc-bf3a-f7d604927c64", + "x-ms-client-request-id": "604e9a4e93ae9d2adf3d41dc26b91cff", + "x-ms-correlation-request-id": "1968e7e6-ec14-45aa-9314-4d275f345f58", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "4550b7fb-f283-44a1-8310-ecb0ad3465ab", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071124Z:1968e7e6-ec14-45aa-9314-4d275f345f58" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6b5c6253830e56a005e7075ce4c42371", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0c003fcc-e529-4d56-b532-749e9e84742c", + "x-ms-client-request-id": "6b5c6253830e56a005e7075ce4c42371", + "x-ms-correlation-request-id": "8b1abb6c-c0ae-408a-8715-8ddfae55a77f", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "b84cdab0-f175-4ae0-8eed-2fb8b372c238", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071125Z:8b1abb6c-c0ae-408a-8715-8ddfae55a77f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b3c820699f638efff1647f8369b96051", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7efd7e98-807c-4960-ae99-2dd1b0a07581", + "x-ms-client-request-id": "b3c820699f638efff1647f8369b96051", + "x-ms-correlation-request-id": "f5d9af52-d9c0-4b84-94bc-f137fd7771ce", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "48ba61aa-0f36-41a6-89d9-558ab2e159fc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071126Z:f5d9af52-d9c0-4b84-94bc-f137fd7771ce" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ca64415abdd2cb02faf85bc78ccdb81a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "334bd6d5-c263-4497-a34a-57873581f914", + "x-ms-client-request-id": "ca64415abdd2cb02faf85bc78ccdb81a", + "x-ms-correlation-request-id": "3967084a-8eb5-4642-a6c7-4ab97697a58a", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "3713a7fe-4c8c-4f9f-885a-0b84dca36e49", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071128Z:3967084a-8eb5-4642-a6c7-4ab97697a58a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0572d01a68f1b49c62cd79a9031cec4b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "64d59724-5caf-4e87-a15e-8f6421a3b84e", + "x-ms-client-request-id": "0572d01a68f1b49c62cd79a9031cec4b", + "x-ms-correlation-request-id": "202cf9a6-540c-419f-b313-0bef3e74fe57", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "a80025aa-15c4-4f06-afdf-5d3da03fc9f7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071129Z:202cf9a6-540c-419f-b313-0bef3e74fe57" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a302b5875860ac9e1efcb86a43380224", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2a276055-9222-4a06-b466-875fc231d018", + "x-ms-client-request-id": "a302b5875860ac9e1efcb86a43380224", + "x-ms-correlation-request-id": "8570978f-82ee-4211-830c-48ee12d33db4", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "760a8b1a-5c0a-4ac4-a975-1a82972fea0a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071130Z:8570978f-82ee-4211-830c-48ee12d33db4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "996964ab5a46f160a4b067054358c8dd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "cf2958ad-d8f0-46c9-82d9-c8b784c655e8", + "x-ms-client-request-id": "996964ab5a46f160a4b067054358c8dd", + "x-ms-correlation-request-id": "a71905e2-2ffb-4b77-a2bf-fbff9bc62c9c", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "6725e1ae-1a11-4598-a348-767a49e5dc93", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071131Z:a71905e2-2ffb-4b77-a2bf-fbff9bc62c9c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d63f100b15cac1ba31c6e6f5b031712a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "541bf928-7198-46a3-8fec-147a64039be8", + "x-ms-client-request-id": "d63f100b15cac1ba31c6e6f5b031712a", + "x-ms-correlation-request-id": "317c0e5b-97b4-4ca8-b3e2-ebf24c8515f0", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "a205f755-8125-46a0-ab2b-c39ed5d2564b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071133Z:317c0e5b-97b4-4ca8-b3e2-ebf24c8515f0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9efe55ca53b32c045511ffb0f09969c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e57bfe3f-178b-4176-bb03-f909a1a71fb2", + "x-ms-client-request-id": "9efe55ca53b32c045511ffb0f09969c5", + "x-ms-correlation-request-id": "a2ebee3a-958c-4e50-93f1-8405e9fb7d0a", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "13190bf6-0b8f-4a6b-b3ae-c78f8c071ba1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071134Z:a2ebee3a-958c-4e50-93f1-8405e9fb7d0a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "325fdb342cf89659aaa76880736a4172", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "01b6c5f3-95eb-4581-ae47-6ae9aa9f0e92", + "x-ms-client-request-id": "325fdb342cf89659aaa76880736a4172", + "x-ms-correlation-request-id": "90c08dff-40fb-4145-a161-ed5c642c379b", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "5098b48f-a784-4704-be4c-ed1b05be4ff4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071135Z:90c08dff-40fb-4145-a161-ed5c642c379b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ed3b3d3e295ab7290c1281b9160ad198", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0353ae05-926d-4e25-944f-94f351eb0340", + "x-ms-client-request-id": "ed3b3d3e295ab7290c1281b9160ad198", + "x-ms-correlation-request-id": "e921a87e-e07e-4c27-bbf8-b2d0283809df", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "e3eeb3d2-3b7c-41ff-a064-388e23114c8e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071137Z:e921a87e-e07e-4c27-bbf8-b2d0283809df" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d4c1215c3ed29e32fb68f40ceb83b9ea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "74e1b0d4-9b26-4b6c-bacc-2c731dd8a51f", + "x-ms-client-request-id": "d4c1215c3ed29e32fb68f40ceb83b9ea", + "x-ms-correlation-request-id": "0c2df89e-7a30-4781-a4e1-0da6c976eb08", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "20bb1f73-9747-48aa-ab79-ca31aef2735b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071138Z:0c2df89e-7a30-4781-a4e1-0da6c976eb08" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b3718cd07b5e0a6bb1a725e5aaa07fa0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f4add480-dbb6-4aab-824a-48b93354c23a", + "x-ms-client-request-id": "b3718cd07b5e0a6bb1a725e5aaa07fa0", + "x-ms-correlation-request-id": "b46c0662-b806-49e3-bc88-148cd4bbccff", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "c662e3bf-a3d8-44ec-8fb8-a268d4f78a3a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071139Z:b46c0662-b806-49e3-bc88-148cd4bbccff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5224d0d66ca9ff9f0b9cf1f2341dcc88", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3bef6b90-127b-413f-a934-32bc2f64f5fd", + "x-ms-client-request-id": "5224d0d66ca9ff9f0b9cf1f2341dcc88", + "x-ms-correlation-request-id": "ee0c9939-4215-4609-ada5-26b0e6aa6dc4", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "d3229c77-be4c-4ebe-a48e-b1224ebd1e36", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071141Z:ee0c9939-4215-4609-ada5-26b0e6aa6dc4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "89e896591d98e03ab5b6232b184cf35b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0d61c2f9-c145-44ea-84a3-c5dfa50ade5c", + "x-ms-client-request-id": "89e896591d98e03ab5b6232b184cf35b", + "x-ms-correlation-request-id": "e6e78406-bff0-4658-a50a-1e80517b8026", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "01e63c15-1230-4859-a8c0-1125ccae10e8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071142Z:e6e78406-bff0-4658-a50a-1e80517b8026" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1b3654e8665f6441ec71a8c18979d693", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "75dd9fd5-d202-4787-a606-b6f89fa9bf70", + "x-ms-client-request-id": "1b3654e8665f6441ec71a8c18979d693", + "x-ms-correlation-request-id": "d620a92b-0f73-4fec-bbd0-ee4ff7575828", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "619ef373-8745-470a-8662-46ecb3b0b063", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071143Z:d620a92b-0f73-4fec-bbd0-ee4ff7575828" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "148c9ddaf6b7b80796439df24874e6bf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1814c307-cd52-4a9f-9463-bddcdf3fbac5", + "x-ms-client-request-id": "148c9ddaf6b7b80796439df24874e6bf", + "x-ms-correlation-request-id": "05e58935-a135-4dbf-97c8-09d40cfdd09b", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "7d669c25-dcfc-4d14-add4-1374c1908af4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071145Z:05e58935-a135-4dbf-97c8-09d40cfdd09b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e00a96a9b1e6f22955849d277578573c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9632cc27-047e-4591-8b82-73929fb32e02", + "x-ms-client-request-id": "e00a96a9b1e6f22955849d277578573c", + "x-ms-correlation-request-id": "63752752-71b5-43df-9755-118327941c54", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "07c8b43c-125b-485c-8a40-23cd055cf9aa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071146Z:63752752-71b5-43df-9755-118327941c54" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7b508fe0debff1a34d7e841cc94e1b77", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "52ed48cd-7de2-4cbd-8667-06b843189b47", + "x-ms-client-request-id": "7b508fe0debff1a34d7e841cc94e1b77", + "x-ms-correlation-request-id": "297ac53c-b749-4b9f-bcc0-dab25aff6324", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "76363aa5-a44e-432c-9d57-891090c945eb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071147Z:297ac53c-b749-4b9f-bcc0-dab25aff6324" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f317e98af66f29ac7399bf3359df431d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "027f53c0-81d9-4faa-ae66-d113303f03c5", + "x-ms-client-request-id": "f317e98af66f29ac7399bf3359df431d", + "x-ms-correlation-request-id": "6bf04b26-d17f-4bcb-a7ee-279538c77f02", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "5ea2db75-89ab-45f9-921e-978cc13fa962", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071148Z:6bf04b26-d17f-4bcb-a7ee-279538c77f02" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bc928af2-b002-4e88-92ef-dc239273496a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b91260ec6a24cafff21892682c0c2906", + "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, 08 Sep 2021 07:11: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": "25dadeff-0977-4934-93ba-1e97a85f595e", + "x-ms-client-request-id": "b91260ec6a24cafff21892682c0c2906", + "x-ms-correlation-request-id": "8131aa86-1fac-4c22-8061-3f89a861eda6", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "a99cb4dc-0ac9-47bc-a510-afd605fbe124", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071150Z:8131aa86-1fac-4c22-8061-3f89a861eda6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-7597?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8c9c25686360eacde22607251f70986d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1535", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:11:50 GMT", + "ETag": "W/\u0022ae97d63b-1ba9-4bcf-a0e4-a843fba68cd7\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": "a2ade221-eb76-43f8-978c-7d3125bfa76e", + "x-ms-client-request-id": "8c9c25686360eacde22607251f70986d", + "x-ms-correlation-request-id": "a32a7479-bd92-4141-8545-d3758a5d0899", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "138f0858-c790-4b98-aeef-48cf7783c725", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071150Z:a32a7479-bd92-4141-8545-d3758a5d0899" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022bastion-7597\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-7597\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022ae97d63b-1ba9-4bcf-a0e4-a843fba68cd7\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022dnsName\u0022: \u0022bst-8788f343-9e39-4a8a-9567-6b71cae18046.bastion.azure.com\u0022,\r\n", + " \u0022scaleUnits\u0022: 2,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022bastionIPConfig-9874\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-7597/bastionHostIpConfigurations/bastionIPConfig-9874\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022ae97d63b-1ba9-4bcf-a0e4-a843fba68cd7\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts/bastionHostIpConfigurations\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/bastionrg-5755/providers/Microsoft.Network/publicIPAddresses/ip-7939\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166/subnets/AzureBastionSubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022bastionShareableLinks\u0022: {}\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6830673a623b2052e94d00566343fc67", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1696", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:11: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": "defebfea-ffc0-4848-9bec-8cdb0aa0b7a4", + "x-ms-client-request-id": "6830673a623b2052e94d00566343fc67", + "x-ms-correlation-request-id": "d56efad1-a48f-4674-ad83-f7e2da057957", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "caadf5d6-738e-4b94-b548-d38a307a7ca3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071150Z:d56efad1-a48f-4674-ad83-f7e2da057957" + }, + "ResponseBody": [ + "{\r\n", + " \u0022value\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022bastion-7597\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-7597\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022ae97d63b-1ba9-4bcf-a0e4-a843fba68cd7\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022dnsName\u0022: \u0022bst-8788f343-9e39-4a8a-9567-6b71cae18046.bastion.azure.com\u0022,\r\n", + " \u0022scaleUnits\u0022: 2,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022bastionIPConfig-9874\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-7597/bastionHostIpConfigurations/bastionIPConfig-9874\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022ae97d63b-1ba9-4bcf-a0e4-a843fba68cd7\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts/bastionHostIpConfigurations\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/bastionrg-5755/providers/Microsoft.Network/publicIPAddresses/ip-7939\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166/subnets/AzureBastionSubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022bastionShareableLinks\u0022: {}\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022\r\n", + " }\r\n", + " }\r\n", + " ]\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "33cbb970b64388bc9328d6fd62d9ab82", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1696", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:11: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": "ba947ff5-6b65-41c5-ac62-f06eaa03dece", + "x-ms-client-request-id": "33cbb970b64388bc9328d6fd62d9ab82", + "x-ms-correlation-request-id": "116b9353-d9c4-415e-877a-5711d3db8c5a", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "ea98ab66-b3c3-40ae-88ef-13939c88313c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071151Z:116b9353-d9c4-415e-877a-5711d3db8c5a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022value\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022bastion-7597\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-7597\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022ae97d63b-1ba9-4bcf-a0e4-a843fba68cd7\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022dnsName\u0022: \u0022bst-8788f343-9e39-4a8a-9567-6b71cae18046.bastion.azure.com\u0022,\r\n", + " \u0022scaleUnits\u0022: 2,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022bastionIPConfig-9874\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-7597/bastionHostIpConfigurations/bastionIPConfig-9874\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022ae97d63b-1ba9-4bcf-a0e4-a843fba68cd7\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts/bastionHostIpConfigurations\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/bastionrg-5755/providers/Microsoft.Network/publicIPAddresses/ip-7939\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/virtualNetworks/vnet-166/subnets/AzureBastionSubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022bastionShareableLinks\u0022: {}\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022\r\n", + " }\r\n", + " }\r\n", + " ]\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-5755/providers/Microsoft.Network/bastionHosts/bastion-7597?api-version=2021-02-01", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c42d247fc0dc05cad27ca2136276869e", + "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/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 08 Sep 2021 07:11:52 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operationResults/be517db1-f853-4a7a-bb26-75254afc9dfe?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": "baa15473-d142-416f-8bc8-18ae621425c5", + "x-ms-client-request-id": "c42d247fc0dc05cad27ca2136276869e", + "x-ms-correlation-request-id": "4b649d73-4ba1-4e42-a33d-84a0fc5f7fca", + "x-ms-ratelimit-remaining-subscription-deletes": "14999", + "x-ms-request-id": "be517db1-f853-4a7a-bb26-75254afc9dfe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071152Z:4b649d73-4ba1-4e42-a33d-84a0fc5f7fca" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3ed67ea23715b08aeec561c713a9251d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:11:52 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": "4a43a945-6d55-4dba-9c36-05be8e745ebb", + "x-ms-client-request-id": "3ed67ea23715b08aeec561c713a9251d", + "x-ms-correlation-request-id": "0ed28606-d0b1-4c1f-8481-d0f61c99a72a", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "b191f0fc-1994-4c78-b9ed-75ba33ce1df8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071152Z:0ed28606-d0b1-4c1f-8481-d0f61c99a72a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c2d337a144241bddfaa91934ebb6797d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:11: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": "990e13e7-f6d9-41cc-b36f-381f65460a34", + "x-ms-client-request-id": "c2d337a144241bddfaa91934ebb6797d", + "x-ms-correlation-request-id": "b38ad77a-6cf1-4736-ab6f-7a9f656bcce5", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "98a31f8b-2212-4415-b322-e2f910178f20", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071154Z:b38ad77a-6cf1-4736-ab6f-7a9f656bcce5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e47092bf489ff288160477df03637002", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:11: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": "b2c8c931-71f7-40e3-a632-f2339212d81d", + "x-ms-client-request-id": "e47092bf489ff288160477df03637002", + "x-ms-correlation-request-id": "635ecba1-182d-4008-9791-ac26343e55bb", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "74a31a62-b323-4c09-89d5-54a667af8ca7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071155Z:635ecba1-182d-4008-9791-ac26343e55bb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5472b782fa815deba0bb446c1e56c437", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:11: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": "71ca8057-105e-4211-8d3f-24e8b1d5f1b4", + "x-ms-client-request-id": "5472b782fa815deba0bb446c1e56c437", + "x-ms-correlation-request-id": "7fbc4539-2005-4846-9b31-16b63a653998", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "c3007167-8d18-452f-b45f-bc58e88c3df1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071156Z:7fbc4539-2005-4846-9b31-16b63a653998" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8107e44b4038597eaee1ac1fcdfd1897", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:11:57 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": "f15fbed6-683c-4e8a-9837-1e6acf258dd2", + "x-ms-client-request-id": "8107e44b4038597eaee1ac1fcdfd1897", + "x-ms-correlation-request-id": "ddffb64f-519e-497c-b562-cf4db491c43d", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "608113c6-d726-4ff2-8d82-9e41a8157581", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071157Z:ddffb64f-519e-497c-b562-cf4db491c43d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "33b117392544c4fba71344e3041cd3bf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:11: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": "27008edd-a385-4f4c-89b5-2a4ed3b13974", + "x-ms-client-request-id": "33b117392544c4fba71344e3041cd3bf", + "x-ms-correlation-request-id": "a4611fe6-7412-4679-8d78-ab134ee28d82", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "e2cead16-4ecf-4837-8b60-4922b6eb5315", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071159Z:a4611fe6-7412-4679-8d78-ab134ee28d82" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1e943f3fef5b41c93919a59f4ecb90a2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:12:00 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": "ed2a1920-fec0-46bf-a92d-4e8805a9dbc5", + "x-ms-client-request-id": "1e943f3fef5b41c93919a59f4ecb90a2", + "x-ms-correlation-request-id": "339dd7b2-5c90-4a11-8f77-8442fc672d08", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "dfa302d4-92a8-4410-82ab-a7bce1bc8ddd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071200Z:339dd7b2-5c90-4a11-8f77-8442fc672d08" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0632ada390a426f3e843d924fc9a5492", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:12: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": "15ec7bc0-9264-4538-bdf3-daccf8444fcf", + "x-ms-client-request-id": "0632ada390a426f3e843d924fc9a5492", + "x-ms-correlation-request-id": "9f675cc3-8323-4775-9d0f-ef796d9ad563", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "a76d7367-f585-4094-b904-02223d61b625", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071201Z:9f675cc3-8323-4775-9d0f-ef796d9ad563" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8ddfec0df9684a3b4d70fa2b7f5c75dc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:12:02 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": "93deac4e-d810-4df0-9d38-2743c51bd4f8", + "x-ms-client-request-id": "8ddfec0df9684a3b4d70fa2b7f5c75dc", + "x-ms-correlation-request-id": "b5400192-2a5d-4438-bfef-60331bcb37b4", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "56cde7f5-d244-4581-9f6e-9a68de88732c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071203Z:b5400192-2a5d-4438-bfef-60331bcb37b4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5740a182cde9ae1a4c6e361816a5459f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "bed68fe4-5df9-43a7-9292-02c310a50f72", + "x-ms-client-request-id": "5740a182cde9ae1a4c6e361816a5459f", + "x-ms-correlation-request-id": "019e608a-bdbe-4e38-93cb-17fdb7c1cc9d", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "e9455e25-6382-4385-b084-aa7b1f6b6963", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071204Z:019e608a-bdbe-4e38-93cb-17fdb7c1cc9d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "629213c403ebaa3a71e8b93496c8a68b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "36185da3-573c-413c-a6d7-3e3026e9962d", + "x-ms-client-request-id": "629213c403ebaa3a71e8b93496c8a68b", + "x-ms-correlation-request-id": "7efc9ce5-167b-4b1c-a641-bc00fa0c5318", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "0e6d5bed-9693-4f96-ae40-eae76b22c25c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071205Z:7efc9ce5-167b-4b1c-a641-bc00fa0c5318" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5aa1fccdfd5940a8d13140fac22334a8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "ad1dcd89-2c6e-4f20-8c9c-9318b8151b3b", + "x-ms-client-request-id": "5aa1fccdfd5940a8d13140fac22334a8", + "x-ms-correlation-request-id": "6a5d0bab-2aa8-480d-b3ab-14cdf49dbd6a", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "d6bd8dc9-b0e7-4aea-846a-3ba68da0312e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071206Z:6a5d0bab-2aa8-480d-b3ab-14cdf49dbd6a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6c665b2a13ca7ff06796e50014e61883", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "fba6f8d3-e9a1-47df-86a4-0da93d6953a7", + "x-ms-client-request-id": "6c665b2a13ca7ff06796e50014e61883", + "x-ms-correlation-request-id": "ea485484-2bbe-4f63-9fbe-a55c636a8382", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "076ea84a-fec0-480d-945c-fead3066ce6e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071208Z:ea485484-2bbe-4f63-9fbe-a55c636a8382" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "194aaac7ea03c6456a5190bac23fe74e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f1eaf101-ee97-4ea0-9711-6f5c365a6c96", + "x-ms-client-request-id": "194aaac7ea03c6456a5190bac23fe74e", + "x-ms-correlation-request-id": "53996fd7-be55-4491-8527-7da0e8a5f098", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "659a4706-d4cf-4564-bb7b-6319160a116a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071209Z:53996fd7-be55-4491-8527-7da0e8a5f098" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3a0910b43a61bac10b22f3c317a72cea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3309d52f-5d0e-4936-8036-076b490f8102", + "x-ms-client-request-id": "3a0910b43a61bac10b22f3c317a72cea", + "x-ms-correlation-request-id": "b6573039-109a-4e15-8a4e-247dd8ded682", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "9e07c500-7ca9-4249-a7c6-9ecc767ce122", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071210Z:b6573039-109a-4e15-8a4e-247dd8ded682" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1732bd181ad840a5159f02788236bd28", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b4938d3e-7c48-4d2e-8380-165d1e742513", + "x-ms-client-request-id": "1732bd181ad840a5159f02788236bd28", + "x-ms-correlation-request-id": "b0cb45d2-4dce-464a-93f1-7b0c1ac64f83", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "abdaa143-3a01-4819-86f9-dd5de86f8044", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071212Z:b0cb45d2-4dce-464a-93f1-7b0c1ac64f83" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "034c97aedddd8d21e88f0de1f682aec2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "89aea790-52ce-444b-bcf9-06525c744405", + "x-ms-client-request-id": "034c97aedddd8d21e88f0de1f682aec2", + "x-ms-correlation-request-id": "906a8899-1d44-497b-a20a-6bf1ff096bc2", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "09eed37d-2206-494d-a576-d3f575bc6699", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071213Z:906a8899-1d44-497b-a20a-6bf1ff096bc2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "05a1a525d00c99756bc824c2374938d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1cb09b6c-682b-4cbe-94ed-2e22667e2ad3", + "x-ms-client-request-id": "05a1a525d00c99756bc824c2374938d5", + "x-ms-correlation-request-id": "6e6b6f28-8e50-4bcf-b2ec-81b955a3712e", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "abfb61a8-5c2c-4418-9351-641057623265", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071214Z:6e6b6f28-8e50-4bcf-b2ec-81b955a3712e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8014cb64285b3a0d9ba52e490dc34993", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0379834e-eac4-4beb-9845-773b505491cc", + "x-ms-client-request-id": "8014cb64285b3a0d9ba52e490dc34993", + "x-ms-correlation-request-id": "3c8c0191-748f-4b4a-9212-01039b2f21f0", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "83ea2764-af9c-4228-a605-9c9923d83ef8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071216Z:3c8c0191-748f-4b4a-9212-01039b2f21f0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dc533ff0b894de1b21b29714b85f559f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "56996e80-2603-4b3a-ad6f-d67740a0a7ca", + "x-ms-client-request-id": "dc533ff0b894de1b21b29714b85f559f", + "x-ms-correlation-request-id": "1254c1d7-cff4-4fa5-9ef6-1c19c345b59c", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "32b78f26-57b8-46ea-a73b-a0b754e82bd5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071217Z:1254c1d7-cff4-4fa5-9ef6-1c19c345b59c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2b7c37572e6dfc6698676966a12c8ba7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "13ab4cc3-86e3-4fb7-944a-7a72bb8c1bd6", + "x-ms-client-request-id": "2b7c37572e6dfc6698676966a12c8ba7", + "x-ms-correlation-request-id": "770f5d93-1d74-49af-9341-1af8302d83ad", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "ab90443d-df37-4c90-83a6-2311126f3586", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071218Z:770f5d93-1d74-49af-9341-1af8302d83ad" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f7d1917e5bf6ac41af365fa991f8813b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "dc6c6a33-9eb1-41cf-9ae9-c0d1adb1ef6d", + "x-ms-client-request-id": "f7d1917e5bf6ac41af365fa991f8813b", + "x-ms-correlation-request-id": "1c198ef5-9316-4823-8db2-5090a60ab2fc", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "1dd882c1-719d-4446-b713-f00a7349e4d2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071219Z:1c198ef5-9316-4823-8db2-5090a60ab2fc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d6f18f4f1e47c226d956442d4eb43df4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "83ec31e6-e952-4704-935e-7b0d632061c8", + "x-ms-client-request-id": "d6f18f4f1e47c226d956442d4eb43df4", + "x-ms-correlation-request-id": "2422f421-9e81-4e80-9531-4f2e8a4c7a34", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "a3a62d64-cae4-4772-aa82-9777918f7912", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071221Z:2422f421-9e81-4e80-9531-4f2e8a4c7a34" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2795ef265e8dfca8f6d07b37cebd6b9f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "70fb874d-4259-4a86-9f10-dd47ca48c989", + "x-ms-client-request-id": "2795ef265e8dfca8f6d07b37cebd6b9f", + "x-ms-correlation-request-id": "06575304-1efd-474c-903d-c4052527765e", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "ee1ce5c5-9786-4485-9f90-92792172505d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071222Z:06575304-1efd-474c-903d-c4052527765e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "11172ee5b53b60606b0f1e9f16135dfb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "85371dc2-2509-408b-88ac-a6aefe0fc3a0", + "x-ms-client-request-id": "11172ee5b53b60606b0f1e9f16135dfb", + "x-ms-correlation-request-id": "b1262796-bb05-4260-829a-f18ed3363cf2", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "2456c49f-5c8d-4940-8579-2fa581a8917f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071223Z:b1262796-bb05-4260-829a-f18ed3363cf2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a1826af85a63f1aee6f5df76a3eef31b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "81c3094f-0760-438d-986b-9cc1402a19ee", + "x-ms-client-request-id": "a1826af85a63f1aee6f5df76a3eef31b", + "x-ms-correlation-request-id": "8ad7bb01-4076-4c83-b1cf-8794141993b4", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "53c9ab8c-f1b7-4c03-821e-f550f70a9bd3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071225Z:8ad7bb01-4076-4c83-b1cf-8794141993b4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2047a5eb2b9d70b98f35bc7e3f09e5e2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "c8eeb619-97eb-4682-a457-6c83aa8fb7f4", + "x-ms-client-request-id": "2047a5eb2b9d70b98f35bc7e3f09e5e2", + "x-ms-correlation-request-id": "36bc5d68-dc48-4a05-8f94-d6cd57024bb5", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "6d310092-6e76-41e9-a21b-4a16aff51bda", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071226Z:36bc5d68-dc48-4a05-8f94-d6cd57024bb5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "643e8073c93b8a3c7f262b46d6e9bc7c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7a4dfc8e-238a-4c3e-80f2-4de408c638c5", + "x-ms-client-request-id": "643e8073c93b8a3c7f262b46d6e9bc7c", + "x-ms-correlation-request-id": "a02c4b13-ec87-41f1-92d8-08e6e272b603", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "23ed6d7e-d3ff-4b74-bdd6-57e5acdfefc9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071227Z:a02c4b13-ec87-41f1-92d8-08e6e272b603" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "71b4021b3ccbcd5db111122d9e2fb1dd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "64a0d046-6271-4359-a6de-1543db359109", + "x-ms-client-request-id": "71b4021b3ccbcd5db111122d9e2fb1dd", + "x-ms-correlation-request-id": "096a9a72-4426-422e-a13c-2907d1cc31bc", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "f923eedd-af36-4b03-aabf-25548b7364f0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071228Z:096a9a72-4426-422e-a13c-2907d1cc31bc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2303fd0f8fb021e068bda076ff739aa5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "95ac9d40-01c3-45c5-a1b1-97991ae064c8", + "x-ms-client-request-id": "2303fd0f8fb021e068bda076ff739aa5", + "x-ms-correlation-request-id": "8a0e32c8-4bf4-4c6c-9021-3954f99fafda", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "ac3de6c6-b411-4682-b676-16c83571ba1a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071230Z:8a0e32c8-4bf4-4c6c-9021-3954f99fafda" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3c623f78735436162270b329b70eec50", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "ce87ac1d-cb94-4bc9-bb8a-61579502d0f5", + "x-ms-client-request-id": "3c623f78735436162270b329b70eec50", + "x-ms-correlation-request-id": "11764c01-0dbe-4a5a-8634-149edd43302e", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "c564b659-56b4-4c1c-bfeb-8925211f3647", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071231Z:11764c01-0dbe-4a5a-8634-149edd43302e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d8364e7499e68bcc2292080e9ce6cd3d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "80731bcd-a2c0-4b55-a464-102c97ae3e35", + "x-ms-client-request-id": "d8364e7499e68bcc2292080e9ce6cd3d", + "x-ms-correlation-request-id": "a6cffd4e-e995-4008-a3e3-0008eea6ca66", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-request-id": "5dda6c9e-4013-43e8-a7bb-3a27a334148a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071232Z:a6cffd4e-e995-4008-a3e3-0008eea6ca66" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5eb46c7674cc9c88e6cd013fdcb6695a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5e31798f-84ef-4ca6-a529-a5536aedb464", + "x-ms-client-request-id": "5eb46c7674cc9c88e6cd013fdcb6695a", + "x-ms-correlation-request-id": "ff7cc2cb-4375-411b-9406-2c939ee29d05", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "27eae862-e933-43cc-aadb-aad0c73bec74", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071234Z:ff7cc2cb-4375-411b-9406-2c939ee29d05" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b10250d0c13ddfbf73d71ac16a07993b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "d2e557f4-8b3c-440f-af05-f4ddc05aecab", + "x-ms-client-request-id": "b10250d0c13ddfbf73d71ac16a07993b", + "x-ms-correlation-request-id": "921a5b2b-f6f0-4e70-9adc-ff66a1dc487a", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "09a8a520-7026-49f8-b1b6-ff47dde53858", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071235Z:921a5b2b-f6f0-4e70-9adc-ff66a1dc487a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4bb375a38e59ff83c599f218988caf6b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "072585de-be60-410b-9ed4-e3e09795f75c", + "x-ms-client-request-id": "4bb375a38e59ff83c599f218988caf6b", + "x-ms-correlation-request-id": "5fb3a467-9081-46db-b7e3-269488ae843c", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "851821e4-cf8f-4dcf-8035-f5810be1514d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071236Z:5fb3a467-9081-46db-b7e3-269488ae843c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4b3eae291be4b400add5eaf55ac731de", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a6a426d4-3115-41cc-9eb6-3abdb2a0fa62", + "x-ms-client-request-id": "4b3eae291be4b400add5eaf55ac731de", + "x-ms-correlation-request-id": "8c8c14b2-aae5-41f2-ba89-a9b779048c2b", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "4b99c99b-fa77-4ff9-84f8-4b4286d68834", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071237Z:8c8c14b2-aae5-41f2-ba89-a9b779048c2b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "679cc5331e034200cd02eca3cfa647e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "dfa6c6c9-9441-4334-969b-d33d544256a5", + "x-ms-client-request-id": "679cc5331e034200cd02eca3cfa647e7", + "x-ms-correlation-request-id": "c10e558d-f6f1-442b-ade3-0a99c55532b6", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "16a93d01-b593-4410-99bc-c983d9961c38", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071239Z:c10e558d-f6f1-442b-ade3-0a99c55532b6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bb98ae274ec9875674fe9e84a38da5fd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "c6f349bd-b291-4aa9-95f9-690796e37439", + "x-ms-client-request-id": "bb98ae274ec9875674fe9e84a38da5fd", + "x-ms-correlation-request-id": "cd62c197-373a-4637-adb8-be0d1c9a4090", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "fb7c25fb-b141-42b6-8eaf-a33af1671912", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071240Z:cd62c197-373a-4637-adb8-be0d1c9a4090" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d2e4146848ef0a68adfb7ee22e5de506", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "40fc8517-15b2-4fb2-bd79-9246df7adeb6", + "x-ms-client-request-id": "d2e4146848ef0a68adfb7ee22e5de506", + "x-ms-correlation-request-id": "75ddbd13-c874-4d73-9922-482f663754bf", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "f0ac8fab-bc87-41fe-adab-a7f26cd3d07b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071241Z:75ddbd13-c874-4d73-9922-482f663754bf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "abce038d752ee5146f15f205807c9e3f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "bcee77b6-f05a-4100-8e3c-c9fefb6dd05a", + "x-ms-client-request-id": "abce038d752ee5146f15f205807c9e3f", + "x-ms-correlation-request-id": "d8eb74a9-e9a5-4cac-aa61-33db92deeaa8", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "4069dd20-3b0b-4f08-8326-c752f07c3d9d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071243Z:d8eb74a9-e9a5-4cac-aa61-33db92deeaa8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bb3bee5c75c2dff7468e0ececf745817", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "42e7043c-2421-4e23-9457-7e4461a33ea6", + "x-ms-client-request-id": "bb3bee5c75c2dff7468e0ececf745817", + "x-ms-correlation-request-id": "d6734f91-380b-4ef6-abb1-096208008afc", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "3d1e70b1-2a56-4e00-a1c5-50ca705cd90e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071244Z:d6734f91-380b-4ef6-abb1-096208008afc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a0f69818f9bff2cfffff63da56628a31", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:12: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": "1f4f7ff7-5965-41b2-8335-d6efaad93f9d", + "x-ms-client-request-id": "a0f69818f9bff2cfffff63da56628a31", + "x-ms-correlation-request-id": "81e25dfe-2068-4cd2-be37-f80d8f754956", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "0e141498-3678-41be-bb8f-8e85ee0fc109", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071245Z:81e25dfe-2068-4cd2-be37-f80d8f754956" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "40853f5c2a2218430cee65a0674615fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ea2533a8-e20a-432d-8870-e1879d54474c", + "x-ms-client-request-id": "40853f5c2a2218430cee65a0674615fa", + "x-ms-correlation-request-id": "bb0e7454-07e1-49c5-965e-0d5cdb9a43a8", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "9421984b-008e-4fdf-b689-8a21141256bb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071246Z:bb0e7454-07e1-49c5-965e-0d5cdb9a43a8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e8ecdabcfe85637f1f49bbc2111c89e3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c39c4b79-83fd-4933-a91f-9518c1bd7391", + "x-ms-client-request-id": "e8ecdabcfe85637f1f49bbc2111c89e3", + "x-ms-correlation-request-id": "cccd63d0-85ae-4001-831d-33c872fad8d0", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "ce6b4b0a-ced0-4429-ac92-aaf27c010a45", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071248Z:cccd63d0-85ae-4001-831d-33c872fad8d0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9071dc0318efeef554dd94d0932f8ab9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "458966fe-d5cd-4922-949e-cf2fa17e2ca5", + "x-ms-client-request-id": "9071dc0318efeef554dd94d0932f8ab9", + "x-ms-correlation-request-id": "ce0ffcd6-1794-4b1c-8bf5-74eda9a037cc", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "0522ba14-795b-4475-80a7-343f210494a5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071249Z:ce0ffcd6-1794-4b1c-8bf5-74eda9a037cc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7b1e68e9a2765dabbf2120d96e8106ef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:12: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": "45e951e0-0d84-4451-a1f6-404c9f3d5aa1", + "x-ms-client-request-id": "7b1e68e9a2765dabbf2120d96e8106ef", + "x-ms-correlation-request-id": "2fc294e1-3715-44a5-9d1b-61d3577f61b2", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "f9001816-896c-454d-b75f-604079142bee", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071250Z:2fc294e1-3715-44a5-9d1b-61d3577f61b2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8a9c826584d4a30be5fd93a76aaecff0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "cae750a1-dc2f-41da-bd42-43688100bd7c", + "x-ms-client-request-id": "8a9c826584d4a30be5fd93a76aaecff0", + "x-ms-correlation-request-id": "78fc6adb-4579-4549-a376-0abb28d6a6d6", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "7099c3da-d239-447e-b503-8af79eb422d4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071251Z:78fc6adb-4579-4549-a376-0abb28d6a6d6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a9d902be0efd616d3113d1cdf71c7fd3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "49e0935e-539f-47b3-a878-dc4fd0f8fba8", + "x-ms-client-request-id": "a9d902be0efd616d3113d1cdf71c7fd3", + "x-ms-correlation-request-id": "c05c231a-ee4d-460c-a059-b420f200a172", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "bd042b3d-4590-44cf-94f1-a0e348cb3498", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071253Z:c05c231a-ee4d-460c-a059-b420f200a172" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "116ba4d7ff9264e45d7a95780e03f310", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "deeb87c0-94f7-462e-b08d-d80ff885cc73", + "x-ms-client-request-id": "116ba4d7ff9264e45d7a95780e03f310", + "x-ms-correlation-request-id": "b36525a6-d6e0-43d5-9a43-8502c93b46b9", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "eb6f1c69-c632-4ce2-a8e9-aa8e69207eca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071254Z:b36525a6-d6e0-43d5-9a43-8502c93b46b9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6c1a30525da757f1143a59c0b33eacc9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "fea38f2e-9253-47d7-b3f7-49688778a6aa", + "x-ms-client-request-id": "6c1a30525da757f1143a59c0b33eacc9", + "x-ms-correlation-request-id": "6dec3a4e-537f-4560-9c00-697f39b2d441", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "1255c7eb-a08b-48c3-afba-76841ec5c4e3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071255Z:6dec3a4e-537f-4560-9c00-697f39b2d441" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c6d0c07ebd43bf5d1d744c8378f4532d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "1e7c1b99-16fe-4c06-9af6-30f3a406e6b1", + "x-ms-client-request-id": "c6d0c07ebd43bf5d1d744c8378f4532d", + "x-ms-correlation-request-id": "5153aeb1-c9ac-46e8-aa32-1c8bbb759442", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "b2082dea-cef0-465e-948a-0d06efbedfc4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071257Z:5153aeb1-c9ac-46e8-aa32-1c8bbb759442" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c77ac1201301792bb214fd57a524b11e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "61857b0a-8f69-40f1-aef7-8688792341ab", + "x-ms-client-request-id": "c77ac1201301792bb214fd57a524b11e", + "x-ms-correlation-request-id": "bc892bcc-b476-424b-b446-62793726effc", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "65abc91d-436c-4076-ada8-b544609b2386", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071258Z:bc892bcc-b476-424b-b446-62793726effc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4dfacbce2c3394ccd25a4f33116ede20", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f63e793f-afb7-4c9b-bc60-89b3800e2664", + "x-ms-client-request-id": "4dfacbce2c3394ccd25a4f33116ede20", + "x-ms-correlation-request-id": "3a9eaf28-80a9-40b6-b1e4-37b48c213b42", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "8876da5d-f1c0-413b-a0bb-c9289f7e9219", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071259Z:3a9eaf28-80a9-40b6-b1e4-37b48c213b42" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f29f2ce7e4c36ac79556132fc00519f9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b313ac05-7bd9-4db8-816d-b2934383d6a3", + "x-ms-client-request-id": "f29f2ce7e4c36ac79556132fc00519f9", + "x-ms-correlation-request-id": "9d3ce158-b55f-4de8-929b-8cd3b3d58116", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "34636297-93ff-4289-a9cb-409e0227c9f0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071300Z:9d3ce158-b55f-4de8-929b-8cd3b3d58116" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "acb42dc205faf3faf4e6f4a6c3f76843", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9be7b7d1-a4d8-4442-8f8c-25d0657d76fe", + "x-ms-client-request-id": "acb42dc205faf3faf4e6f4a6c3f76843", + "x-ms-correlation-request-id": "aa9948fd-7dbf-4d8b-8ec7-3b9641ded793", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "2347e85b-762f-4d10-8f8e-15cf70dd3281", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071302Z:aa9948fd-7dbf-4d8b-8ec7-3b9641ded793" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7970dc35bf84ea5b038fb8dc199dd4cd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b881cda3-b5b0-43af-a7e6-fd90a5c14174", + "x-ms-client-request-id": "7970dc35bf84ea5b038fb8dc199dd4cd", + "x-ms-correlation-request-id": "be11186f-528e-447a-a688-a080b8ebbed2", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "979a4ebd-724b-4865-a01f-357b2932920b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071303Z:be11186f-528e-447a-a688-a080b8ebbed2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e370554031bae22631abfddcef21a79d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b1441f8e-8102-4d9c-80d7-cd59fa844581", + "x-ms-client-request-id": "e370554031bae22631abfddcef21a79d", + "x-ms-correlation-request-id": "051c78b5-4be4-42de-8377-bf66d8335552", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "65062f91-186f-48c4-b68c-e40a9568eacd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071304Z:051c78b5-4be4-42de-8377-bf66d8335552" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e3facfeea0950374d1caa96a4c1eda57", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2f596ea0-4dc6-412d-ab25-6f9e474f4123", + "x-ms-client-request-id": "e3facfeea0950374d1caa96a4c1eda57", + "x-ms-correlation-request-id": "86a09cdf-b8a9-4ceb-88be-ac5aeae24095", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "1bc22ced-5b8c-4ef9-9822-a6ba63bcbf59", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071305Z:86a09cdf-b8a9-4ceb-88be-ac5aeae24095" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6d65271184870389b68e48d8c17efae2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "cbd1dec0-39bc-4285-964c-667880994494", + "x-ms-client-request-id": "6d65271184870389b68e48d8c17efae2", + "x-ms-correlation-request-id": "b82e9ce8-19d2-47ea-8f28-ef710548f454", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "0aace012-33ad-4873-8fa9-08e5e9368497", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071307Z:b82e9ce8-19d2-47ea-8f28-ef710548f454" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "49ee1be8f0a2a037e16c12ef88bb9513", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "84ebe3f1-5186-460b-b3e4-b8f0436e8cd7", + "x-ms-client-request-id": "49ee1be8f0a2a037e16c12ef88bb9513", + "x-ms-correlation-request-id": "e3cf0238-172b-437b-b0a2-bc1f39fbb2e5", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "4a1bdf41-9391-4968-a358-8520b4b40ed5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071308Z:e3cf0238-172b-437b-b0a2-bc1f39fbb2e5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c8cba6d139bb691646f62d07589c4252", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0f1b3ab0-e3c4-424a-a01d-d19df698e5a8", + "x-ms-client-request-id": "c8cba6d139bb691646f62d07589c4252", + "x-ms-correlation-request-id": "68a4a529-e81b-43f1-9580-2c0018cba018", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "5ce4da5a-a523-40d0-b2f4-5e1c00b09925", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071309Z:68a4a529-e81b-43f1-9580-2c0018cba018" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3182c6d0913020b4f0c58c1a72997bfa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e632343d-d97e-493c-b8a1-162291a9ba42", + "x-ms-client-request-id": "3182c6d0913020b4f0c58c1a72997bfa", + "x-ms-correlation-request-id": "4a2ba3a4-96e3-4d9a-880f-365d1b05833f", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "bf0ebc00-b526-4291-8d8e-f15acf7f1790", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071311Z:4a2ba3a4-96e3-4d9a-880f-365d1b05833f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1b0734f832b3af27048502acc3304844", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "341847c2-b505-41d7-a21c-10b8c0e3273d", + "x-ms-client-request-id": "1b0734f832b3af27048502acc3304844", + "x-ms-correlation-request-id": "cb0072a3-aae8-481e-84bd-39788b25bd7b", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "a85d161d-bf76-4312-b848-c9dc53c7f541", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071312Z:cb0072a3-aae8-481e-84bd-39788b25bd7b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c21fbf2a64393fe3f1aad8f5acfbf6ac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c4beebbc-dbc4-4015-ac02-636ba985de92", + "x-ms-client-request-id": "c21fbf2a64393fe3f1aad8f5acfbf6ac", + "x-ms-correlation-request-id": "64fd4cd2-cf14-4785-9727-489411bb84ad", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "41252860-fbcb-4454-965c-118e18163b2e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071313Z:64fd4cd2-cf14-4785-9727-489411bb84ad" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "230e327b26949e9f9ed22caa8e075dbf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e636b7cd-15b9-4a8a-ab5c-0b6b5cd1d71b", + "x-ms-client-request-id": "230e327b26949e9f9ed22caa8e075dbf", + "x-ms-correlation-request-id": "dae1281b-2c33-4fa8-85a0-3cbb4b992970", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "2a8d9401-de38-4b5d-8c0a-36cffd4c791b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071314Z:dae1281b-2c33-4fa8-85a0-3cbb4b992970" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b3ef477cb87a94c151c7290959310308", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2684dae2-49ef-41d8-a9d6-e425e2617773", + "x-ms-client-request-id": "b3ef477cb87a94c151c7290959310308", + "x-ms-correlation-request-id": "d670e661-1e1e-4738-b203-f9b0d684c81b", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "82b0120e-2ae7-42c4-8f04-7207d32a07b8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071316Z:d670e661-1e1e-4738-b203-f9b0d684c81b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9131568e252103b0208123673738b1e9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0d4fd9b0-6fe2-4fba-b9bc-5cfd21b059f4", + "x-ms-client-request-id": "9131568e252103b0208123673738b1e9", + "x-ms-correlation-request-id": "06c9595b-2280-479b-9787-1867897c4e0c", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "8b5b069a-e573-48bd-97bd-c2847a3cdadb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071317Z:06c9595b-2280-479b-9787-1867897c4e0c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6478184c430cc232717ad1cdfd95446c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ffb89a06-447a-4687-9151-64a273f5697a", + "x-ms-client-request-id": "6478184c430cc232717ad1cdfd95446c", + "x-ms-correlation-request-id": "0aac2ab5-55af-4721-abee-60e0ac84e5ff", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "760e1e1d-14d6-4c1a-9719-302c9930bcae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071318Z:0aac2ab5-55af-4721-abee-60e0ac84e5ff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "381c23cfccd6579d97ec92f895595c19", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "31534645-727d-4536-9ea4-c490882d4a76", + "x-ms-client-request-id": "381c23cfccd6579d97ec92f895595c19", + "x-ms-correlation-request-id": "85c5926c-8ec3-4b1a-8165-452216aed242", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "cdb5abf4-873d-4ee1-8a0b-b34c679b03e6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071320Z:85c5926c-8ec3-4b1a-8165-452216aed242" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "41bc40169eb84bfc236f1fa753e2068a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7545e628-a274-459b-bfa5-8c51041f9850", + "x-ms-client-request-id": "41bc40169eb84bfc236f1fa753e2068a", + "x-ms-correlation-request-id": "9cb8332f-e2bd-42ce-aa01-8052fa960e6f", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "822aa659-e130-4b68-8c7f-c20da902cb66", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071321Z:9cb8332f-e2bd-42ce-aa01-8052fa960e6f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1497b63d791c80137b21cc1fb0392d17", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "15b11a23-8625-494d-ac5e-dd076546571d", + "x-ms-client-request-id": "1497b63d791c80137b21cc1fb0392d17", + "x-ms-correlation-request-id": "b42208d4-7231-4163-99f2-e976529183fb", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "5923b0c1-dc10-447d-a7ff-68d4b62817e2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071322Z:b42208d4-7231-4163-99f2-e976529183fb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bcb7b81d02d930b326d01467acf504b5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "49d433ba-51b3-4c2e-8e58-53e630545502", + "x-ms-client-request-id": "bcb7b81d02d930b326d01467acf504b5", + "x-ms-correlation-request-id": "eeac8493-9ff0-4210-b1e8-a3fe44541141", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "1049ead7-2f9e-4e52-8370-2a070659e69a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071323Z:eeac8493-9ff0-4210-b1e8-a3fe44541141" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "debb08e548c29cfd2c3bc697d2dc9be9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7a6385a5-5266-41ed-ad7a-f42fb16242ce", + "x-ms-client-request-id": "debb08e548c29cfd2c3bc697d2dc9be9", + "x-ms-correlation-request-id": "908aef7c-294f-413d-96c9-d3e8aa836d30", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "237101ba-6cab-4133-885e-f5a37f9047e9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071325Z:908aef7c-294f-413d-96c9-d3e8aa836d30" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9b890842492b3ab00267ed4b64acd385", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e6b91901-0e22-4645-80d5-1eaa2905a568", + "x-ms-client-request-id": "9b890842492b3ab00267ed4b64acd385", + "x-ms-correlation-request-id": "4ef1e64a-e14a-44d0-9969-38fee886987a", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "a243acde-2878-48dc-96cd-2d52813a00b4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071326Z:4ef1e64a-e14a-44d0-9969-38fee886987a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a73a171d4e7ed555bb1a909e3c1c5e49", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a4f3e1b5-7326-4a35-b4e2-bac81a5c79cd", + "x-ms-client-request-id": "a73a171d4e7ed555bb1a909e3c1c5e49", + "x-ms-correlation-request-id": "72f70d04-1d0a-462e-a1f3-eef16cd4400b", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "f384bcaa-b7cc-4997-8c0c-7075052ba089", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071327Z:72f70d04-1d0a-462e-a1f3-eef16cd4400b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a4252b34696c9b895781db5b5ab13880", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f13490b2-bb0f-4f90-b747-63a52df2a33d", + "x-ms-client-request-id": "a4252b34696c9b895781db5b5ab13880", + "x-ms-correlation-request-id": "04ba077c-3391-4e3f-ae99-96cc6699dcaf", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "8bdde20e-4938-4c1a-8b11-4035b47c241f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071328Z:04ba077c-3391-4e3f-ae99-96cc6699dcaf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bb7a4067f3a2f36bb3b3df11b912fde6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "caa665c8-9b4d-4b49-a675-a0bc64298056", + "x-ms-client-request-id": "bb7a4067f3a2f36bb3b3df11b912fde6", + "x-ms-correlation-request-id": "761fa0e0-e32f-4642-a975-51409b7f43cb", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "f7bedfb8-850d-4570-ba4b-6008ce2dd5bf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071330Z:761fa0e0-e32f-4642-a975-51409b7f43cb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3916a3092f86b4198d9e4ffd72f97b09", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "eed7f4a9-96b0-411e-837d-110f54cb6860", + "x-ms-client-request-id": "3916a3092f86b4198d9e4ffd72f97b09", + "x-ms-correlation-request-id": "369a71f6-bba1-4d74-b629-9f10ea1bfe47", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "e227327e-3b31-472c-af67-64d7879e49d3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071331Z:369a71f6-bba1-4d74-b629-9f10ea1bfe47" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fc360fe1a2a140a7bf31f1b88978e245", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a7e2e6b9-7027-478b-912c-87b47e47ce7f", + "x-ms-client-request-id": "fc360fe1a2a140a7bf31f1b88978e245", + "x-ms-correlation-request-id": "cebd8044-b54b-48cd-8f8b-62b29f83ef12", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "d80187b9-030b-4814-abf9-ae1b23dd0c89", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071332Z:cebd8044-b54b-48cd-8f8b-62b29f83ef12" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b652f483ff9a38f927c62d03a46d80b9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c6c6f1f7-c631-4c56-b03a-08db99a04a95", + "x-ms-client-request-id": "b652f483ff9a38f927c62d03a46d80b9", + "x-ms-correlation-request-id": "01ed966d-86c8-4a45-bada-863bb2dbe559", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "b2b7b4c9-6b4b-46cd-9d0d-a3cced9022de", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071334Z:01ed966d-86c8-4a45-bada-863bb2dbe559" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a92fd63800dc6644fcd579553d612a14", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3214c11b-c364-4037-80f1-86095ddbf601", + "x-ms-client-request-id": "a92fd63800dc6644fcd579553d612a14", + "x-ms-correlation-request-id": "df74ff00-cec3-4286-88a7-641b2991ae22", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "4f14c351-25a2-48e2-9c91-357e3626f238", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071335Z:df74ff00-cec3-4286-88a7-641b2991ae22" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7e790abcc4a7e26e15fdd5db75a39c52", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0c56dc07-2af2-4f11-8e6b-c5fdfcc28370", + "x-ms-client-request-id": "7e790abcc4a7e26e15fdd5db75a39c52", + "x-ms-correlation-request-id": "e0775a00-94e3-4af9-98e9-6a6287a223c5", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "1fe0c1f3-635f-41b7-86db-15b523098436", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071336Z:e0775a00-94e3-4af9-98e9-6a6287a223c5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b37f38b138498268b0ebbac585a4fbc5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "2ba04945-4e6c-457f-8ed1-5c6e1800941f", + "x-ms-client-request-id": "b37f38b138498268b0ebbac585a4fbc5", + "x-ms-correlation-request-id": "a67a539a-dcfe-47af-bdb4-36556de5e3fe", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "a36b3e22-65e5-4e48-a810-d9e02f218a55", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071337Z:a67a539a-dcfe-47af-bdb4-36556de5e3fe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9947199b02f47311674c93df2b69f158", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "02f8a1ef-d97b-4cdb-a73b-fa186afa9d2d", + "x-ms-client-request-id": "9947199b02f47311674c93df2b69f158", + "x-ms-correlation-request-id": "ef7801ee-ed34-4122-b326-6aab838df041", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "258094bb-fd03-403a-ac4a-3a371b07b180", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071339Z:ef7801ee-ed34-4122-b326-6aab838df041" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "04a4273877e183cba1f6cdbc0aa95c71", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f515f7bd-ff6d-4d57-8a0c-bc69d1cef9af", + "x-ms-client-request-id": "04a4273877e183cba1f6cdbc0aa95c71", + "x-ms-correlation-request-id": "85fb8c1f-7a9f-472f-a8e0-d965ab24e6cd", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "fd656248-f877-4dc4-a564-5969d05d23cc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071340Z:85fb8c1f-7a9f-472f-a8e0-d965ab24e6cd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5b3f0f01035cae5d270c4bfca4895747", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a0c4a6d2-65cb-4d2b-9a35-92c3a26b22e4", + "x-ms-client-request-id": "5b3f0f01035cae5d270c4bfca4895747", + "x-ms-correlation-request-id": "2033e94b-3072-4c47-a9a4-d2b60b3e5c65", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "81f97b00-4360-4698-8217-a8e1e73980f0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071341Z:2033e94b-3072-4c47-a9a4-d2b60b3e5c65" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5e8c62faf60023e44ec3f7fd345469be", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "11c0d2b9-b7d6-4f79-bc17-5811e0c7d7e7", + "x-ms-client-request-id": "5e8c62faf60023e44ec3f7fd345469be", + "x-ms-correlation-request-id": "7a9a35bb-feea-4c75-a9f8-cd53f9acd028", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "f017b522-5ae5-4bd2-88b0-29fc3d4e8ef7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071342Z:7a9a35bb-feea-4c75-a9f8-cd53f9acd028" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1cdd22f0952935fbc9f5ddd42ccedf18", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4e5d4d1e-d04e-4a00-9de4-b1a665a583cc", + "x-ms-client-request-id": "1cdd22f0952935fbc9f5ddd42ccedf18", + "x-ms-correlation-request-id": "0579090c-4bfc-42cd-84e0-b38f7bf839bf", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "67c05c3b-61e8-4d4d-824b-bc77b1f6adf3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071344Z:0579090c-4bfc-42cd-84e0-b38f7bf839bf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a7c1869ffe1d0b702a1b0d980b6079d2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "2dbbb3fe-7a7b-432a-bc65-e35a23820c26", + "x-ms-client-request-id": "a7c1869ffe1d0b702a1b0d980b6079d2", + "x-ms-correlation-request-id": "0a9e5880-88e6-49b3-b12c-70af6ace7246", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "2751ad42-7e3f-401e-afce-7c1db8f76f3b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071345Z:0a9e5880-88e6-49b3-b12c-70af6ace7246" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "820c8da33bac651e6656940b190ff77f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9957c59a-e2bb-406d-b1c7-64f470542f73", + "x-ms-client-request-id": "820c8da33bac651e6656940b190ff77f", + "x-ms-correlation-request-id": "ec2939f6-b433-44a0-8092-2b595970ef61", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "8f21bdab-60cc-4d3a-89d4-548a91418b2e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071346Z:ec2939f6-b433-44a0-8092-2b595970ef61" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ae5ddfe4c193f1a0b1d1f10d87632969", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "75ec88b7-d0aa-4de1-a64b-47bf1664b316", + "x-ms-client-request-id": "ae5ddfe4c193f1a0b1d1f10d87632969", + "x-ms-correlation-request-id": "6e097453-398b-49c8-9f4b-3981677c8e85", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-request-id": "8c5cc9ed-e7b5-4012-8f59-0dc941b8597d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071348Z:6e097453-398b-49c8-9f4b-3981677c8e85" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9f310a7b5cc2646b685c41c66965f21b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "74e8fa8a-fb3e-4903-afa4-8e19cea3e50f", + "x-ms-client-request-id": "9f310a7b5cc2646b685c41c66965f21b", + "x-ms-correlation-request-id": "59fe6c56-6140-40f4-acf3-31ef045e29f3", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "31178b02-f0d0-4f8c-8639-dd4ecd3ba518", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071349Z:59fe6c56-6140-40f4-acf3-31ef045e29f3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2cb38e24cb02e13fec1ad0da4910dd03", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "50c1963d-f31c-4cd9-8d3f-d25fcfe5f020", + "x-ms-client-request-id": "2cb38e24cb02e13fec1ad0da4910dd03", + "x-ms-correlation-request-id": "f69e65e9-4e0e-4fc4-851e-d8ded7ca79a1", + "x-ms-ratelimit-remaining-subscription-reads": "11788", + "x-ms-request-id": "4febf264-25eb-4c23-8877-b9057feb7d3a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071350Z:f69e65e9-4e0e-4fc4-851e-d8ded7ca79a1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0e8f2b2c58de87bd73f9453680d9884c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e21ed518-a8b8-4d84-ac22-95b57d29e180", + "x-ms-client-request-id": "0e8f2b2c58de87bd73f9453680d9884c", + "x-ms-correlation-request-id": "6bcfcf8a-cef0-4bc2-a475-ae473e723fac", + "x-ms-ratelimit-remaining-subscription-reads": "11787", + "x-ms-request-id": "55a8b978-6d8b-4ad0-8c53-e2ac2777f8b9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071351Z:6bcfcf8a-cef0-4bc2-a475-ae473e723fac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f9e8d6dffdafaf66cb50b2a78c901a57", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2e2c77b1-21f4-48b4-8200-898e18056b1e", + "x-ms-client-request-id": "f9e8d6dffdafaf66cb50b2a78c901a57", + "x-ms-correlation-request-id": "17f037c8-1b65-414e-9303-4d039fc8b001", + "x-ms-ratelimit-remaining-subscription-reads": "11786", + "x-ms-request-id": "2ddb44f2-e3ac-4ec3-9022-89d0d91f14c0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071353Z:17f037c8-1b65-414e-9303-4d039fc8b001" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3d9a3e7fe4d6cb3dd02bb80985086013", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7e761602-7adf-42ba-9dc1-5cc594d1efc3", + "x-ms-client-request-id": "3d9a3e7fe4d6cb3dd02bb80985086013", + "x-ms-correlation-request-id": "e4f7e4a0-3cb1-4430-bc2e-7309e8ad1f5f", + "x-ms-ratelimit-remaining-subscription-reads": "11785", + "x-ms-request-id": "01214736-c0cc-449f-a6ce-e0b233858bee", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071354Z:e4f7e4a0-3cb1-4430-bc2e-7309e8ad1f5f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "73fb8491e3272f53c5df428da615fbe3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "daea1059-de18-471f-b49d-0ab43d62a46a", + "x-ms-client-request-id": "73fb8491e3272f53c5df428da615fbe3", + "x-ms-correlation-request-id": "0cd4b135-5aef-4605-8e87-8ab3227f18f9", + "x-ms-ratelimit-remaining-subscription-reads": "11784", + "x-ms-request-id": "70e6efcb-8fe5-4815-a8c8-3cec0b4c59c1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071355Z:0cd4b135-5aef-4605-8e87-8ab3227f18f9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "42b7eede4b3ffb75991d2983445d29c3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "64e45b18-5b7b-4fd6-8e08-be0358184961", + "x-ms-client-request-id": "42b7eede4b3ffb75991d2983445d29c3", + "x-ms-correlation-request-id": "e4d92515-812f-4e9c-99ec-ee1880320690", + "x-ms-ratelimit-remaining-subscription-reads": "11783", + "x-ms-request-id": "702c711f-6fa3-41ca-9846-95523a481e62", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071356Z:e4d92515-812f-4e9c-99ec-ee1880320690" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "08159fefa6959b2fea6a78f6a1af25ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "839f078e-e33b-43d5-945c-4357d77d47a5", + "x-ms-client-request-id": "08159fefa6959b2fea6a78f6a1af25ba", + "x-ms-correlation-request-id": "3a7aaab3-9263-4a88-8a2a-c49d6a3c3fe1", + "x-ms-ratelimit-remaining-subscription-reads": "11782", + "x-ms-request-id": "fe19e4a3-c71f-408e-97e1-6a390b8d13ad", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071358Z:3a7aaab3-9263-4a88-8a2a-c49d6a3c3fe1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "972bd5301d5046d30e00da0abacfeb68", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "f7eb5a5a-c954-4ff4-a7f6-a54756892adc", + "x-ms-client-request-id": "972bd5301d5046d30e00da0abacfeb68", + "x-ms-correlation-request-id": "33fc3afe-01c5-4bbb-a52e-5dd170b8a0be", + "x-ms-ratelimit-remaining-subscription-reads": "11781", + "x-ms-request-id": "5b000435-5a64-4b5f-b536-38e3bc25e590", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071359Z:33fc3afe-01c5-4bbb-a52e-5dd170b8a0be" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "079d7eb5f200374ebe1c57d5d37f59e9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2e4f9f38-96b4-4645-9802-de3e6c3b12d7", + "x-ms-client-request-id": "079d7eb5f200374ebe1c57d5d37f59e9", + "x-ms-correlation-request-id": "60bdee2b-362c-46f1-a59f-2281116260c7", + "x-ms-ratelimit-remaining-subscription-reads": "11780", + "x-ms-request-id": "dfa3bd15-9ed2-400b-bc38-a92ddaa60aeb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071400Z:60bdee2b-362c-46f1-a59f-2281116260c7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6f536ef89231d273cbcffa94cc25e01b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2d6efce2-035f-49da-9f83-a5428108bafc", + "x-ms-client-request-id": "6f536ef89231d273cbcffa94cc25e01b", + "x-ms-correlation-request-id": "0796251e-e9da-469a-bf6f-95c3546eed03", + "x-ms-ratelimit-remaining-subscription-reads": "11779", + "x-ms-request-id": "dc4ba1bf-6b15-4e3e-89c1-1789d8123916", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071402Z:0796251e-e9da-469a-bf6f-95c3546eed03" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "23400f7e1e113eba86f3d934c5fe738e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "47b8a4c4-4f05-4983-9588-7668511efa01", + "x-ms-client-request-id": "23400f7e1e113eba86f3d934c5fe738e", + "x-ms-correlation-request-id": "495e9fdf-537f-4ade-9499-7d6b2c2f0272", + "x-ms-ratelimit-remaining-subscription-reads": "11778", + "x-ms-request-id": "94050cc3-de98-43f2-85c7-511585362898", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071403Z:495e9fdf-537f-4ade-9499-7d6b2c2f0272" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4c12f1a67c7c23360bcb3b30f8b96b99", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f3c0fcc2-261b-4b99-8954-618bbb8d6dab", + "x-ms-client-request-id": "4c12f1a67c7c23360bcb3b30f8b96b99", + "x-ms-correlation-request-id": "9b670916-7108-4d04-9143-ca521db96e23", + "x-ms-ratelimit-remaining-subscription-reads": "11777", + "x-ms-request-id": "68106a07-95e1-41d6-96f1-2f7f2eb4c541", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071404Z:9b670916-7108-4d04-9143-ca521db96e23" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c3563c3b363fd9d8b315e83db93e0ccd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0c7540d5-8a3d-414c-bb39-d39e69ca0536", + "x-ms-client-request-id": "c3563c3b363fd9d8b315e83db93e0ccd", + "x-ms-correlation-request-id": "0a45f2a2-b674-46b7-b2f0-3615bd1ecdae", + "x-ms-ratelimit-remaining-subscription-reads": "11776", + "x-ms-request-id": "f12364d1-3b7a-4f9b-912f-d206138b556d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071405Z:0a45f2a2-b674-46b7-b2f0-3615bd1ecdae" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dbee6b5c9412029fd91c1745e28945cd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "75c26da8-95ce-4802-80c7-3d78921794c5", + "x-ms-client-request-id": "dbee6b5c9412029fd91c1745e28945cd", + "x-ms-correlation-request-id": "21c39310-c118-488e-bc0a-7dfa81b6bffc", + "x-ms-ratelimit-remaining-subscription-reads": "11775", + "x-ms-request-id": "f40a65cc-da39-4fb8-b8dd-6d3881e91f94", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071407Z:21c39310-c118-488e-bc0a-7dfa81b6bffc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "89f84088b0a76f4f1838986794f86acc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "fcf78407-10e4-455a-a0de-24462c8f7abf", + "x-ms-client-request-id": "89f84088b0a76f4f1838986794f86acc", + "x-ms-correlation-request-id": "c49d1e31-79cc-4b42-8cde-fb4ca6b4a5a4", + "x-ms-ratelimit-remaining-subscription-reads": "11774", + "x-ms-request-id": "080b9b05-d218-4058-96b7-6db63588b4e0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071408Z:c49d1e31-79cc-4b42-8cde-fb4ca6b4a5a4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8dd46ebf90caa6869d54e9221f92f72a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ed9f7089-bf66-4307-8f6a-4c9f2205d0ea", + "x-ms-client-request-id": "8dd46ebf90caa6869d54e9221f92f72a", + "x-ms-correlation-request-id": "6ce917ae-e338-4393-922e-007dcfd704d2", + "x-ms-ratelimit-remaining-subscription-reads": "11773", + "x-ms-request-id": "1ca85149-945a-4987-8194-f48be2470fd3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071409Z:6ce917ae-e338-4393-922e-007dcfd704d2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "78b51acf8245ab251b7fc2dafc386ee1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "dd635751-3352-4062-b666-546a296c9b67", + "x-ms-client-request-id": "78b51acf8245ab251b7fc2dafc386ee1", + "x-ms-correlation-request-id": "52893d24-a657-4bd0-8b65-0e5a5f359e33", + "x-ms-ratelimit-remaining-subscription-reads": "11772", + "x-ms-request-id": "a16c23f7-7f46-4399-86d7-611d2e691b84", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071411Z:52893d24-a657-4bd0-8b65-0e5a5f359e33" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "74864bb2b8b4f802b952ec53c62d5086", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "00338719-5fcd-46f8-8ff2-06b97f396817", + "x-ms-client-request-id": "74864bb2b8b4f802b952ec53c62d5086", + "x-ms-correlation-request-id": "8e7c12c7-56a0-4e77-aa3d-60465ae113a4", + "x-ms-ratelimit-remaining-subscription-reads": "11771", + "x-ms-request-id": "311f6c33-339a-451e-8c19-09fb80a6a4d9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071412Z:8e7c12c7-56a0-4e77-aa3d-60465ae113a4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "79976d41f1433c864828714bcdabaa65", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f0eb1a5f-82bd-41dc-8b10-1fd10d20716b", + "x-ms-client-request-id": "79976d41f1433c864828714bcdabaa65", + "x-ms-correlation-request-id": "b7020ad2-cb12-46ff-960b-00c8f003a83e", + "x-ms-ratelimit-remaining-subscription-reads": "11770", + "x-ms-request-id": "953ee21e-4c70-44be-9b08-8ee5da52424b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071413Z:b7020ad2-cb12-46ff-960b-00c8f003a83e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d36f08e6820b177518bcbff396d2e5ee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5b221f0c-1df3-44e1-8bf8-c7e16376987d", + "x-ms-client-request-id": "d36f08e6820b177518bcbff396d2e5ee", + "x-ms-correlation-request-id": "fea2208c-5e17-4751-bcd1-f9ece6c1563b", + "x-ms-ratelimit-remaining-subscription-reads": "11769", + "x-ms-request-id": "34dfa779-12ea-4893-bf24-33e31c6e1dd9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071414Z:fea2208c-5e17-4751-bcd1-f9ece6c1563b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8e993b2ef4a0c09dc4492b8b46b62a0d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "eac7f3b0-e40b-4856-8b1b-5047c4bc397b", + "x-ms-client-request-id": "8e993b2ef4a0c09dc4492b8b46b62a0d", + "x-ms-correlation-request-id": "1790f386-a04e-48f9-ada3-e6de59a4dc87", + "x-ms-ratelimit-remaining-subscription-reads": "11768", + "x-ms-request-id": "01eb7e62-82b6-4bb7-b12c-61280eb1c3fe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071416Z:1790f386-a04e-48f9-ada3-e6de59a4dc87" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bd6c87a87cbdbe7bf88061863292a675", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0403fbf4-d327-4c9b-8b69-880207c1e084", + "x-ms-client-request-id": "bd6c87a87cbdbe7bf88061863292a675", + "x-ms-correlation-request-id": "c666c240-e914-4080-873b-91773cc38252", + "x-ms-ratelimit-remaining-subscription-reads": "11767", + "x-ms-request-id": "10a17164-b635-478b-94d5-3df755595f59", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071417Z:c666c240-e914-4080-873b-91773cc38252" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "921d83431b12f1c46aae0fc157e9d161", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "11dbb0b6-b790-4a5c-a529-ed8a4ce1bb50", + "x-ms-client-request-id": "921d83431b12f1c46aae0fc157e9d161", + "x-ms-correlation-request-id": "6a3a3022-3280-422c-b067-2f82f9c1e0f9", + "x-ms-ratelimit-remaining-subscription-reads": "11766", + "x-ms-request-id": "19e94167-4083-4902-92bb-a466e623515e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071418Z:6a3a3022-3280-422c-b067-2f82f9c1e0f9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0f4bb1912766b230c0db962093178e32", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "32a1fd75-0c26-491c-bc35-7376923290bf", + "x-ms-client-request-id": "0f4bb1912766b230c0db962093178e32", + "x-ms-correlation-request-id": "dda27c21-f0cc-477d-9c78-fbe2ea17ec7a", + "x-ms-ratelimit-remaining-subscription-reads": "11765", + "x-ms-request-id": "7e318cd7-8eb2-4383-86c7-8c70fb5883ba", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071419Z:dda27c21-f0cc-477d-9c78-fbe2ea17ec7a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c248b6a398998cfbc27a530f6db9670e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f5b3fa80-db23-4698-a22e-9f10dade0c10", + "x-ms-client-request-id": "c248b6a398998cfbc27a530f6db9670e", + "x-ms-correlation-request-id": "f528981c-7a23-4b11-ac2c-51ff056deb94", + "x-ms-ratelimit-remaining-subscription-reads": "11764", + "x-ms-request-id": "8f2080a0-8f5c-45a2-a3bd-c3eb8bf52f0e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071421Z:f528981c-7a23-4b11-ac2c-51ff056deb94" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "80f400ae97471c0f526bd13785a45e53", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "03485017-60ca-4717-aef1-e89b854a0e97", + "x-ms-client-request-id": "80f400ae97471c0f526bd13785a45e53", + "x-ms-correlation-request-id": "5638cd8f-bb72-4eb8-b630-8856b0cbeba3", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "670f4ff3-d6dd-47e2-95bd-387ee87b52f8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071422Z:5638cd8f-bb72-4eb8-b630-8856b0cbeba3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a01edd1f0ea1f9c7b5be4cebd4214407", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b865f3fb-5581-4174-a25f-e00a1a05e9f6", + "x-ms-client-request-id": "a01edd1f0ea1f9c7b5be4cebd4214407", + "x-ms-correlation-request-id": "7d0ad815-3d63-403e-8a45-b9c275fde7de", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "7197bd85-4906-4133-baad-963ff0643ede", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071424Z:7d0ad815-3d63-403e-8a45-b9c275fde7de" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "927187740d220ceaa62c6f2ec6c4071e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "3a880de7-d5c0-4967-ad1f-9310d4974aa9", + "x-ms-client-request-id": "927187740d220ceaa62c6f2ec6c4071e", + "x-ms-correlation-request-id": "5b985f54-8bbb-4b29-9542-624b90fc777c", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "bbb43a09-86aa-4a93-9045-e6827d58d958", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071425Z:5b985f54-8bbb-4b29-9542-624b90fc777c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "90efff1bc69aa06d38fbcb884a234731", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "52bea86c-0b20-46d1-acd3-af02cdde4d98", + "x-ms-client-request-id": "90efff1bc69aa06d38fbcb884a234731", + "x-ms-correlation-request-id": "baaccea1-2a77-4ecd-8b58-2a054ca84703", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "f4152de1-7ef3-4a35-b1a1-463bbb42d636", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071426Z:baaccea1-2a77-4ecd-8b58-2a054ca84703" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fec2ca26cc321231f212f9759e9832f1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "cbfdfdf1-54ff-4bbb-997d-181675ae95a1", + "x-ms-client-request-id": "fec2ca26cc321231f212f9759e9832f1", + "x-ms-correlation-request-id": "0ce2a070-da98-4736-8fce-6242edc88495", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "40f045b6-112b-4f82-a2a7-115100518719", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071428Z:0ce2a070-da98-4736-8fce-6242edc88495" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d4cf2eb7b432ad6c19d159264261c183", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f07cb71b-bb08-424c-8566-5e21359ebd5e", + "x-ms-client-request-id": "d4cf2eb7b432ad6c19d159264261c183", + "x-ms-correlation-request-id": "a6c0f954-ddf5-4de9-b435-16b4865f5256", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "bbb42565-e3ab-42ea-9728-778ef89019db", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071429Z:a6c0f954-ddf5-4de9-b435-16b4865f5256" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fc083ee408014febcddd9d88ccf8019f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "6657cb3e-fa6e-43d4-a3b1-a24973e96880", + "x-ms-client-request-id": "fc083ee408014febcddd9d88ccf8019f", + "x-ms-correlation-request-id": "bd03a0fe-60b4-412c-86f4-1d516a09552c", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "c647422d-feff-4be0-bf3c-a8a3fa3698a5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071430Z:bd03a0fe-60b4-412c-86f4-1d516a09552c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1cd1d9c9725471ff5e14e461720bcf90", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "30d4883b-5597-494b-adf5-4fe53d3bd36d", + "x-ms-client-request-id": "1cd1d9c9725471ff5e14e461720bcf90", + "x-ms-correlation-request-id": "17352ec8-e7aa-4fe2-b203-905da94b62fd", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "216e69ad-478f-4fb5-a258-39f1af7a9e8b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071431Z:17352ec8-e7aa-4fe2-b203-905da94b62fd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "609176513590aeef4280075516e4e121", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0a9b458b-88bb-49bb-8aba-09dedf505c97", + "x-ms-client-request-id": "609176513590aeef4280075516e4e121", + "x-ms-correlation-request-id": "0fe3e763-6ab5-418b-b9a5-51c7431517ba", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "d1177163-3501-4f82-96c3-f527522c70d7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071433Z:0fe3e763-6ab5-418b-b9a5-51c7431517ba" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "695cb9cfa490712e3e969eec248addc2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0b78976a-5709-4c5e-ae3d-bdfb3ca75b1e", + "x-ms-client-request-id": "695cb9cfa490712e3e969eec248addc2", + "x-ms-correlation-request-id": "2c2e777d-35ab-4991-a90b-69bb15d4d900", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "521b4829-dbb7-4428-9f5a-87a14c661eb5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071434Z:2c2e777d-35ab-4991-a90b-69bb15d4d900" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "55370d0da167930fe922d9d36baa5b79", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "4e8faed6-21d4-445d-a64d-00198f27ec2e", + "x-ms-client-request-id": "55370d0da167930fe922d9d36baa5b79", + "x-ms-correlation-request-id": "afe38805-163e-40df-bf7d-1552634d03e6", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "0d3698ff-bf20-482e-b65a-421089ec8b09", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071435Z:afe38805-163e-40df-bf7d-1552634d03e6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b892c33366aeac00471f21fa97038ab8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c2d83b82-2ba4-4d15-9d4b-9124e6b360a0", + "x-ms-client-request-id": "b892c33366aeac00471f21fa97038ab8", + "x-ms-correlation-request-id": "fb5144c2-284a-416f-9c43-edc5001aaf35", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "bd7736eb-cb8f-45e6-8483-881648e62ad5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071437Z:fb5144c2-284a-416f-9c43-edc5001aaf35" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "094744a28bac2dbaaac87f6eca5b0594", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0f99536e-ec32-4303-a2c6-a11f96c9a1c0", + "x-ms-client-request-id": "094744a28bac2dbaaac87f6eca5b0594", + "x-ms-correlation-request-id": "d58b91a0-20b2-4a64-be13-c8dad16085ce", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "b5e559e7-f041-4bb3-a4b2-3539582ba9da", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071439Z:d58b91a0-20b2-4a64-be13-c8dad16085ce" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "60b9243a25f8a7130d8a0d478015fce6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "95dc866f-e2c9-421f-ad9c-bcb08843b948", + "x-ms-client-request-id": "60b9243a25f8a7130d8a0d478015fce6", + "x-ms-correlation-request-id": "c2d97dda-bb34-47b0-aee0-269637371fca", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "920b5320-37e7-47f4-bd0a-7e38f624cb2b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071440Z:c2d97dda-bb34-47b0-aee0-269637371fca" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "273121975262a7cd09640de6e692e1ec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "717b786f-e61b-4898-9d08-ad664ed6d924", + "x-ms-client-request-id": "273121975262a7cd09640de6e692e1ec", + "x-ms-correlation-request-id": "c9f3d4db-3d19-4754-bec0-7704c727c7eb", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "6c07395f-d14a-4119-8c3b-a4fde1d6c2ca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071442Z:c9f3d4db-3d19-4754-bec0-7704c727c7eb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "73bf8c1a29497dc030a0fc217e72ac95", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e75421ae-3b0e-4f88-92f3-aba5541f289f", + "x-ms-client-request-id": "73bf8c1a29497dc030a0fc217e72ac95", + "x-ms-correlation-request-id": "f8e517ed-df68-4bc9-a0e1-09749ecfb093", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "a1643f1c-54e6-44af-a579-5119f3670a89", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071443Z:f8e517ed-df68-4bc9-a0e1-09749ecfb093" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a9d698ccdd29e83157125793172dc07b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "effd4816-f323-4df0-8cd6-b512a704bc99", + "x-ms-client-request-id": "a9d698ccdd29e83157125793172dc07b", + "x-ms-correlation-request-id": "ad5da307-f171-4b2d-b496-a743ce3ddc75", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "1e3353bd-cf35-48cf-ab94-ff416fa9de96", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071444Z:ad5da307-f171-4b2d-b496-a743ce3ddc75" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f32c20a989556e9d60b3f7c255ab2996", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9c85b520-b20e-455d-9115-ef2da76e0d5b", + "x-ms-client-request-id": "f32c20a989556e9d60b3f7c255ab2996", + "x-ms-correlation-request-id": "d04fac2f-d457-4576-a45c-73e1de9e919b", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "58b3eb66-44df-4200-ab19-f1c4f999fd35", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071446Z:d04fac2f-d457-4576-a45c-73e1de9e919b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4d1978b737bb3cc35ad61c37d12c6602", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8465ee23-52c0-4ff3-bbac-a802b51be938", + "x-ms-client-request-id": "4d1978b737bb3cc35ad61c37d12c6602", + "x-ms-correlation-request-id": "d7e6048d-8a78-4120-95e3-0c16107cc838", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "e0b7fcad-7eed-4079-ba35-3a7982440cad", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071447Z:d7e6048d-8a78-4120-95e3-0c16107cc838" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5d7881dfb9464240fb674975e66f92ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9300be76-f166-4175-869d-f56b973e861e", + "x-ms-client-request-id": "5d7881dfb9464240fb674975e66f92ab", + "x-ms-correlation-request-id": "ed2644c4-6891-4671-94f1-6a0e8230279b", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "f46b7bb6-e7f9-4f97-aa4b-54375777b7d1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071448Z:ed2644c4-6891-4671-94f1-6a0e8230279b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9fdcc1e8731371bf5df0997e6d659c33", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0e7ac4b5-a390-4ee1-a7c2-421577aec691", + "x-ms-client-request-id": "9fdcc1e8731371bf5df0997e6d659c33", + "x-ms-correlation-request-id": "c71cccda-1c5f-4d74-8687-5e0bfc807576", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "eac24c66-6ec1-499c-9795-c1dd81b47e3e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071449Z:c71cccda-1c5f-4d74-8687-5e0bfc807576" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d4e3f44dcc33fe4f38d65253ee4d55eb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a4f910f1-5bf1-45c8-a438-02b503f33ab6", + "x-ms-client-request-id": "d4e3f44dcc33fe4f38d65253ee4d55eb", + "x-ms-correlation-request-id": "20799f21-9595-479e-8824-092afcc071d3", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "aee36ea6-dbad-4b7a-8f93-9bb668f96b3f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071451Z:20799f21-9595-479e-8824-092afcc071d3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "104e7044c7506ceec106ff561fc1d595", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8f60ed1a-7bae-40de-a98c-89714e01bce2", + "x-ms-client-request-id": "104e7044c7506ceec106ff561fc1d595", + "x-ms-correlation-request-id": "8d80aae1-6652-4089-a0be-00f5a24f6a9d", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "c113a6c8-3892-423f-b688-d64018ac6682", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071452Z:8d80aae1-6652-4089-a0be-00f5a24f6a9d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f22715cbbe8b1c7871dd663d216b8310", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6c4a44ab-7b4a-4f6c-848a-dcf83045f94d", + "x-ms-client-request-id": "f22715cbbe8b1c7871dd663d216b8310", + "x-ms-correlation-request-id": "ac4546f6-50f2-41bc-a9a7-827a6482934c", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "4cc31de5-15a9-43c6-bfd7-9917fb6ca2cb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071453Z:ac4546f6-50f2-41bc-a9a7-827a6482934c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fc3aad9a8b1686e30577122ccdf9de76", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "a490b003-036d-4cc1-b823-c81756571a22", + "x-ms-client-request-id": "fc3aad9a8b1686e30577122ccdf9de76", + "x-ms-correlation-request-id": "5a8641ee-f095-4975-b319-fea9c18170fa", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "f063dade-acd5-42c6-bf5e-98644e21e455", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071455Z:5a8641ee-f095-4975-b319-fea9c18170fa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d988bc016325865ff7329e7260b14a56", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1750a390-76b4-4035-bc3b-434bec358419", + "x-ms-client-request-id": "d988bc016325865ff7329e7260b14a56", + "x-ms-correlation-request-id": "e762f684-2b9f-4b8f-979b-a28c6d80fbe7", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "548e95b7-2d24-4f43-a5b1-366e4bfedb53", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071456Z:e762f684-2b9f-4b8f-979b-a28c6d80fbe7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "71bcee83d9873f7e32a0ec14ab4c4f78", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "cb84917d-480c-48c4-932f-3c752cb14d0c", + "x-ms-client-request-id": "71bcee83d9873f7e32a0ec14ab4c4f78", + "x-ms-correlation-request-id": "381180f4-e243-4f4f-bf06-791e706a5556", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "b34a96d0-510d-4cf4-b9e1-b3dfc261c340", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071457Z:381180f4-e243-4f4f-bf06-791e706a5556" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "643bf0ffaae236ea4eb404e4ec702654", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "45d4c01b-5c56-4c3d-adb7-ccf847c6082e", + "x-ms-client-request-id": "643bf0ffaae236ea4eb404e4ec702654", + "x-ms-correlation-request-id": "5ee54695-2a6d-457c-9a9f-405781b8c03d", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "fd551597-02b8-40d2-a1ee-98db570ebe7a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071459Z:5ee54695-2a6d-457c-9a9f-405781b8c03d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dea9bb2c6c3d27ef3d48a684774bdaab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7650119d-3749-4f60-ae6e-97180880f0ac", + "x-ms-client-request-id": "dea9bb2c6c3d27ef3d48a684774bdaab", + "x-ms-correlation-request-id": "1dbb57a9-34e3-4de9-b071-52c490b5983a", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "a2d29fa9-b0bf-4b48-9bdf-85cabb3c9bb4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071501Z:1dbb57a9-34e3-4de9-b071-52c490b5983a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "707326e3e675d873048523d3d49a52c1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c406c7c5-b9a4-4d2a-b623-a5ff360a5064", + "x-ms-client-request-id": "707326e3e675d873048523d3d49a52c1", + "x-ms-correlation-request-id": "ccb6e964-a8b5-450f-ac1b-98a7072bf47c", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "6debf45f-b61b-4b59-9324-dbef8f470b9c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071503Z:ccb6e964-a8b5-450f-ac1b-98a7072bf47c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "efe7977a70a2923a0014279a0366bf03", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5dfd5059-43d3-4b6c-a489-c5cbb3ff5fa9", + "x-ms-client-request-id": "efe7977a70a2923a0014279a0366bf03", + "x-ms-correlation-request-id": "5d8b6a42-c0eb-49a9-ad52-035e982ae286", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "b0a78cfa-e075-4dfb-9cbb-e4df83bb467e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071504Z:5d8b6a42-c0eb-49a9-ad52-035e982ae286" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c60058d9b6fc46df48d0dab8491c53a2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "ceb67d9a-3733-4cd4-ae45-d5c3f678b780", + "x-ms-client-request-id": "c60058d9b6fc46df48d0dab8491c53a2", + "x-ms-correlation-request-id": "86f769ac-ed01-4e47-b47e-ae5c20ec303c", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "95e05765-33fc-46be-9daa-81cf8b773479", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071505Z:86f769ac-ed01-4e47-b47e-ae5c20ec303c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "df0ae5f5eb637209ece16f61bed9d59d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7e0165ab-92aa-49f7-957d-13607b348691", + "x-ms-client-request-id": "df0ae5f5eb637209ece16f61bed9d59d", + "x-ms-correlation-request-id": "e6a880fd-fda0-4445-80b3-93b98e8c20d9", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "769cc1b0-d928-4635-ae26-8ce22b173482", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071507Z:e6a880fd-fda0-4445-80b3-93b98e8c20d9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7bf920c58c99c3c4b8a1a7d2968249e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ef05efd7-c4cf-4bdf-b9a3-f4ba9f4bfe3f", + "x-ms-client-request-id": "7bf920c58c99c3c4b8a1a7d2968249e4", + "x-ms-correlation-request-id": "76343a5a-c47c-409f-a351-e8dfeefd9083", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "f7355126-202f-4311-b882-f34d3d7bbb53", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071508Z:76343a5a-c47c-409f-a351-e8dfeefd9083" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1ea484c0e05bed9f4f8ed91b467d876e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4d8fe574-70a4-4561-9d0a-7b3343919664", + "x-ms-client-request-id": "1ea484c0e05bed9f4f8ed91b467d876e", + "x-ms-correlation-request-id": "b48649df-3682-4ea6-bf4c-9050981f3d4c", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "844a68a5-5f3e-4d14-917d-d3052dba0f64", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071510Z:b48649df-3682-4ea6-bf4c-9050981f3d4c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "28f23cfad7226909204626c24436dc6a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3fdf593c-ef30-4fcc-aff7-b16e16eff863", + "x-ms-client-request-id": "28f23cfad7226909204626c24436dc6a", + "x-ms-correlation-request-id": "aec11f55-f886-47f6-b8e0-bd653e952e6b", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "b6fb36bb-aee1-4356-94da-703f6bd003a4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071511Z:aec11f55-f886-47f6-b8e0-bd653e952e6b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "39a08b98b734e441800c2b0bb2a97d3b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c2391369-8e9e-47b6-b440-e68b4fdfded1", + "x-ms-client-request-id": "39a08b98b734e441800c2b0bb2a97d3b", + "x-ms-correlation-request-id": "39719bad-28a1-4b25-8388-32cbc77b442c", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "5cb485c1-2fd8-46af-8de0-605738758aa3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071512Z:39719bad-28a1-4b25-8388-32cbc77b442c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5ad73819208fe9c17b3bfd15badda919", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c5576eee-4319-4874-ae96-b3fd00497674", + "x-ms-client-request-id": "5ad73819208fe9c17b3bfd15badda919", + "x-ms-correlation-request-id": "3141efa7-9fdf-4409-97a8-1c102b10072c", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "f2e0d3e4-88e2-4cee-98b9-ec82ca5e811b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071514Z:3141efa7-9fdf-4409-97a8-1c102b10072c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bb826fb24edd4339fa0ea716abfdb676", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b3fad644-9066-48a8-bf4f-acf1ea4a29a3", + "x-ms-client-request-id": "bb826fb24edd4339fa0ea716abfdb676", + "x-ms-correlation-request-id": "75f6a951-d61d-44e8-8eaa-f23f39ef961a", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "dd4fb5f8-92ad-4240-bdfa-c1c2519c25d9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071515Z:75f6a951-d61d-44e8-8eaa-f23f39ef961a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0ba8ebc9815f78dbc9b7bef9b92c2aa3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2930552b-211e-4ceb-b6ce-3f2aef5dfac6", + "x-ms-client-request-id": "0ba8ebc9815f78dbc9b7bef9b92c2aa3", + "x-ms-correlation-request-id": "1f616640-06f0-47b4-aedc-5973469f7a97", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "9e8e48e9-95eb-4ab9-ab15-a1f6960f35f9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071516Z:1f616640-06f0-47b4-aedc-5973469f7a97" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "43591262c126cb5dff935f8078ab3d7d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "54d08044-fa7f-49a3-b3b6-dd6e52f0aed2", + "x-ms-client-request-id": "43591262c126cb5dff935f8078ab3d7d", + "x-ms-correlation-request-id": "9729fbe1-db9e-46f9-9d3a-3bf4d5bfe0b7", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "fc40676f-4704-468f-86f4-20f05db9225f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071518Z:9729fbe1-db9e-46f9-9d3a-3bf4d5bfe0b7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ce4c86859e3530b9940af2258f4089ce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "380bfe50-0815-4217-92f4-e30cc0294e55", + "x-ms-client-request-id": "ce4c86859e3530b9940af2258f4089ce", + "x-ms-correlation-request-id": "b9974884-5bc0-4767-a519-17a32045f3f5", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "c5833b53-8f0c-480e-9bed-f8ee84a427f3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071519Z:b9974884-5bc0-4767-a519-17a32045f3f5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "99b304e372a407508ddd0ccb215aff1d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "40eec5ae-9ee8-4755-a8ab-e3ba0075470a", + "x-ms-client-request-id": "99b304e372a407508ddd0ccb215aff1d", + "x-ms-correlation-request-id": "346a3070-e48f-40e2-bff3-68e339227922", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "c85840dd-1f79-4277-a9f6-a6541cc3b665", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071520Z:346a3070-e48f-40e2-bff3-68e339227922" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3274407a5bdfc46e5829af1bcf383bbf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0485ea9e-9682-4c8a-8d65-99c0e738e610", + "x-ms-client-request-id": "3274407a5bdfc46e5829af1bcf383bbf", + "x-ms-correlation-request-id": "78ccdf18-37ce-4b95-95ac-5759be7c57be", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "a8eb0c7a-9ed6-4658-bf03-13206d68f714", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071522Z:78ccdf18-37ce-4b95-95ac-5759be7c57be" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "739d910aa3f712d93645415791ee0e39", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "90b16565-0ede-4115-9c22-f45683e2091e", + "x-ms-client-request-id": "739d910aa3f712d93645415791ee0e39", + "x-ms-correlation-request-id": "56bac312-1662-4edb-903c-3aef42172680", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "adeb7ee4-8e5c-42fb-8f9a-6668a6324c78", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071523Z:56bac312-1662-4edb-903c-3aef42172680" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4fabd40b56cb87ee96ef407ac3343755", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "dfbb50cf-46a4-453b-ad2b-3c56e38515e9", + "x-ms-client-request-id": "4fabd40b56cb87ee96ef407ac3343755", + "x-ms-correlation-request-id": "0ee915f3-45b0-4237-ab9a-140d4881a68f", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "5c819cf3-f515-4a8e-b090-4fbac25b0cff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071524Z:0ee915f3-45b0-4237-ab9a-140d4881a68f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8fc14da18bbcd6266661fc9a1a163269", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "c4604d43-8ed7-4d47-b86a-5154f6319952", + "x-ms-client-request-id": "8fc14da18bbcd6266661fc9a1a163269", + "x-ms-correlation-request-id": "1bb37c22-dd76-47b0-b35c-b9dcd9574bb3", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "0dc0ed2d-46af-4bdb-b128-fd7982211af9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071526Z:1bb37c22-dd76-47b0-b35c-b9dcd9574bb3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fb10751aec8cb3f3a315dd08625f4f02", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9cded5d8-bf1c-4f6a-9c4a-e0b7c2c11e0f", + "x-ms-client-request-id": "fb10751aec8cb3f3a315dd08625f4f02", + "x-ms-correlation-request-id": "56432e48-a121-4c46-960a-a9cc57e0f1b3", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "a08924a6-8775-400b-bab3-1d6d2b37b897", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071527Z:56432e48-a121-4c46-960a-a9cc57e0f1b3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "44b6ec0d7e2d7f7cadd4e86a5a546d7f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "dde1f361-2a9b-4d6b-8b24-f89531044419", + "x-ms-client-request-id": "44b6ec0d7e2d7f7cadd4e86a5a546d7f", + "x-ms-correlation-request-id": "5e2b17dc-8bad-45a6-9bff-3abcbb173cd3", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "89d86f10-e53a-4012-b38d-927213c40150", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071528Z:5e2b17dc-8bad-45a6-9bff-3abcbb173cd3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4d5fd6bc3c23b5c85a0deca7ae1d7307", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a38664c6-75e5-43f7-a99e-a159e5bbd51a", + "x-ms-client-request-id": "4d5fd6bc3c23b5c85a0deca7ae1d7307", + "x-ms-correlation-request-id": "2eff257d-6935-40ed-acfe-e93207d5ca0d", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "c78cc4c5-1dd8-430e-9ab4-2abae1abb0a1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071530Z:2eff257d-6935-40ed-acfe-e93207d5ca0d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2e8cf912ee609c3cf8914db70389584e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "f2143e7b-a26c-4206-b210-176e865a8eda", + "x-ms-client-request-id": "2e8cf912ee609c3cf8914db70389584e", + "x-ms-correlation-request-id": "0a2afcbb-aedc-4ddc-bb96-fd97d24dbae1", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "bc5410e8-85a7-4985-8470-5c6e1a6a306c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071531Z:0a2afcbb-aedc-4ddc-bb96-fd97d24dbae1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8b4b5da801ffd1df2300ea1f91d5d190", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c6aa3c1f-a457-4f21-86ce-ef217474b1d9", + "x-ms-client-request-id": "8b4b5da801ffd1df2300ea1f91d5d190", + "x-ms-correlation-request-id": "e6c79aa7-d294-49a2-b1f1-1f4baa9a10af", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "26ae8560-f284-4dc6-92d8-2eae9956d039", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071532Z:e6c79aa7-d294-49a2-b1f1-1f4baa9a10af" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6057e0613fc7cd1f9ac35491ee10b1d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1fd53f44-a2e6-478a-b375-53a71140e24b", + "x-ms-client-request-id": "6057e0613fc7cd1f9ac35491ee10b1d1", + "x-ms-correlation-request-id": "c88bb839-d119-4567-b56b-186be7d79acc", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "fdae47d7-4dba-45f4-a3cc-cc55fe71b3ce", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071534Z:c88bb839-d119-4567-b56b-186be7d79acc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "50fe9db5e7d111081aba0a5f041c0a23", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "1009758e-4756-46a1-890f-a3cea6806877", + "x-ms-client-request-id": "50fe9db5e7d111081aba0a5f041c0a23", + "x-ms-correlation-request-id": "144af15d-4c5f-44ed-92d5-96f80c6f4df7", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "e7d0f194-4acc-4545-a4bc-e5a81e0dac34", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071535Z:144af15d-4c5f-44ed-92d5-96f80c6f4df7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2356bdc0f73169863e7ef13bac4de313", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2b579080-ce4a-4702-9e87-c1dd9bc6dc44", + "x-ms-client-request-id": "2356bdc0f73169863e7ef13bac4de313", + "x-ms-correlation-request-id": "e7b3a577-0bc5-4964-9f0b-45fff7ece612", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "238e59e3-1e8f-4a9c-afca-4e62dec6990c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071536Z:e7b3a577-0bc5-4964-9f0b-45fff7ece612" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f36a184f80d779bed845450c34bfc97d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "67162d7b-70f5-4620-b67c-35b3b3ff50ba", + "x-ms-client-request-id": "f36a184f80d779bed845450c34bfc97d", + "x-ms-correlation-request-id": "9015ad84-87f0-4a08-8ace-5ff9952f12e4", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "ba645233-832b-432b-89ed-aa5ebd789275", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071538Z:9015ad84-87f0-4a08-8ace-5ff9952f12e4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "30d131b98ebabd9f17941253f6cd64cd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3499524d-337e-4ef2-8265-b41375c2441b", + "x-ms-client-request-id": "30d131b98ebabd9f17941253f6cd64cd", + "x-ms-correlation-request-id": "1aafc291-17bd-409c-a87a-9339d359d1be", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "f424cc89-950e-4942-8a51-22685cf21c9b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071539Z:1aafc291-17bd-409c-a87a-9339d359d1be" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eb10f6d716b23f4cffdc4bebb179347e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "9bfe83f6-caa8-486f-9ae4-cefcc645cfef", + "x-ms-client-request-id": "eb10f6d716b23f4cffdc4bebb179347e", + "x-ms-correlation-request-id": "9756879d-e07b-47cc-b0cb-00d6c6e810ee", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "86c51f2a-e5b9-4dbd-871b-a8286af4d79a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071540Z:9756879d-e07b-47cc-b0cb-00d6c6e810ee" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7b8273b5b27cc15979acdc426e6a830a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "44f0765f-0415-479c-a6d0-c8a50aa2bc09", + "x-ms-client-request-id": "7b8273b5b27cc15979acdc426e6a830a", + "x-ms-correlation-request-id": "2e1246e9-f79d-4ac8-9c8a-cd2828c2c6eb", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "8f30852d-f412-47ef-9ee0-c4fc262d3d31", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071541Z:2e1246e9-f79d-4ac8-9c8a-cd2828c2c6eb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3e3578e0ddafa2cae59131dd43b30b9d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d0e35003-71ea-490c-b916-0115db851150", + "x-ms-client-request-id": "3e3578e0ddafa2cae59131dd43b30b9d", + "x-ms-correlation-request-id": "810d4c93-31a3-46c5-a236-957b431b0849", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "379c3cfc-b393-451a-be0d-d76a29707453", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071543Z:810d4c93-31a3-46c5-a236-957b431b0849" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "829e9360e94b25519d4f7105390ad195", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "fbbbfcfe-1f52-4e76-98eb-b4290358e6a7", + "x-ms-client-request-id": "829e9360e94b25519d4f7105390ad195", + "x-ms-correlation-request-id": "b454dcb9-c7b3-4f7b-81a2-67929cb2e488", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "549f46d0-6926-4cb0-83ef-dc569bec4f22", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071544Z:b454dcb9-c7b3-4f7b-81a2-67929cb2e488" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "390a4058f644d7cea8df95ea817b7dc6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8cdc59fb-122a-4c44-bf7c-945630374ec0", + "x-ms-client-request-id": "390a4058f644d7cea8df95ea817b7dc6", + "x-ms-correlation-request-id": "b885abbd-60e0-4902-82e0-d2d3d962e692", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "77889a14-939e-4d82-9254-bd95d956732b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071545Z:b885abbd-60e0-4902-82e0-d2d3d962e692" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dae13fa101cbf7bf2710a1606bc568db", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "bd6c75c6-186a-4d76-aea5-d036c1a9a268", + "x-ms-client-request-id": "dae13fa101cbf7bf2710a1606bc568db", + "x-ms-correlation-request-id": "cb3b1219-bc2e-4083-8f07-14b2638b964e", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "b8702156-db99-46c5-89d3-1c90ad3d0976", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071547Z:cb3b1219-bc2e-4083-8f07-14b2638b964e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "02849bbfd2a86a58c5c7d96c5366a321", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6c0908fa-e76a-409c-a3be-ff1dac5c7aae", + "x-ms-client-request-id": "02849bbfd2a86a58c5c7d96c5366a321", + "x-ms-correlation-request-id": "03d70483-8b80-4e52-8af0-99ef4447f55b", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "14cd3ed7-588a-4d21-bc85-88e7317c8fda", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071549Z:03d70483-8b80-4e52-8af0-99ef4447f55b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fa64abd1f72857c980131134556e6be3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "4a7ce7bc-2dc0-4226-af03-9411ee6e54a6", + "x-ms-client-request-id": "fa64abd1f72857c980131134556e6be3", + "x-ms-correlation-request-id": "7721fe48-2b9a-4df4-9cb0-707f233e4a34", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "3f1d0fb8-79e6-48aa-bc1d-54d5715f0ed9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071550Z:7721fe48-2b9a-4df4-9cb0-707f233e4a34" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e52bba767bf7cf1de77715042853a3c1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "08862448-6f91-4a18-8386-2aa75754f97b", + "x-ms-client-request-id": "e52bba767bf7cf1de77715042853a3c1", + "x-ms-correlation-request-id": "d8520dfa-1207-4797-b9c7-1d38c3592329", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "918b11c4-0398-47ca-8aa4-52a5bdf9c9cf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071551Z:d8520dfa-1207-4797-b9c7-1d38c3592329" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c08f7f6c6e60c8b2d22d8194c0231456", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ed0e0742-31b6-41d4-9912-79b2643f0001", + "x-ms-client-request-id": "c08f7f6c6e60c8b2d22d8194c0231456", + "x-ms-correlation-request-id": "102944be-43f1-4a12-88e0-0fe012ed1fd2", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "420b0a04-a1b5-4747-b886-68626faeeddf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071553Z:102944be-43f1-4a12-88e0-0fe012ed1fd2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "99f5f55bbe3a562a8d9512b0e2c42f2d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3609c293-deff-49da-ac70-b1ebe6043b75", + "x-ms-client-request-id": "99f5f55bbe3a562a8d9512b0e2c42f2d", + "x-ms-correlation-request-id": "4a0044ff-c14a-4820-8f75-f7a483f99477", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "d60b1b3f-dbfe-4bd8-9b74-0617b9be7ee5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071554Z:4a0044ff-c14a-4820-8f75-f7a483f99477" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d5c85070abde0783086312c9f9890fc3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "8ba255b4-5bae-4806-b792-697b5a96e10d", + "x-ms-client-request-id": "d5c85070abde0783086312c9f9890fc3", + "x-ms-correlation-request-id": "7cb30aee-de19-4b5b-815d-42f574dc63af", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "eb70065c-e260-4640-8ad7-f5b6482d2390", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071555Z:7cb30aee-de19-4b5b-815d-42f574dc63af" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "32a9be620a5dad86553932cb5c01e60d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d7206b6b-5edd-46f0-8f06-75c9ee04a1e2", + "x-ms-client-request-id": "32a9be620a5dad86553932cb5c01e60d", + "x-ms-correlation-request-id": "5bda2eac-4320-41ba-9ba6-449b946649c2", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "5832db55-aaa0-4e0e-8df3-0c2033e037a9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071556Z:5bda2eac-4320-41ba-9ba6-449b946649c2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6f2454fe3f5baf7872ee91d7ab605c04", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "78a76597-83f4-42cb-852e-871b860dcea2", + "x-ms-client-request-id": "6f2454fe3f5baf7872ee91d7ab605c04", + "x-ms-correlation-request-id": "da493b3d-a718-4235-be5b-7e674c0074c3", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "f7a1d0a7-3d16-4063-b3a4-96c8ce87a0ce", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071558Z:da493b3d-a718-4235-be5b-7e674c0074c3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "234e4f85fc1b66d0ca1a80a579b7ab06", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5f6bd2a5-7c0d-4e22-87eb-7317ad07489c", + "x-ms-client-request-id": "234e4f85fc1b66d0ca1a80a579b7ab06", + "x-ms-correlation-request-id": "cf24a7a1-45ee-4983-9946-808d398d7eb1", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "ba99881a-2263-4649-8da2-8e7cf8f14401", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071559Z:cf24a7a1-45ee-4983-9946-808d398d7eb1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a4cb057d9f65236846f9c06f78ae02f4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0f66bec1-7dc2-4432-94fb-4a0f47b526bf", + "x-ms-client-request-id": "a4cb057d9f65236846f9c06f78ae02f4", + "x-ms-correlation-request-id": "2638c69e-c701-4402-9eee-fc99eadd16e0", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "71c5c905-698b-43cd-8787-219eceb6749b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071600Z:2638c69e-c701-4402-9eee-fc99eadd16e0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0c452ddcc2b301f184bda440bed335ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "eb6638e7-c702-4b05-adaa-b09b549dc6b3", + "x-ms-client-request-id": "0c452ddcc2b301f184bda440bed335ba", + "x-ms-correlation-request-id": "d4c5bb2f-7acc-457b-8eca-b4cd032808ce", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "e3f0a727-7c92-4cfa-844f-10ab69d53fe9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071602Z:d4c5bb2f-7acc-457b-8eca-b4cd032808ce" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a65a8b42b794e69fe62add213b60ed1c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3d078fba-aee8-48c5-a0ab-be6e12bf0373", + "x-ms-client-request-id": "a65a8b42b794e69fe62add213b60ed1c", + "x-ms-correlation-request-id": "24bf215e-234d-4aec-be63-a68e865e8df1", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "810ca25f-b2d0-4069-90f0-eb849f6140f2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071603Z:24bf215e-234d-4aec-be63-a68e865e8df1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4bc88b189e72ba5213c920a7fb286472", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e4875e14-af7e-45e9-9695-4565af065e54", + "x-ms-client-request-id": "4bc88b189e72ba5213c920a7fb286472", + "x-ms-correlation-request-id": "f0286e4a-9ce9-4567-8ceb-7405aeb9aadb", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "d69b19a7-3dc8-4986-af55-4aea39ffe1cd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071604Z:f0286e4a-9ce9-4567-8ceb-7405aeb9aadb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ed2c06c35b53245f8e5f2688e4d0c523", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a410d86d-fc11-4048-9280-cebe5c48e3e0", + "x-ms-client-request-id": "ed2c06c35b53245f8e5f2688e4d0c523", + "x-ms-correlation-request-id": "866afdfd-a544-49d8-96d6-f4de20d2b062", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "3dfd6769-374a-4f6f-8b73-79f904cf1bc3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071606Z:866afdfd-a544-49d8-96d6-f4de20d2b062" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "322787cfea0aa44838a093cb97f7eabe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9f6a07c4-c3fe-4f15-a7a0-47f100297541", + "x-ms-client-request-id": "322787cfea0aa44838a093cb97f7eabe", + "x-ms-correlation-request-id": "476f33dd-226c-42ea-9943-28c563112a88", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "bf811b3c-87ee-4f0f-979f-ecf2a16acc92", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071607Z:476f33dd-226c-42ea-9943-28c563112a88" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "355d6ac6ff34bcc92ca3bc1278c9d543", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "cf81fc27-0c50-40e2-827a-f5c6e34d2754", + "x-ms-client-request-id": "355d6ac6ff34bcc92ca3bc1278c9d543", + "x-ms-correlation-request-id": "8d4a2a6f-a896-40e3-9e23-5e574487f8e8", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "054fde41-af6f-4c28-b487-df3d15a45c9d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071608Z:8d4a2a6f-a896-40e3-9e23-5e574487f8e8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "73d7fd043100d968be88b4b3c8948d97", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "46e3609d-473b-4f85-9526-69aa2ea019b0", + "x-ms-client-request-id": "73d7fd043100d968be88b4b3c8948d97", + "x-ms-correlation-request-id": "880443d4-383a-4772-b50a-e25b6e4c1ecf", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "53191b7d-c1b3-42b8-8a67-a876e35beec1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071609Z:880443d4-383a-4772-b50a-e25b6e4c1ecf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7ac267749072cfefbe6a06662d352b6f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "4a5dc92f-f22e-46dc-b4a2-89c0cecd1b1c", + "x-ms-client-request-id": "7ac267749072cfefbe6a06662d352b6f", + "x-ms-correlation-request-id": "eecff8fd-86a1-401a-868b-b03563c94886", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "507b52af-18ce-44ac-a140-42491db766f6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071611Z:eecff8fd-86a1-401a-868b-b03563c94886" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "99c750ca771f94be028477ab4b16f497", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8c34d488-cadc-493b-99d5-e4f7ae38521a", + "x-ms-client-request-id": "99c750ca771f94be028477ab4b16f497", + "x-ms-correlation-request-id": "92b0a563-3c5a-441b-a1f7-22d28ecb6f4c", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "3b9878c3-44b3-46ed-874f-72d1494c1174", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071612Z:92b0a563-3c5a-441b-a1f7-22d28ecb6f4c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "119e25165b0673d00e08b4952b01ab88", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "733e0139-1a26-414d-be18-8a4ab1e16967", + "x-ms-client-request-id": "119e25165b0673d00e08b4952b01ab88", + "x-ms-correlation-request-id": "14c49d16-25c1-424f-8f7a-e6462838f9e3", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "7155c12c-6f6e-4eda-b924-96cc80f77fab", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071614Z:14c49d16-25c1-424f-8f7a-e6462838f9e3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "78e8455df3cdfd77a82e78ee184484a8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "793c4f3f-a6d6-49c0-857d-fab6da390eaf", + "x-ms-client-request-id": "78e8455df3cdfd77a82e78ee184484a8", + "x-ms-correlation-request-id": "89703e0e-8972-400d-894b-7408716f29d6", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "caa41ff4-0a28-4720-8880-6007532ce223", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071615Z:89703e0e-8972-400d-894b-7408716f29d6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be517db1-f853-4a7a-bb26-75254afc9dfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "08506e761a976e687f538b17c2296800", + "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, 08 Sep 2021 07:16: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": "91e2de37-534f-4090-8d87-5637ec6af582", + "x-ms-client-request-id": "08506e761a976e687f538b17c2296800", + "x-ms-correlation-request-id": "5f91fd8e-a795-4745-9314-d716d34641f8", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "7eda710e-b7e6-49b7-b835-08b6c706654d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T071616Z:5f91fd8e-a795-4745-9314-d716d34641f8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + } + ], + "Variables": { + "LOCATION": "westus2", + "RandomSeed": "432538493", + "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/BastionHostContainerTests/GetAllAsync.json b/sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/BastionHostContainerTests/GetAllAsync.json new file mode 100644 index 0000000000000..95bee65ac83ec --- /dev/null +++ b/sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/BastionHostContainerTests/GetAllAsync.json @@ -0,0 +1,16710 @@ +{ + "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-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6c38e9c98e34ff0a87ebfb8696c20ecc", + "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, 08 Sep 2021 07:53:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0aee6374-4910-4e90-9528-382d8430ba87", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "0aee6374-4910-4e90-9528-382d8430ba87", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075306Z:0aee6374-4910-4e90-9528-382d8430ba87" + }, + "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/bastionrg-7251?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-4d231b0b2487284a9a2ba352eb1fd371-67ba48d21a403547-00", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e863d96cf8ea45089ca97df67b67ab6d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "226", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:53:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "82207ef9-b7a3-4669-9890-b3fd49b0839d", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "82207ef9-b7a3-4669-9890-b3fd49b0839d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075306Z:82207ef9-b7a3-4669-9890-b3fd49b0839d" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251", + "name": "bastionrg-7251", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6891e3bb15572ef42b0af3d52511bf85", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1249", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:53:06 GMT", + "ETag": "W/\u0022e7b0ddcf-2068-4972-a381-0fc39ba6894e\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": "a04b65bc-93fd-4d35-86b5-4cb244339458", + "x-ms-client-request-id": "6891e3bb15572ef42b0af3d52511bf85", + "x-ms-correlation-request-id": "6a655158-c5e4-4435-a4bc-819f2499ddd5", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "7c93dad7-667f-427b-a952-5f9a94713b88", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075307Z:6a655158-c5e4-4435-a4bc-819f2499ddd5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022vnet-6121\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022e7b0ddcf-2068-4972-a381-0fc39ba6894e\\\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: \u0022a7067e65-d510-4fab-b894-da0e03df110f\u0022,\r\n", + " \u0022addressSpace\u0022: {\r\n", + " \u0022addressPrefixes\u0022: [\r\n", + " \u002210.0.0.0/16\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022subnets\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022AzureBastionSubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121/subnets/AzureBastionSubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022e7b0ddcf-2068-4972-a381-0fc39ba6894e\\\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/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121/subnets/AzureBastionSubnet?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2c471ad6ace8d005e1f3d08a11138320", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "551", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:53:07 GMT", + "ETag": "W/\u0022e7b0ddcf-2068-4972-a381-0fc39ba6894e\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": "9d2dbddf-ebc3-4308-b454-046c12b03ebf", + "x-ms-client-request-id": "2c471ad6ace8d005e1f3d08a11138320", + "x-ms-correlation-request-id": "908ad21b-17a9-478d-b9b7-ee7140640a78", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "892dad1b-425a-4938-a55d-2db7e63c5c88", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075307Z:908ad21b-17a9-478d-b9b7-ee7140640a78" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022AzureBastionSubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121/subnets/AzureBastionSubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022e7b0ddcf-2068-4972-a381-0fc39ba6894e\\\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/bastionrg-7251/providers/Microsoft.Network/publicIPAddresses/ip-3184?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b2cb8d3fa5305774e434bde00532208a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "664", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:53:07 GMT", + "ETag": "W/\u00223de63ebb-82cc-4a2c-91ba-16c8512bb624\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": "3e9816d7-c34c-4656-853d-6a041512433e", + "x-ms-client-request-id": "b2cb8d3fa5305774e434bde00532208a", + "x-ms-correlation-request-id": "f348ea77-d364-42cc-8c22-ae95467938ff", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "40139d5f-86d9-4817-8e79-e186438531b9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075307Z:f348ea77-d364-42cc-8c22-ae95467938ff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022ip-3184\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/publicIPAddresses/ip-3184\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00223de63ebb-82cc-4a2c-91ba-16c8512bb624\\\u0022\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022cf12151e-bd67-4380-9ac6-86981f12aa37\u0022,\r\n", + " \u0022ipAddress\u0022: \u002220.98.77.111\u0022,\r\n", + " \u0022publicIPAddressVersion\u0022: \u0022IPv4\u0022,\r\n", + " \u0022publicIPAllocationMethod\u0022: \u0022Static\u0022,\r\n", + " \u0022idleTimeoutInMinutes\u0022: 4,\r\n", + " \u0022ipTags\u0022: []\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/publicIPAddresses\u0022,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Standard\u0022,\r\n", + " \u0022tier\u0022: \u0022Regional\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-3829?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "468", + "Content-Type": "application/json", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "206020f8847fde0ec1876445691d1886", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "id": null, + "properties": { + "ipConfigurations": [ + { + "name": "bastionIPConfig-688", + "id": null, + "properties": { + "subnet": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121/subnets/AzureBastionSubnet" + }, + "publicIPAddress": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/publicIPAddresses/ip-3184" + } + } + } + ] + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "1454", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:53:14 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": "d69b11b9-904c-42a2-9732-dec25cb461a6", + "x-ms-client-request-id": "206020f8847fde0ec1876445691d1886", + "x-ms-correlation-request-id": "c844936e-20c7-497f-b80e-b1ded01e53ed", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "f4893d21-355c-4ac8-b25d-45bce94d8d44", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075314Z:c844936e-20c7-497f-b80e-b1ded01e53ed" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022bastion-3829\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-3829\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00221af53cf7-777b-4f1e-81f0-5229d4ee3756\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022scaleUnits\u0022: 2,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022bastionIPConfig-688\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-3829/bastionHostIpConfigurations/bastionIPConfig-688\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00221af53cf7-777b-4f1e-81f0-5229d4ee3756\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts/bastionHostIpConfigurations\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/bastionrg-7251/providers/Microsoft.Network/publicIPAddresses/ip-3184\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121/subnets/AzureBastionSubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022bastionShareableLinks\u0022: {}\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f219a045ff2209bfbcd46f1e0f117b17", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:53:14 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": "c306e989-cd00-4cba-98fe-10ed8065deff", + "x-ms-client-request-id": "f219a045ff2209bfbcd46f1e0f117b17", + "x-ms-correlation-request-id": "81463c83-fa89-49a1-8928-0a8dbb9c8f24", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "20f73bf2-12cb-483a-8996-f7270debcc88", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075315Z:81463c83-fa89-49a1-8928-0a8dbb9c8f24" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9c3159a44488a3ddf0ba3037d01fb9f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:53:16 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": "6f67e56d-3a52-4149-96c4-a1ed1538f02b", + "x-ms-client-request-id": "9c3159a44488a3ddf0ba3037d01fb9f5", + "x-ms-correlation-request-id": "c321d7f5-8892-42f4-a0bc-8f38a72b57b3", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "56563143-8e09-4c11-ae3c-87a57aff2636", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075316Z:c321d7f5-8892-42f4-a0bc-8f38a72b57b3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c90091d92504d364d68e8a38e51196de", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:53:17 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": "5b23ba1d-1488-4789-8773-a160eb0686a4", + "x-ms-client-request-id": "c90091d92504d364d68e8a38e51196de", + "x-ms-correlation-request-id": "bc3ac694-44ec-4d6b-a618-5e04a896261c", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "fc9379cd-c89d-4ac7-8ce6-2df35a4acda8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075317Z:bc3ac694-44ec-4d6b-a618-5e04a896261c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cb4a9dcc1199004ac3750168cf88389c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:53:19 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": "8bca7480-6333-4fe3-a7e4-6961096c6ea3", + "x-ms-client-request-id": "cb4a9dcc1199004ac3750168cf88389c", + "x-ms-correlation-request-id": "32fa66ee-9f9a-440f-b725-8e5455e8d31b", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "a0ddc8b9-35df-48cf-8c12-617b930bc3dc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075319Z:32fa66ee-9f9a-440f-b725-8e5455e8d31b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7d45791ab2117f12f55ec6fabaa4bddf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:53:20 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": "1187806a-f2a0-4907-aa4b-4ede469e66ef", + "x-ms-client-request-id": "7d45791ab2117f12f55ec6fabaa4bddf", + "x-ms-correlation-request-id": "155f7358-baa8-4bd1-a537-102491211c5e", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "c6f8679f-34b2-4cf6-a7de-85c16d63346e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075320Z:155f7358-baa8-4bd1-a537-102491211c5e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "336a5223eed5c75c47ff058e24fb044d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:53: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": "53afd553-07ef-420c-9f1d-5d85e164e4ee", + "x-ms-client-request-id": "336a5223eed5c75c47ff058e24fb044d", + "x-ms-correlation-request-id": "157f3a5c-18b7-4a1d-ac17-24dc41312180", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "3e50d6b1-065e-4716-859a-9061f42cb1b5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075321Z:157f3a5c-18b7-4a1d-ac17-24dc41312180" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6c1eed5519cc1acc8acbd53a4b4f461f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:53:22 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": "5d18b78d-f7c3-4576-8e44-435fedbc1b12", + "x-ms-client-request-id": "6c1eed5519cc1acc8acbd53a4b4f461f", + "x-ms-correlation-request-id": "49fe83ce-87a8-4ac0-a15a-485f794e2da8", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "50d1e2ca-dd7b-477f-b4ea-90e9d2675807", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075323Z:49fe83ce-87a8-4ac0-a15a-485f794e2da8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7d4422b7051d2cc71c7d3611ac835bf9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:53: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": "da99a219-e8e4-4af3-a1c5-be0f62fb06c5", + "x-ms-client-request-id": "7d4422b7051d2cc71c7d3611ac835bf9", + "x-ms-correlation-request-id": "98c13531-1514-4e44-948f-9212e9479df8", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "1fe9db18-6ce1-4f38-a03b-bcf574df60ed", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075324Z:98c13531-1514-4e44-948f-9212e9479df8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cca4785a51850a128550a80a18217cf7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:53:25 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": "0b76dd17-37ad-4ebf-a266-7ae0b5b7f2d6", + "x-ms-client-request-id": "cca4785a51850a128550a80a18217cf7", + "x-ms-correlation-request-id": "c8fd4996-87be-4e6c-a6dd-d889d5bac138", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "dc4a0785-6a40-4a26-8ce9-40af2d39a7f0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075325Z:c8fd4996-87be-4e6c-a6dd-d889d5bac138" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "01d6e5b986b7503025f24f4fe2ba6d07", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "efd4e2ce-4528-4d69-8362-6a32cb2794b6", + "x-ms-client-request-id": "01d6e5b986b7503025f24f4fe2ba6d07", + "x-ms-correlation-request-id": "6adcc895-70a5-4757-8537-f34d42436667", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "fddc37b8-6b72-4cdf-9dba-6616401cb517", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075327Z:6adcc895-70a5-4757-8537-f34d42436667" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d3e0dc7079ab6599103af7cd5cbd13fb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "57d3c22a-2808-46b8-a76f-c89acfd4b99f", + "x-ms-client-request-id": "d3e0dc7079ab6599103af7cd5cbd13fb", + "x-ms-correlation-request-id": "142a7b40-cd1a-4ac5-aa30-84604fb14074", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "55228aa7-47bc-4221-bbae-1f64de5fae79", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075328Z:142a7b40-cd1a-4ac5-aa30-84604fb14074" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c6583e0159acd3424853a69302c327ca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7322f733-ce6a-4f69-874a-4f0e95cd8dda", + "x-ms-client-request-id": "c6583e0159acd3424853a69302c327ca", + "x-ms-correlation-request-id": "85eba9f2-2058-4546-966f-ab502d75fbaa", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "6ca7a754-ffc1-4f05-81a8-c04ac13e7917", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075329Z:85eba9f2-2058-4546-966f-ab502d75fbaa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3c99a1e2a9413f4c4b70f17c8f62f368", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ade30cab-e1b3-48d9-bce2-758def75ed1e", + "x-ms-client-request-id": "3c99a1e2a9413f4c4b70f17c8f62f368", + "x-ms-correlation-request-id": "96580ced-eedf-48ab-937f-4064ab49cb0b", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "5fe82df1-da12-476c-9109-952cd59cf816", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075330Z:96580ced-eedf-48ab-937f-4064ab49cb0b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a44e54dfa762165a990d8a57d206634c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0a1c9d39-82ef-41ce-8f40-e38261630a1f", + "x-ms-client-request-id": "a44e54dfa762165a990d8a57d206634c", + "x-ms-correlation-request-id": "8955bf9e-e9c1-468d-92f9-30658fa6a89a", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "a3aed35f-adce-46e3-a78c-422f6e7c5d98", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075332Z:8955bf9e-e9c1-468d-92f9-30658fa6a89a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bbeb2c13d62357b9f2187a3b68c644e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "46becf58-044b-42ab-a9c9-25be8efd5ace", + "x-ms-client-request-id": "bbeb2c13d62357b9f2187a3b68c644e5", + "x-ms-correlation-request-id": "b7d3ba86-5b7e-4afb-bb6f-7917bca637fb", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "d0dfd318-7755-4335-9b8c-dd3ac9d52823", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075333Z:b7d3ba86-5b7e-4afb-bb6f-7917bca637fb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aeb43e5f83753b684783a3341ef46d45", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e50d2dc9-3022-44ad-960d-667a73347c5f", + "x-ms-client-request-id": "aeb43e5f83753b684783a3341ef46d45", + "x-ms-correlation-request-id": "b1f7ad61-9a41-4684-baaf-3177dc75efcf", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "03df545f-60f6-4bd7-89bf-b402722d4013", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075334Z:b1f7ad61-9a41-4684-baaf-3177dc75efcf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6269a40d387608449af6b1492c1eadd3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "fab78384-1d35-4f6c-9b65-945b47ad39f4", + "x-ms-client-request-id": "6269a40d387608449af6b1492c1eadd3", + "x-ms-correlation-request-id": "14dcba60-c8db-4c19-a128-176adbb4c2ac", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "2c77d56a-2f7a-40ce-bdbf-0cce4f86ab14", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075336Z:14dcba60-c8db-4c19-a128-176adbb4c2ac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "94f7a4c9b4528fd7c4b0739f338539fe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e3b33ff5-830c-4072-8715-6f371678a833", + "x-ms-client-request-id": "94f7a4c9b4528fd7c4b0739f338539fe", + "x-ms-correlation-request-id": "97366f43-36d1-40b2-8400-9f7c726ff9b2", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "261ced14-5fd9-4e46-84dd-ec792170c86a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075337Z:97366f43-36d1-40b2-8400-9f7c726ff9b2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c42e35abe15c266ff9ab147ed21e0f28", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:53: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": "c9a26a2a-190f-4b57-954c-edc775c9a4d1", + "x-ms-client-request-id": "c42e35abe15c266ff9ab147ed21e0f28", + "x-ms-correlation-request-id": "3afa1e8a-20f2-4111-a9b1-3383d43bb36b", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "55559a9f-7606-45aa-bcda-265a0daeb2e0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075338Z:3afa1e8a-20f2-4111-a9b1-3383d43bb36b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "796bcfd6d8fc59f3ccd99dc6c5a4d414", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8c5b3adf-9ec1-4fc7-83a9-d0929dfd050c", + "x-ms-client-request-id": "796bcfd6d8fc59f3ccd99dc6c5a4d414", + "x-ms-correlation-request-id": "bb5cbdea-a12f-4f48-ba86-ec55d17f3c30", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "a898bc1e-4609-48be-b207-c0f0b92f9694", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075339Z:bb5cbdea-a12f-4f48-ba86-ec55d17f3c30" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f69eb3bce9f0e77635d09aa6a058bda6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "68596df9-7a25-4ff1-a795-7362bf6a49b1", + "x-ms-client-request-id": "f69eb3bce9f0e77635d09aa6a058bda6", + "x-ms-correlation-request-id": "4873efb8-dfc9-459a-ac9a-9802c6727347", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "57c7e662-06de-4f74-a30c-419f09a37642", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075341Z:4873efb8-dfc9-459a-ac9a-9802c6727347" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "63c94ba1c01ad20141d4f88343a86155", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0c98a586-b601-4b98-9f65-b55891f0d8c1", + "x-ms-client-request-id": "63c94ba1c01ad20141d4f88343a86155", + "x-ms-correlation-request-id": "c40f28a0-2d61-4e83-ae62-fbc524e029f8", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "ed0cbd6f-82dd-4d89-b302-ac7e158a44d8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075342Z:c40f28a0-2d61-4e83-ae62-fbc524e029f8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1ec2ffd6187fec375983432c3e4db873", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "fd051b35-a556-47f9-b489-792c5c2f9e5e", + "x-ms-client-request-id": "1ec2ffd6187fec375983432c3e4db873", + "x-ms-correlation-request-id": "4f1ba75d-a608-40da-9cfe-2caa04ee1b5b", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "e6e7e5de-0b2a-4296-a623-3ed81581de0f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075343Z:4f1ba75d-a608-40da-9cfe-2caa04ee1b5b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7925f71b71dafcf9b1cbb41bf0f2a38c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0f38a403-1f68-4afb-8009-62f2fee7e41c", + "x-ms-client-request-id": "7925f71b71dafcf9b1cbb41bf0f2a38c", + "x-ms-correlation-request-id": "740d6ac6-7ffd-47c0-abe3-6783bac518ea", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "9edb321b-b36e-458c-a5a1-01cb524057fe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075344Z:740d6ac6-7ffd-47c0-abe3-6783bac518ea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a0cf456e9e96892613dc0a967cd493f4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b3a3f257-e633-4559-8241-a40940dae265", + "x-ms-client-request-id": "a0cf456e9e96892613dc0a967cd493f4", + "x-ms-correlation-request-id": "8f0fde84-2479-46ac-a7e1-ec0df24a896b", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "51ee33d7-8d18-4652-85cf-7b1afedb850e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075346Z:8f0fde84-2479-46ac-a7e1-ec0df24a896b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4c67841be783657a06c56cb4631cfc66", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6b6432cc-f18b-4467-aa9f-450d3dea047d", + "x-ms-client-request-id": "4c67841be783657a06c56cb4631cfc66", + "x-ms-correlation-request-id": "df13479f-c251-49e7-b29a-cac4d623ceb1", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "afc59b48-d77d-4719-a80d-38e0ad34c8c8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075347Z:df13479f-c251-49e7-b29a-cac4d623ceb1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f9bdb6df187d7ddcd09b66fe66637fdd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "058e2384-3cde-4fad-9f2f-844dd9d71b0e", + "x-ms-client-request-id": "f9bdb6df187d7ddcd09b66fe66637fdd", + "x-ms-correlation-request-id": "7b68ffcb-bded-4781-ac5d-997cfb07ba96", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "7831c0a1-c94c-4b23-a8eb-67107a0bcca3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075348Z:7b68ffcb-bded-4781-ac5d-997cfb07ba96" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6cffc038578b8609ca699ad0317225f7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ccdec1a1-e984-4f7c-8522-cbd41db44078", + "x-ms-client-request-id": "6cffc038578b8609ca699ad0317225f7", + "x-ms-correlation-request-id": "b4b7bfd4-69a4-427c-b0be-c6ea95607c82", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "6d3f031c-cd90-4de6-bd0f-3c6bf650d4d1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075350Z:b4b7bfd4-69a4-427c-b0be-c6ea95607c82" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c5b7a4e099170377a8ea7ce7817cfea3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b49b4518-1930-492f-8666-6425401f8ce0", + "x-ms-client-request-id": "c5b7a4e099170377a8ea7ce7817cfea3", + "x-ms-correlation-request-id": "3d996431-64d0-4257-8844-899fc476161c", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "d235bd4e-8ec3-4404-9672-8e128ff0a2bf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075351Z:3d996431-64d0-4257-8844-899fc476161c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a37b8f458f1c88dbad362f147e0c4b5d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "157df04b-4631-48de-a4e7-3875b7ccac94", + "x-ms-client-request-id": "a37b8f458f1c88dbad362f147e0c4b5d", + "x-ms-correlation-request-id": "e8c0d5c1-6036-49fc-80d0-f8bb83d43924", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "7510f689-2a97-4d1f-8782-8266dc2a5e83", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075353Z:e8c0d5c1-6036-49fc-80d0-f8bb83d43924" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c21d6f76baab9ec548fcc4a0db21054e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "222ab541-99c2-4656-8a1d-3fd5007edd8d", + "x-ms-client-request-id": "c21d6f76baab9ec548fcc4a0db21054e", + "x-ms-correlation-request-id": "9bf0d237-dd25-4bb1-9aaf-4a5fdfd6b300", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "f044a86e-1b21-4429-bab1-ab48a8caef58", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075354Z:9bf0d237-dd25-4bb1-9aaf-4a5fdfd6b300" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a18af76a82f650dac92e18e06a62849b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "cf7b2fe0-262c-41e0-b924-d12c55f41876", + "x-ms-client-request-id": "a18af76a82f650dac92e18e06a62849b", + "x-ms-correlation-request-id": "afffb041-7357-4ec4-8cee-27efd74a385b", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "241d33c9-ab4e-49b5-934d-f1ed5ffaaec7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075356Z:afffb041-7357-4ec4-8cee-27efd74a385b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "11711e9e3c5e8bf7cadd5a1fcb3aad8c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e4983e39-bca9-4d35-81af-4b0170c48a41", + "x-ms-client-request-id": "11711e9e3c5e8bf7cadd5a1fcb3aad8c", + "x-ms-correlation-request-id": "985d4ee7-a649-4236-a9dd-f33ed1f4a0ff", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "6f08bc82-4e31-442d-8aed-c3c13dcc989a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075357Z:985d4ee7-a649-4236-a9dd-f33ed1f4a0ff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "87a9e030a981f36794ccf97da2e533e6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8cec1377-0fd3-4797-bac4-30df266f37eb", + "x-ms-client-request-id": "87a9e030a981f36794ccf97da2e533e6", + "x-ms-correlation-request-id": "899562cc-24b5-41e6-914b-54893e263e82", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "963a9227-ce2e-4d60-bd61-4cf93b88b10b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075359Z:899562cc-24b5-41e6-914b-54893e263e82" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bc012878f3af2eefffffd71827ba858e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "13fda080-0537-42f9-8888-67eeb7546fae", + "x-ms-client-request-id": "bc012878f3af2eefffffd71827ba858e", + "x-ms-correlation-request-id": "c7383553-ae29-4883-873b-1a1784959599", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "502937c7-028e-4980-9d56-b4fc706da44d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075401Z:c7383553-ae29-4883-873b-1a1784959599" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8aaf8c80fcb9f51ab67d7c924279e9e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "869aca0a-5940-4a2a-8194-81b0ab38ddfc", + "x-ms-client-request-id": "8aaf8c80fcb9f51ab67d7c924279e9e5", + "x-ms-correlation-request-id": "adcc530e-bd54-40b3-8659-fd583990a5e0", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "ff82ba0f-017d-41c0-b38d-b8c43d8e3f63", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075403Z:adcc530e-bd54-40b3-8659-fd583990a5e0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a3a774aaf0383cdcf07a8782d14ecbd9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "71618606-cea3-4f57-819b-653ec9941226", + "x-ms-client-request-id": "a3a774aaf0383cdcf07a8782d14ecbd9", + "x-ms-correlation-request-id": "881c5a3d-4507-4983-88fc-a1d7ee217f9b", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "1e14e33a-a6a3-46f8-b15d-7809d7eb7b98", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075405Z:881c5a3d-4507-4983-88fc-a1d7ee217f9b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "16fd6a46a8357b2c0d0c0531765cec86", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9634cadc-3111-4d51-9832-a83287ae0efc", + "x-ms-client-request-id": "16fd6a46a8357b2c0d0c0531765cec86", + "x-ms-correlation-request-id": "319d1fd7-6066-4bcc-bef1-976c448af849", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "585af6b7-759a-4576-b405-cfe53901cac7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075406Z:319d1fd7-6066-4bcc-bef1-976c448af849" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b36df215e1128f56af72993e75982368", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "46a758b7-8f64-4a99-b989-831c59b25701", + "x-ms-client-request-id": "b36df215e1128f56af72993e75982368", + "x-ms-correlation-request-id": "62045a2c-2f94-417f-9c90-9535338167f1", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "b091b82c-a230-49e6-86f8-6924d263da3c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075407Z:62045a2c-2f94-417f-9c90-9535338167f1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d74ba3b1d37c02af472c962beaaac693", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "fde9b070-065a-446f-95d9-f0f27a5a3211", + "x-ms-client-request-id": "d74ba3b1d37c02af472c962beaaac693", + "x-ms-correlation-request-id": "e0850e11-5c8b-4d63-a677-e8c73a4fe242", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "ecbeb527-0354-41e4-ac8d-0284e84ad8fd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075408Z:e0850e11-5c8b-4d63-a677-e8c73a4fe242" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "df6c008e18e065c7146d66c20eed0574", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e9e9263a-f4d2-4504-bbd6-e5cce744b37e", + "x-ms-client-request-id": "df6c008e18e065c7146d66c20eed0574", + "x-ms-correlation-request-id": "a34e3d6a-119b-4ea1-9fda-a2f04d7ce742", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "de85af61-052a-4e0f-9a00-09aae4d62c97", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075410Z:a34e3d6a-119b-4ea1-9fda-a2f04d7ce742" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d37f9de91411410a426b6be64b2ba404", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4b2fa958-3f08-4a2a-a26b-7333d0163428", + "x-ms-client-request-id": "d37f9de91411410a426b6be64b2ba404", + "x-ms-correlation-request-id": "bc1b820b-21c2-403e-87ff-736abccddcd5", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "e024a9e9-6cda-4ee9-94cc-d980f7ead8ee", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075411Z:bc1b820b-21c2-403e-87ff-736abccddcd5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "74b006ac442c9987dce6c30e6cedf359", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a99aaa92-b93f-4e82-9f6e-8788e04b896b", + "x-ms-client-request-id": "74b006ac442c9987dce6c30e6cedf359", + "x-ms-correlation-request-id": "42494d99-d3d4-41af-987e-f851d9a00d4b", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "31774db1-e519-481a-b871-2b6199686019", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075412Z:42494d99-d3d4-41af-987e-f851d9a00d4b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4d422126f22b7982f62a9c74ace019e8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6a61dd64-cffe-4588-ae1a-93d2d3c99df0", + "x-ms-client-request-id": "4d422126f22b7982f62a9c74ace019e8", + "x-ms-correlation-request-id": "e282d88e-8a8a-489a-bd1c-596393ccdaef", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "6444ba70-6786-42b5-a14f-cb94c58b285a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075414Z:e282d88e-8a8a-489a-bd1c-596393ccdaef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "081562c8913da44815e6f72a51fcd455", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:54: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": "0c1a47b0-d1cb-499e-8882-79b502d58cb2", + "x-ms-client-request-id": "081562c8913da44815e6f72a51fcd455", + "x-ms-correlation-request-id": "aa53ec47-f560-4186-8057-bbcaaa8f765b", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-request-id": "acf4e7b8-ae6b-445e-a587-ca01121402f6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075415Z:aa53ec47-f560-4186-8057-bbcaaa8f765b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2abf127857e8bad983367d01a713ecfb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5e278737-5d58-4637-9dad-5a89f85af34d", + "x-ms-client-request-id": "2abf127857e8bad983367d01a713ecfb", + "x-ms-correlation-request-id": "55e8b0f4-a24a-447a-ba9d-0b25a0fac467", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "1161b408-ea9d-480e-b730-7fb4f6ef888c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075416Z:55e8b0f4-a24a-447a-ba9d-0b25a0fac467" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0a45dacdebd7951bd99d3745fa5828fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "586f793a-ff0f-4247-8a9e-23befa677fba", + "x-ms-client-request-id": "0a45dacdebd7951bd99d3745fa5828fa", + "x-ms-correlation-request-id": "512fb2a2-1a8f-432d-b167-eea0611d32f0", + "x-ms-ratelimit-remaining-subscription-reads": "11788", + "x-ms-request-id": "0f3467bf-f470-463d-bec4-86d995ee9fb4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075418Z:512fb2a2-1a8f-432d-b167-eea0611d32f0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9afc4655ef2171ff895a85071346fc02", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "1ee903c1-287b-4237-af50-588d24ea1045", + "x-ms-client-request-id": "9afc4655ef2171ff895a85071346fc02", + "x-ms-correlation-request-id": "54316d5a-35af-4675-9c50-63ef5716ae18", + "x-ms-ratelimit-remaining-subscription-reads": "11787", + "x-ms-request-id": "f1fbf124-4dae-4d7c-ae63-c44f4a4652ee", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075419Z:54316d5a-35af-4675-9c50-63ef5716ae18" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "765dfcf9cab68d7df62a504b1f94c02b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6a067aab-b7aa-4150-8449-9b00c488fbe1", + "x-ms-client-request-id": "765dfcf9cab68d7df62a504b1f94c02b", + "x-ms-correlation-request-id": "6ed579e3-6af3-4da9-86b5-b2faddb0246d", + "x-ms-ratelimit-remaining-subscription-reads": "11786", + "x-ms-request-id": "60a38ffe-d1cb-44d8-bc9a-e723307eae48", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075420Z:6ed579e3-6af3-4da9-86b5-b2faddb0246d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "61ac830d5216ddd9dad4817d65148192", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a725dadd-c7db-487c-8b55-c9d3ce14e866", + "x-ms-client-request-id": "61ac830d5216ddd9dad4817d65148192", + "x-ms-correlation-request-id": "5dd824c2-7217-404a-999b-b07f6b621bf5", + "x-ms-ratelimit-remaining-subscription-reads": "11785", + "x-ms-request-id": "5a1f3558-7a02-474b-8359-9bef3997ca9b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075421Z:5dd824c2-7217-404a-999b-b07f6b621bf5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fd4b35a0b2fa8b43c96fa4f79eb451f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "fa31c6ac-d695-4327-af38-332f5983d434", + "x-ms-client-request-id": "fd4b35a0b2fa8b43c96fa4f79eb451f5", + "x-ms-correlation-request-id": "af8796ab-75f6-4486-9783-776fbf1507bb", + "x-ms-ratelimit-remaining-subscription-reads": "11784", + "x-ms-request-id": "38cf93c1-fe2a-4ccb-9222-2ad3f9182c77", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075423Z:af8796ab-75f6-4486-9783-776fbf1507bb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "90f9599a9b9aa6eb227f9be2480027e1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "44d1037a-633d-44db-9e18-359eca6e4b44", + "x-ms-client-request-id": "90f9599a9b9aa6eb227f9be2480027e1", + "x-ms-correlation-request-id": "f412ad25-5a93-4d21-b5ef-bedff053e8f2", + "x-ms-ratelimit-remaining-subscription-reads": "11783", + "x-ms-request-id": "4a47a74f-e326-4bb7-9753-aff45e933d4c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075424Z:f412ad25-5a93-4d21-b5ef-bedff053e8f2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e9abbea9c3485b30402197a6ade23f26", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "bb3ed580-9253-42f8-a5d8-23fe3e41c788", + "x-ms-client-request-id": "e9abbea9c3485b30402197a6ade23f26", + "x-ms-correlation-request-id": "e31b9602-4adf-433e-9024-a19207b52f62", + "x-ms-ratelimit-remaining-subscription-reads": "11782", + "x-ms-request-id": "8d5fd088-75a8-4527-92cb-bad75cf0235c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075425Z:e31b9602-4adf-433e-9024-a19207b52f62" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0ce38c82f11a04f849a4da7b166142c9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e16ccaa5-d8cc-4d5c-b871-4b5b34b99ab0", + "x-ms-client-request-id": "0ce38c82f11a04f849a4da7b166142c9", + "x-ms-correlation-request-id": "089cf717-69df-40eb-a859-641bfd46c77f", + "x-ms-ratelimit-remaining-subscription-reads": "11781", + "x-ms-request-id": "569d5fba-45d9-42a1-88cf-fac7b0b5d266", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075427Z:089cf717-69df-40eb-a859-641bfd46c77f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e04ec2486709d6ac299e50790445f940", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "1aeedc74-9429-449f-8989-89a31b4fa328", + "x-ms-client-request-id": "e04ec2486709d6ac299e50790445f940", + "x-ms-correlation-request-id": "9bcb3982-2705-4ffc-bbd3-ac7cfb507bc7", + "x-ms-ratelimit-remaining-subscription-reads": "11780", + "x-ms-request-id": "55cae93f-5628-44dc-b729-6aeb10079480", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075428Z:9bcb3982-2705-4ffc-bbd3-ac7cfb507bc7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bc5f74401a1db7c6c5a6a0a3e8b544de", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "02e2cb09-d9b4-420a-b0f5-9d5bb0b8a97c", + "x-ms-client-request-id": "bc5f74401a1db7c6c5a6a0a3e8b544de", + "x-ms-correlation-request-id": "75c5c830-71fb-4d10-8c8d-60530b85cf0d", + "x-ms-ratelimit-remaining-subscription-reads": "11774", + "x-ms-request-id": "632382ff-59d8-4050-830b-e9e4e8fa4bc9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075430Z:75c5c830-71fb-4d10-8c8d-60530b85cf0d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ea5ecede5f941a1ddf0ce27ca17f0004", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "26027a44-66d6-4ca7-9b1c-8eac87f4c1c8", + "x-ms-client-request-id": "ea5ecede5f941a1ddf0ce27ca17f0004", + "x-ms-correlation-request-id": "c9a377c9-09a7-4213-bb04-c05344c796c6", + "x-ms-ratelimit-remaining-subscription-reads": "11773", + "x-ms-request-id": "a0fd9e34-28fb-49ca-baf8-f912f125d5e7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075431Z:c9a377c9-09a7-4213-bb04-c05344c796c6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a13a9aab85012dacfc961a62c709ee74", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e4138405-5f5d-498e-bde4-2270f1d6921e", + "x-ms-client-request-id": "a13a9aab85012dacfc961a62c709ee74", + "x-ms-correlation-request-id": "d610966e-a3c4-4595-bd00-749898160d88", + "x-ms-ratelimit-remaining-subscription-reads": "11772", + "x-ms-request-id": "353d2f00-4aac-4692-9d25-a196fdea4087", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075432Z:d610966e-a3c4-4595-bd00-749898160d88" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "369a71590ee6e1ab5745dd11384a1646", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "277c2fb4-9e67-492c-88e5-859550f3800e", + "x-ms-client-request-id": "369a71590ee6e1ab5745dd11384a1646", + "x-ms-correlation-request-id": "37700ca5-4ede-4d24-b79c-d683f2913f9a", + "x-ms-ratelimit-remaining-subscription-reads": "11771", + "x-ms-request-id": "25e7a0bc-1b71-47d5-8214-b37ba010c441", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075434Z:37700ca5-4ede-4d24-b79c-d683f2913f9a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4ef79ba6a37a59dc2230eefe44ba52d6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "803c50e8-555a-4dae-987c-0318ea6e9257", + "x-ms-client-request-id": "4ef79ba6a37a59dc2230eefe44ba52d6", + "x-ms-correlation-request-id": "cb154404-ccce-4466-9377-95476b9ef6f1", + "x-ms-ratelimit-remaining-subscription-reads": "11770", + "x-ms-request-id": "fedf17c0-0267-4e65-9d0e-ec74a0dc147a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075435Z:cb154404-ccce-4466-9377-95476b9ef6f1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2f236e1dc9e49d1dee5949bca89af5b1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d47789de-0f0f-45f5-8d78-2a9decc30f44", + "x-ms-client-request-id": "2f236e1dc9e49d1dee5949bca89af5b1", + "x-ms-correlation-request-id": "11a9eb26-6c76-4121-a9e6-8b694ccd73dd", + "x-ms-ratelimit-remaining-subscription-reads": "11769", + "x-ms-request-id": "f210ff62-0994-4820-add4-c6359cfa3bba", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075436Z:11a9eb26-6c76-4121-a9e6-8b694ccd73dd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2cbcd37f9f11b6f9944113b61fad9c9d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e3b3cbee-66d2-495d-bb84-0a3ab49f8c49", + "x-ms-client-request-id": "2cbcd37f9f11b6f9944113b61fad9c9d", + "x-ms-correlation-request-id": "90a1118f-b5d0-4c7d-a1af-cd611f9d4e72", + "x-ms-ratelimit-remaining-subscription-reads": "11768", + "x-ms-request-id": "162d4219-66a7-4a19-9e6d-996bd8898d61", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075438Z:90a1118f-b5d0-4c7d-a1af-cd611f9d4e72" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c9f306f2e727dc617d5a60215920b087", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "df025f3d-f37a-44d0-a9f8-6599c1a4f367", + "x-ms-client-request-id": "c9f306f2e727dc617d5a60215920b087", + "x-ms-correlation-request-id": "1232d071-9ac1-4f62-8809-02eb5c47016d", + "x-ms-ratelimit-remaining-subscription-reads": "11767", + "x-ms-request-id": "79041725-dc8e-46e2-bbe8-1d41c03e7284", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075439Z:1232d071-9ac1-4f62-8809-02eb5c47016d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "717e3d3a26fe7ec4746d9aa3b5677e40", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b0d1a2d0-9d42-495a-9800-7688477e5e61", + "x-ms-client-request-id": "717e3d3a26fe7ec4746d9aa3b5677e40", + "x-ms-correlation-request-id": "498cd154-d401-4aba-96c3-9efc5e42c53f", + "x-ms-ratelimit-remaining-subscription-reads": "11766", + "x-ms-request-id": "d8a7ccf4-2ffe-4082-a8ef-1f720eba9fbf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075440Z:498cd154-d401-4aba-96c3-9efc5e42c53f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a1c9acbc2ba7988a71dfaeb73fd85c74", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d2fe68d2-b348-4e1b-977d-34812a25e80d", + "x-ms-client-request-id": "a1c9acbc2ba7988a71dfaeb73fd85c74", + "x-ms-correlation-request-id": "4ab38946-5b64-43fd-8e85-c25d40ec0862", + "x-ms-ratelimit-remaining-subscription-reads": "11765", + "x-ms-request-id": "de6436bc-3dc0-49a9-bfe1-2e4b84f3c22a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075442Z:4ab38946-5b64-43fd-8e85-c25d40ec0862" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e27b8c912b2fcc9e417555ba4cbe2616", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "31dddad0-7506-430e-a053-d2ac7b43cdb1", + "x-ms-client-request-id": "e27b8c912b2fcc9e417555ba4cbe2616", + "x-ms-correlation-request-id": "7b778921-3375-4943-a56c-21edf556e5b7", + "x-ms-ratelimit-remaining-subscription-reads": "11764", + "x-ms-request-id": "37a84372-42f4-4cb2-a42e-438537aa67f3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075443Z:7b778921-3375-4943-a56c-21edf556e5b7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ac641fdc0e560fdfb2e5ff1e770d3f9c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b265cb65-5dc4-4a72-87ec-8a76f587d73a", + "x-ms-client-request-id": "ac641fdc0e560fdfb2e5ff1e770d3f9c", + "x-ms-correlation-request-id": "a294d687-b420-4c4d-aefd-c24cb843dd09", + "x-ms-ratelimit-remaining-subscription-reads": "11763", + "x-ms-request-id": "620207fd-6a85-4921-b10e-41538f65bb33", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075444Z:a294d687-b420-4c4d-aefd-c24cb843dd09" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "291226109beb91110dfd6032d6d04cb3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3859b9bc-491c-444d-8442-2c75ba501438", + "x-ms-client-request-id": "291226109beb91110dfd6032d6d04cb3", + "x-ms-correlation-request-id": "f8fc55ad-ef1f-4e3b-9a30-52ee1fce0b15", + "x-ms-ratelimit-remaining-subscription-reads": "11762", + "x-ms-request-id": "dde4dcf3-a1a8-46b8-9637-61e1fa1e57f8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075445Z:f8fc55ad-ef1f-4e3b-9a30-52ee1fce0b15" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1fda98b8b073821dac6c2f492c805434", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "c65e808c-3115-420a-810b-56ed9c2924d2", + "x-ms-client-request-id": "1fda98b8b073821dac6c2f492c805434", + "x-ms-correlation-request-id": "4fe6de91-cb0f-45ce-b56a-31f461ac574b", + "x-ms-ratelimit-remaining-subscription-reads": "11761", + "x-ms-request-id": "f4b52673-05ec-479f-a1b3-a042801400d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075447Z:4fe6de91-cb0f-45ce-b56a-31f461ac574b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "25a9b836fdab402a0ed39e58aead38e2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "df44e6a7-d841-4520-8844-11ccbfb1c859", + "x-ms-client-request-id": "25a9b836fdab402a0ed39e58aead38e2", + "x-ms-correlation-request-id": "354bfdee-ad3d-4c94-b582-f608063f18a7", + "x-ms-ratelimit-remaining-subscription-reads": "11760", + "x-ms-request-id": "9053ffba-dc17-452f-8f1c-ae54efd020d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075448Z:354bfdee-ad3d-4c94-b582-f608063f18a7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "df654b991f326028098f7c7f6bc8648d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "51fb25c2-ab02-45e9-8a18-f17734e3976a", + "x-ms-client-request-id": "df654b991f326028098f7c7f6bc8648d", + "x-ms-correlation-request-id": "8a18f80c-f2cd-4953-9be7-43ec058242a8", + "x-ms-ratelimit-remaining-subscription-reads": "11759", + "x-ms-request-id": "0b830fa2-6475-433c-8d17-f05cdd5b4aca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075449Z:8a18f80c-f2cd-4953-9be7-43ec058242a8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1efc2ba92726bb076d9a10a011c4d4ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d9bb7f82-6e35-471b-ad26-7637e19292f3", + "x-ms-client-request-id": "1efc2ba92726bb076d9a10a011c4d4ff", + "x-ms-correlation-request-id": "feb14965-3b30-4efe-a2bc-56e985031a7a", + "x-ms-ratelimit-remaining-subscription-reads": "11758", + "x-ms-request-id": "1c133a4b-01c3-4a52-99c5-4e39a0d1f927", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075451Z:feb14965-3b30-4efe-a2bc-56e985031a7a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e0b04d34741a160190491b1c80abd446", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "035c527a-500e-42f9-a1e4-0706a0a54fc4", + "x-ms-client-request-id": "e0b04d34741a160190491b1c80abd446", + "x-ms-correlation-request-id": "a8207808-cad7-412f-9e1d-51d8050a3ad3", + "x-ms-ratelimit-remaining-subscription-reads": "11757", + "x-ms-request-id": "83acb1a9-bed2-491b-8b25-b70441041e94", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075452Z:a8207808-cad7-412f-9e1d-51d8050a3ad3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "82af116e1ab171bb44aa71980f874f44", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "931641cc-0ecd-43d6-93e2-531ab4c48d7e", + "x-ms-client-request-id": "82af116e1ab171bb44aa71980f874f44", + "x-ms-correlation-request-id": "e824dde5-84bd-4bc3-b83f-d5a3e11f1551", + "x-ms-ratelimit-remaining-subscription-reads": "11756", + "x-ms-request-id": "15bf9905-2f23-4f0b-9833-9681fff9a6d8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075453Z:e824dde5-84bd-4bc3-b83f-d5a3e11f1551" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1e4b7dbb841735722ae58ddd0beb3ac2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "52221621-f3d5-4982-9edc-e852f1fb2342", + "x-ms-client-request-id": "1e4b7dbb841735722ae58ddd0beb3ac2", + "x-ms-correlation-request-id": "6f8d0dde-3b3d-4cba-9fa9-a764c7724458", + "x-ms-ratelimit-remaining-subscription-reads": "11755", + "x-ms-request-id": "9e1cf604-1c03-40ed-b295-9cbdfa68682b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075454Z:6f8d0dde-3b3d-4cba-9fa9-a764c7724458" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ff31cac55115194d913e9c7003690708", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7c46d7ec-efc1-4fc2-9d7c-0b258cea7e53", + "x-ms-client-request-id": "ff31cac55115194d913e9c7003690708", + "x-ms-correlation-request-id": "aed3a50e-ce1d-4410-8457-4966cee4c4db", + "x-ms-ratelimit-remaining-subscription-reads": "11754", + "x-ms-request-id": "ded52ccb-7677-4d27-b548-933cfb2dab2f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075456Z:aed3a50e-ce1d-4410-8457-4966cee4c4db" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0360d6f9b65fea2e9e7a58cb8cde6558", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4bc1a095-4ce4-41f7-bbb8-fe27f3515d62", + "x-ms-client-request-id": "0360d6f9b65fea2e9e7a58cb8cde6558", + "x-ms-correlation-request-id": "18d36b3c-d27a-4724-b83e-7e97174718a3", + "x-ms-ratelimit-remaining-subscription-reads": "11753", + "x-ms-request-id": "a4fc04ab-c6dc-4d32-a619-6426fdc174a7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075457Z:18d36b3c-d27a-4724-b83e-7e97174718a3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "44d2ae6f4f556a2f30318cd9e70232c1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "18a11a9e-841e-4628-8ccb-74c540c258b1", + "x-ms-client-request-id": "44d2ae6f4f556a2f30318cd9e70232c1", + "x-ms-correlation-request-id": "f9bcb05f-c1a2-4d8e-bec6-eb2397f18378", + "x-ms-ratelimit-remaining-subscription-reads": "11752", + "x-ms-request-id": "b8c113ec-1068-4058-b8c0-6186f22a429a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075458Z:f9bcb05f-c1a2-4d8e-bec6-eb2397f18378" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "35e385de378b0f629c47619bf9818cb3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d4148599-6d61-4371-974e-d284f919136e", + "x-ms-client-request-id": "35e385de378b0f629c47619bf9818cb3", + "x-ms-correlation-request-id": "783bfdc7-0e24-432a-97fa-38a51c6070e1", + "x-ms-ratelimit-remaining-subscription-reads": "11751", + "x-ms-request-id": "3da04e79-8c82-4819-80c9-9630b2d46e51", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075500Z:783bfdc7-0e24-432a-97fa-38a51c6070e1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "540043d8c296aab2a6f6d32e2954029c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "1eae0107-56f7-4792-9e38-14631f68477a", + "x-ms-client-request-id": "540043d8c296aab2a6f6d32e2954029c", + "x-ms-correlation-request-id": "87b928aa-d435-457f-a13c-768fc3932195", + "x-ms-ratelimit-remaining-subscription-reads": "11750", + "x-ms-request-id": "75765ace-94d9-40cb-af54-7f8ad68613f2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075501Z:87b928aa-d435-457f-a13c-768fc3932195" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "07ec964730fa38cd4bc2a80eee9470ae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "24a42882-eec1-42f7-af7b-f120ab812341", + "x-ms-client-request-id": "07ec964730fa38cd4bc2a80eee9470ae", + "x-ms-correlation-request-id": "0cc63830-5f76-4154-8e33-b7295a00e296", + "x-ms-ratelimit-remaining-subscription-reads": "11749", + "x-ms-request-id": "f9a8f744-cc1f-407e-84e4-184c7299bbdc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075502Z:0cc63830-5f76-4154-8e33-b7295a00e296" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a300d8a4dd021c2ad2388e946434e647", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "9e2077ca-d666-4d8a-a7c7-6f66ef9a842a", + "x-ms-client-request-id": "a300d8a4dd021c2ad2388e946434e647", + "x-ms-correlation-request-id": "a9d299ef-de16-4a27-b98c-1945e4754d1a", + "x-ms-ratelimit-remaining-subscription-reads": "11748", + "x-ms-request-id": "d13d17a7-7325-4a67-9b4f-cc0cded1dcca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075503Z:a9d299ef-de16-4a27-b98c-1945e4754d1a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6253c5448594a8b976c708d31aa4bc12", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6bce6f0e-37ca-459f-87f9-9f991962c2e0", + "x-ms-client-request-id": "6253c5448594a8b976c708d31aa4bc12", + "x-ms-correlation-request-id": "7740577f-016e-4e7d-9a19-1937cd585892", + "x-ms-ratelimit-remaining-subscription-reads": "11747", + "x-ms-request-id": "7978477f-8c52-4022-ab30-031a6af73b76", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075505Z:7740577f-016e-4e7d-9a19-1937cd585892" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "508924855f546a996cd035c1a238d416", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "40b3b4ad-cd99-4675-81c0-550466f4d37b", + "x-ms-client-request-id": "508924855f546a996cd035c1a238d416", + "x-ms-correlation-request-id": "32f7be0f-f0fc-4eff-a612-63a1ddde5bee", + "x-ms-ratelimit-remaining-subscription-reads": "11746", + "x-ms-request-id": "f74ace74-aeeb-47dd-8040-20600aa3c377", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075507Z:32f7be0f-f0fc-4eff-a612-63a1ddde5bee" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "29c961dc0e411f191f582d3ad557012e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "948a4a4c-3d69-4511-81dd-3bb2221e6fe9", + "x-ms-client-request-id": "29c961dc0e411f191f582d3ad557012e", + "x-ms-correlation-request-id": "248ad557-79db-413e-9fea-e2ed54154960", + "x-ms-ratelimit-remaining-subscription-reads": "11745", + "x-ms-request-id": "94fc190c-7a7e-446f-ae98-082fa47a55a5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075508Z:248ad557-79db-413e-9fea-e2ed54154960" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3f0e7b7c95abe5f22be9f6c450f7063d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1f6fd28c-b00c-4efb-af66-d20be4a13d51", + "x-ms-client-request-id": "3f0e7b7c95abe5f22be9f6c450f7063d", + "x-ms-correlation-request-id": "80b6dea1-58f6-45c6-8413-ca01ed99dc36", + "x-ms-ratelimit-remaining-subscription-reads": "11744", + "x-ms-request-id": "d79ff9b3-a925-4eb2-8c6f-ffe0b8d8a1a5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075509Z:80b6dea1-58f6-45c6-8413-ca01ed99dc36" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b8f6f1f392da77d10b6931fc315f9514", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8e9f97f4-01a7-4c12-9eec-fcd32a06f620", + "x-ms-client-request-id": "b8f6f1f392da77d10b6931fc315f9514", + "x-ms-correlation-request-id": "b428d676-6378-4bb9-a0c7-23b6768715f0", + "x-ms-ratelimit-remaining-subscription-reads": "11743", + "x-ms-request-id": "ef11d291-51bd-4d2a-a016-c01ffde5bf99", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075510Z:b428d676-6378-4bb9-a0c7-23b6768715f0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "264406ce9429476b6ee4fd581855cf28", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0441a4f3-dd02-4f6c-95e1-780658f9ffc9", + "x-ms-client-request-id": "264406ce9429476b6ee4fd581855cf28", + "x-ms-correlation-request-id": "6750c0b6-162a-4165-a256-c9cf5a4b5eaa", + "x-ms-ratelimit-remaining-subscription-reads": "11742", + "x-ms-request-id": "e7afcd40-5832-48cc-b3e7-c02b8c74d2d2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075512Z:6750c0b6-162a-4165-a256-c9cf5a4b5eaa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e346ef524860e953aa97334164f6b3cb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:55: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": "734da973-971b-4a2d-a26a-0c5851eb296c", + "x-ms-client-request-id": "e346ef524860e953aa97334164f6b3cb", + "x-ms-correlation-request-id": "ef52048f-ecdd-414a-8455-3d377927ce3a", + "x-ms-ratelimit-remaining-subscription-reads": "11741", + "x-ms-request-id": "b8fbaf0b-8d1d-479b-ac05-fba69ec38d61", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075513Z:ef52048f-ecdd-414a-8455-3d377927ce3a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "49f5e154dfb25e1386af4af694795fb6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b6456ae9-6fa9-4905-b4a1-6dea7d3ff87e", + "x-ms-client-request-id": "49f5e154dfb25e1386af4af694795fb6", + "x-ms-correlation-request-id": "f5ba392f-ec4e-4809-bbb4-39d4cb0890c0", + "x-ms-ratelimit-remaining-subscription-reads": "11740", + "x-ms-request-id": "a8479271-2f57-45a0-b57d-d8d44770fe73", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075514Z:f5ba392f-ec4e-4809-bbb4-39d4cb0890c0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "42a9089ab11986b3b35a7c926129e377", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e2916c22-321a-4809-b809-a0c338bff877", + "x-ms-client-request-id": "42a9089ab11986b3b35a7c926129e377", + "x-ms-correlation-request-id": "28f77436-60a0-4c02-834c-09def2926f4d", + "x-ms-ratelimit-remaining-subscription-reads": "11739", + "x-ms-request-id": "89b5bec7-b6d1-435a-acb9-cf7ed221e1d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075516Z:28f77436-60a0-4c02-834c-09def2926f4d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "36043230865f7275dbe75db1fe5d5531", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "20887e60-2edd-4ee5-beba-c0eb4dc63512", + "x-ms-client-request-id": "36043230865f7275dbe75db1fe5d5531", + "x-ms-correlation-request-id": "89bd766f-7136-4158-a03f-d94f133f493c", + "x-ms-ratelimit-remaining-subscription-reads": "11738", + "x-ms-request-id": "7bda9167-2170-4e95-a749-fbacecca6d42", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075517Z:89bd766f-7136-4158-a03f-d94f133f493c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5ba77d38714ca2b22e6f95576381fd5c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0af757a8-666d-4fe9-bcd3-a8bc0b7b7108", + "x-ms-client-request-id": "5ba77d38714ca2b22e6f95576381fd5c", + "x-ms-correlation-request-id": "565861b7-3b2d-45db-850f-08388e0c5c4a", + "x-ms-ratelimit-remaining-subscription-reads": "11737", + "x-ms-request-id": "ef1146b7-9003-4ad4-b8ef-b0e1f5eec4d4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075518Z:565861b7-3b2d-45db-850f-08388e0c5c4a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "62c6d3cc297514569337663154028756", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d06ed33b-cc76-4819-b0ab-f6ca57a7247e", + "x-ms-client-request-id": "62c6d3cc297514569337663154028756", + "x-ms-correlation-request-id": "5a5ab900-16ac-43f2-ab8a-472f9346df36", + "x-ms-ratelimit-remaining-subscription-reads": "11736", + "x-ms-request-id": "8710f9bf-68d8-47bf-a7ce-3a427eb59ac6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075519Z:5a5ab900-16ac-43f2-ab8a-472f9346df36" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e3594b058782be2a7f6108f0f01e0e5a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9821898f-47f6-42d9-9cd8-3190e2b89a97", + "x-ms-client-request-id": "e3594b058782be2a7f6108f0f01e0e5a", + "x-ms-correlation-request-id": "11b449eb-68c3-40f0-8a58-c7d62966f7f3", + "x-ms-ratelimit-remaining-subscription-reads": "11735", + "x-ms-request-id": "f7146e18-dfb8-4771-b2b3-5c3aa888d6d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075521Z:11b449eb-68c3-40f0-8a58-c7d62966f7f3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2ae500e9f2960fbb2693c8150b814e2c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:55: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": "7b1a222b-649c-46d4-a876-95b868945855", + "x-ms-client-request-id": "2ae500e9f2960fbb2693c8150b814e2c", + "x-ms-correlation-request-id": "4af535c5-aac0-4f85-a604-e0e71c688a1a", + "x-ms-ratelimit-remaining-subscription-reads": "11734", + "x-ms-request-id": "881ce9b6-b365-4bbc-9b14-581dc5b7708f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075522Z:4af535c5-aac0-4f85-a604-e0e71c688a1a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "18513fe7192744daa907e31321652375", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "bae8c1a9-09db-4bd1-b6ba-c6b1a0e323df", + "x-ms-client-request-id": "18513fe7192744daa907e31321652375", + "x-ms-correlation-request-id": "7152af62-570f-46f3-bfa5-47dd25a11386", + "x-ms-ratelimit-remaining-subscription-reads": "11733", + "x-ms-request-id": "00f59047-d8af-49a6-8e8d-63627583e368", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075524Z:7152af62-570f-46f3-bfa5-47dd25a11386" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "54470b285d1c13bf8f4abdeebf14b2fe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0553488a-00ee-4255-b673-a2537471ac1c", + "x-ms-client-request-id": "54470b285d1c13bf8f4abdeebf14b2fe", + "x-ms-correlation-request-id": "a02841a1-70c2-4311-9bef-70da962a1bc8", + "x-ms-ratelimit-remaining-subscription-reads": "11732", + "x-ms-request-id": "580b5c76-89c8-4b04-9bf1-28e08f82764f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075525Z:a02841a1-70c2-4311-9bef-70da962a1bc8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b109db13f6cccf3225a0818f0fa8eec1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "32ebbfaa-5fcc-42c2-922f-71acd727542f", + "x-ms-client-request-id": "b109db13f6cccf3225a0818f0fa8eec1", + "x-ms-correlation-request-id": "6d368039-6b99-4f14-bca3-9f5d3d687746", + "x-ms-ratelimit-remaining-subscription-reads": "11731", + "x-ms-request-id": "e19afe32-b2ae-4f43-867c-5ab1ec6efe96", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075527Z:6d368039-6b99-4f14-bca3-9f5d3d687746" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ffec536ff939890f7f3e89dd5ceb8594", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "45a9372f-f791-4b4f-ad59-c6cc0d3dafc3", + "x-ms-client-request-id": "ffec536ff939890f7f3e89dd5ceb8594", + "x-ms-correlation-request-id": "7dba6760-dea3-4cc1-b2bc-e7b3406f5621", + "x-ms-ratelimit-remaining-subscription-reads": "11730", + "x-ms-request-id": "58abab53-66dc-4559-b194-1166d68fd646", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075528Z:7dba6760-dea3-4cc1-b2bc-e7b3406f5621" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4500e455725b32a8d8782e7cdb3004e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0ccca85d-1d5b-4353-b9d5-f26d8d88adff", + "x-ms-client-request-id": "4500e455725b32a8d8782e7cdb3004e7", + "x-ms-correlation-request-id": "0a9b87d7-cc93-41c3-b33d-3fafdc33c7a7", + "x-ms-ratelimit-remaining-subscription-reads": "11729", + "x-ms-request-id": "e6832407-af56-4e65-8da4-243698b9c861", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075529Z:0a9b87d7-cc93-41c3-b33d-3fafdc33c7a7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6b7ffc5cb22819c4cc80318e6c557339", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ffed5850-5b54-40e3-bdb3-0819e956c87e", + "x-ms-client-request-id": "6b7ffc5cb22819c4cc80318e6c557339", + "x-ms-correlation-request-id": "d0adae46-633e-40cd-adda-c9dd905b2b7f", + "x-ms-ratelimit-remaining-subscription-reads": "11728", + "x-ms-request-id": "9e7e2f52-070c-4e92-bfa7-b8229685eafb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075531Z:d0adae46-633e-40cd-adda-c9dd905b2b7f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2a3aed1aa9a7fd65aaba27c1cb92ad4f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "30d87981-cfe8-4c09-8031-ee1095dd7023", + "x-ms-client-request-id": "2a3aed1aa9a7fd65aaba27c1cb92ad4f", + "x-ms-correlation-request-id": "566124fa-f94e-4a21-98bf-30ce1c854c37", + "x-ms-ratelimit-remaining-subscription-reads": "11727", + "x-ms-request-id": "b7e9d9a8-9f18-4c13-be2e-9a53a6b97178", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075532Z:566124fa-f94e-4a21-98bf-30ce1c854c37" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6081a2391a6ca26b1fe678db401ac583", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "88833b93-649d-4034-afbe-498540016eec", + "x-ms-client-request-id": "6081a2391a6ca26b1fe678db401ac583", + "x-ms-correlation-request-id": "903d7649-862b-407d-8ba0-5ece229cc564", + "x-ms-ratelimit-remaining-subscription-reads": "11726", + "x-ms-request-id": "dfa2b5f5-c7bb-4d27-ac8c-1e3a03cdeeb4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075533Z:903d7649-862b-407d-8ba0-5ece229cc564" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ee61f405d9f6b23f9681c16e8b034e39", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "37d3b40c-61fd-4690-ac5c-aa703fa4996d", + "x-ms-client-request-id": "ee61f405d9f6b23f9681c16e8b034e39", + "x-ms-correlation-request-id": "6e0b31bd-4031-4308-9a5e-7b915b4e30f4", + "x-ms-ratelimit-remaining-subscription-reads": "11725", + "x-ms-request-id": "bf181aa1-db4a-4ccd-a197-53423bbd4c6d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075535Z:6e0b31bd-4031-4308-9a5e-7b915b4e30f4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ca54e1d212d400cc81970ac03089bc8f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c6f27dca-ec21-41b3-aa8c-46b92a15230f", + "x-ms-client-request-id": "ca54e1d212d400cc81970ac03089bc8f", + "x-ms-correlation-request-id": "dde7a7e8-a1ea-4334-a7f4-d135502dd8b6", + "x-ms-ratelimit-remaining-subscription-reads": "11724", + "x-ms-request-id": "a3d48415-08e4-4dba-b86f-4471a8a24d82", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075536Z:dde7a7e8-a1ea-4334-a7f4-d135502dd8b6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d6bca3f4bf315f5962cec9eb58fd161c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7edfa731-283d-4bf3-8387-5949a0201139", + "x-ms-client-request-id": "d6bca3f4bf315f5962cec9eb58fd161c", + "x-ms-correlation-request-id": "4d15bd05-4c86-4391-b194-450fe09cb40e", + "x-ms-ratelimit-remaining-subscription-reads": "11723", + "x-ms-request-id": "79db013c-ed1c-4cf8-9e7e-ed46652f070d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075537Z:4d15bd05-4c86-4391-b194-450fe09cb40e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5f093e98fac6f2ae28616c5ecf7e820c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "aa69feb7-0bc0-4a63-98a0-1b392f02ae3d", + "x-ms-client-request-id": "5f093e98fac6f2ae28616c5ecf7e820c", + "x-ms-correlation-request-id": "22e1802e-99b7-4aef-8421-a6c0a66b1529", + "x-ms-ratelimit-remaining-subscription-reads": "11722", + "x-ms-request-id": "00ae8e11-41e8-4413-9785-bbeddfcfee26", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075538Z:22e1802e-99b7-4aef-8421-a6c0a66b1529" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e87931c57847120888f4680648e1a783", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "25d4e977-bd93-4c38-80cc-8c33ff1efe50", + "x-ms-client-request-id": "e87931c57847120888f4680648e1a783", + "x-ms-correlation-request-id": "3e257844-46dc-4177-8db4-628e2fe503f4", + "x-ms-ratelimit-remaining-subscription-reads": "11721", + "x-ms-request-id": "4b091455-7810-4bab-8736-5af942e0d45c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075540Z:3e257844-46dc-4177-8db4-628e2fe503f4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f228ee815d80f9c9f4c9aecf52fa90e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "a46136cb-3763-4d53-8066-04599dddcd2d", + "x-ms-client-request-id": "f228ee815d80f9c9f4c9aecf52fa90e4", + "x-ms-correlation-request-id": "e1ad2942-9150-460a-a4e7-d65e28aa52e6", + "x-ms-ratelimit-remaining-subscription-reads": "11720", + "x-ms-request-id": "b5c28f3d-c725-4902-be1c-f11bd05d8a7e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075541Z:e1ad2942-9150-460a-a4e7-d65e28aa52e6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2726bc4b2e8420d435f6d6d292a8a946", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6f675842-5721-42cc-b230-b1f1c88f4860", + "x-ms-client-request-id": "2726bc4b2e8420d435f6d6d292a8a946", + "x-ms-correlation-request-id": "7f270060-dbf9-4499-ab06-c7dc44530b32", + "x-ms-ratelimit-remaining-subscription-reads": "11719", + "x-ms-request-id": "088896e4-4e91-42ca-9660-df857a62bab9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075542Z:7f270060-dbf9-4499-ab06-c7dc44530b32" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e0dde9b99056678c687ff37dc939bf8e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b51acd0f-b958-49da-b411-5287ca82cf58", + "x-ms-client-request-id": "e0dde9b99056678c687ff37dc939bf8e", + "x-ms-correlation-request-id": "249af38e-0207-4877-a55c-c4f7a296f021", + "x-ms-ratelimit-remaining-subscription-reads": "11718", + "x-ms-request-id": "a59d3e23-85da-4556-84b5-20a480a1ffa2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075544Z:249af38e-0207-4877-a55c-c4f7a296f021" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8cba836380bb53ff1907bc8a87f6664c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "117c0517-db09-4725-a80e-85e0a51865e9", + "x-ms-client-request-id": "8cba836380bb53ff1907bc8a87f6664c", + "x-ms-correlation-request-id": "a7cc3762-8f9a-4691-810f-a4d79feafe3c", + "x-ms-ratelimit-remaining-subscription-reads": "11717", + "x-ms-request-id": "8447c3d9-9f16-48ee-b3e1-f8fafb40202b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075545Z:a7cc3762-8f9a-4691-810f-a4d79feafe3c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "69166720af1dbb8e30bebf043a5756fc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "84be7296-2011-44fa-a6cf-c18358692536", + "x-ms-client-request-id": "69166720af1dbb8e30bebf043a5756fc", + "x-ms-correlation-request-id": "39de7f94-7031-4e87-b03a-71d62ed61af5", + "x-ms-ratelimit-remaining-subscription-reads": "11716", + "x-ms-request-id": "0548d4bb-8a23-432a-9066-1dbd133182ff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075546Z:39de7f94-7031-4e87-b03a-71d62ed61af5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0e6e47361ded398be98ac74ed301e071", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3b0b76f5-13b7-48e3-a022-ee29686822e3", + "x-ms-client-request-id": "0e6e47361ded398be98ac74ed301e071", + "x-ms-correlation-request-id": "a847a760-395b-4036-892d-0b176cba95b4", + "x-ms-ratelimit-remaining-subscription-reads": "11715", + "x-ms-request-id": "02ddfa81-3fc8-4524-9bd8-0e42c3f22fe5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075547Z:a847a760-395b-4036-892d-0b176cba95b4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "625da7195623b471f5fe5bfdc1fb18c2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "6febffd8-a1ef-4860-9894-43d4e77eebf3", + "x-ms-client-request-id": "625da7195623b471f5fe5bfdc1fb18c2", + "x-ms-correlation-request-id": "49f1b63c-348d-49d4-9363-5f261fe35e0b", + "x-ms-ratelimit-remaining-subscription-reads": "11714", + "x-ms-request-id": "7fffb3e0-a022-4633-8696-ae93c1a9315d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075549Z:49f1b63c-348d-49d4-9363-5f261fe35e0b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3f53bfb15887025edcdc7f93e83fe72e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "837d88c9-54a4-468d-b8c1-ec7dca5ebfe6", + "x-ms-client-request-id": "3f53bfb15887025edcdc7f93e83fe72e", + "x-ms-correlation-request-id": "8808b98f-c255-47b0-9d13-f5eb5f9010cb", + "x-ms-ratelimit-remaining-subscription-reads": "11713", + "x-ms-request-id": "dc13cc8c-4908-4acc-b7f2-694a49afb3e8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075551Z:8808b98f-c255-47b0-9d13-f5eb5f9010cb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "93eb4dddf3f9e0d9d6ba18efc18e78ee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:55: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": "6f738573-76a6-47a0-866c-6cd5a148e973", + "x-ms-client-request-id": "93eb4dddf3f9e0d9d6ba18efc18e78ee", + "x-ms-correlation-request-id": "40400f92-8cd7-403d-91eb-a735575e2076", + "x-ms-ratelimit-remaining-subscription-reads": "11712", + "x-ms-request-id": "b152800b-d6c7-4013-898d-4d0a399ad7aa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075552Z:40400f92-8cd7-403d-91eb-a735575e2076" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "149c0471a1aec0e9495a8646d6decbb6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "300271c1-7c15-4bac-88fb-94c31a792dc2", + "x-ms-client-request-id": "149c0471a1aec0e9495a8646d6decbb6", + "x-ms-correlation-request-id": "c9d49af1-d4b9-4f79-b86e-7f6140e77b7c", + "x-ms-ratelimit-remaining-subscription-reads": "11711", + "x-ms-request-id": "8006ce1f-d131-4289-97da-8245e5a82bc9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075554Z:c9d49af1-d4b9-4f79-b86e-7f6140e77b7c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "731f2c178410bdc9e57369cd3f6e404d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "96aff5cf-a73b-4edb-9376-ba9ce80b33f7", + "x-ms-client-request-id": "731f2c178410bdc9e57369cd3f6e404d", + "x-ms-correlation-request-id": "a748094e-a1f7-4f6f-82fd-36b09368ec26", + "x-ms-ratelimit-remaining-subscription-reads": "11710", + "x-ms-request-id": "52715973-c3ca-4651-9013-dc4fbfaec9f6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075556Z:a748094e-a1f7-4f6f-82fd-36b09368ec26" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e3219163d3a33c80632a4a9f6d9309f8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b2316162-1d6e-490a-af7d-c3f3a44fabb1", + "x-ms-client-request-id": "e3219163d3a33c80632a4a9f6d9309f8", + "x-ms-correlation-request-id": "ba7c92b5-4d99-4008-ae76-b64d39a74218", + "x-ms-ratelimit-remaining-subscription-reads": "11709", + "x-ms-request-id": "24959223-30ef-4516-8932-468c35a2578f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075557Z:ba7c92b5-4d99-4008-ae76-b64d39a74218" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "95d862ee046eedde3bdf2e3b381c81da", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3bba0190-03ab-48fc-a20c-37e885e587ef", + "x-ms-client-request-id": "95d862ee046eedde3bdf2e3b381c81da", + "x-ms-correlation-request-id": "d851e9fc-baa0-424d-9ea0-d7413b9e9b7b", + "x-ms-ratelimit-remaining-subscription-reads": "11708", + "x-ms-request-id": "549f715d-7250-4e7e-ae6d-a43d1fc07ff1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075558Z:d851e9fc-baa0-424d-9ea0-d7413b9e9b7b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "45e23819e8bd4312abe210e53a2a5052", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "490c1011-071e-4979-a7f7-2d315fa7cbac", + "x-ms-client-request-id": "45e23819e8bd4312abe210e53a2a5052", + "x-ms-correlation-request-id": "0d812d25-943d-4781-89ae-8883d29be04b", + "x-ms-ratelimit-remaining-subscription-reads": "11707", + "x-ms-request-id": "93fc5dcc-ef8b-4bba-bd66-7db558715098", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075559Z:0d812d25-943d-4781-89ae-8883d29be04b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dcde7069ab965fdfb233a8c4a4450446", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:56: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": "beb732e4-dc09-467c-aa18-704eb891400c", + "x-ms-client-request-id": "dcde7069ab965fdfb233a8c4a4450446", + "x-ms-correlation-request-id": "d06a5c45-02ef-4f65-8e94-d621c0757417", + "x-ms-ratelimit-remaining-subscription-reads": "11706", + "x-ms-request-id": "836ae1cd-bcf4-459a-a639-d6b49c9e833f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075601Z:d06a5c45-02ef-4f65-8e94-d621c0757417" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "34856fa8c4b0063b4f94e98bf4f8b211", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ab466a51-1883-4b69-b3e0-94e1eb0e42ff", + "x-ms-client-request-id": "34856fa8c4b0063b4f94e98bf4f8b211", + "x-ms-correlation-request-id": "11b7fc01-c83e-4890-8fe6-6a6c3bfa915a", + "x-ms-ratelimit-remaining-subscription-reads": "11705", + "x-ms-request-id": "41f0bcb3-400b-4019-a77e-3733a04fc011", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075602Z:11b7fc01-c83e-4890-8fe6-6a6c3bfa915a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c7d1dc8ea53e6e4359839289404e9f66", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5aae0d4c-1e3e-47ec-9cb6-be98dddee854", + "x-ms-client-request-id": "c7d1dc8ea53e6e4359839289404e9f66", + "x-ms-correlation-request-id": "c61824f4-e543-41f6-b3c6-2eaa6b011dd6", + "x-ms-ratelimit-remaining-subscription-reads": "11704", + "x-ms-request-id": "336a0c5c-8ca3-4890-9c80-0edf56c7ec99", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075603Z:c61824f4-e543-41f6-b3c6-2eaa6b011dd6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ca3dc9de1ba4a5a235d78c02c1536aba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e2829c89-9b98-4b01-9665-98919ac815a7", + "x-ms-client-request-id": "ca3dc9de1ba4a5a235d78c02c1536aba", + "x-ms-correlation-request-id": "bb5dd325-2e0d-4fce-96aa-8f9cd6966b70", + "x-ms-ratelimit-remaining-subscription-reads": "11703", + "x-ms-request-id": "e05e65e5-8a85-4845-a1d2-5662246522d7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075604Z:bb5dd325-2e0d-4fce-96aa-8f9cd6966b70" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c73596813d7402072c17db2d32b2c601", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:56: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": "9d18b1c0-b607-4fe0-923b-6b9cb923932c", + "x-ms-client-request-id": "c73596813d7402072c17db2d32b2c601", + "x-ms-correlation-request-id": "9ee11ee8-263c-404b-b358-c9e486b47fc9", + "x-ms-ratelimit-remaining-subscription-reads": "11702", + "x-ms-request-id": "33f284bb-4a89-4f01-a425-6c38d7e56f4e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075606Z:9ee11ee8-263c-404b-b358-c9e486b47fc9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2aad83f4e7bb726c3a2c92671940ac05", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e9a778a1-cc55-4f75-9728-4caf0eb16039", + "x-ms-client-request-id": "2aad83f4e7bb726c3a2c92671940ac05", + "x-ms-correlation-request-id": "53a57411-47c9-45fd-801d-34c81d699992", + "x-ms-ratelimit-remaining-subscription-reads": "11701", + "x-ms-request-id": "8387fff0-3a61-47ba-a204-afbde7d3d64f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075607Z:53a57411-47c9-45fd-801d-34c81d699992" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a907d818d719a0f2c13a9e8d40747282", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4555d3b3-2881-4b5b-a0fd-97516a57ff4e", + "x-ms-client-request-id": "a907d818d719a0f2c13a9e8d40747282", + "x-ms-correlation-request-id": "ddc4f0be-5627-4c77-88c2-66fd5f5a707b", + "x-ms-ratelimit-remaining-subscription-reads": "11700", + "x-ms-request-id": "e0f983ef-36e8-4b25-8831-44d296f54569", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075608Z:ddc4f0be-5627-4c77-88c2-66fd5f5a707b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3e0e8b103fa599fe29c28d47aba0e9eb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "f07558b3-f954-4194-9fe2-7627419c4ac4", + "x-ms-client-request-id": "3e0e8b103fa599fe29c28d47aba0e9eb", + "x-ms-correlation-request-id": "645a4779-d959-42a4-a00f-9e7a92624264", + "x-ms-ratelimit-remaining-subscription-reads": "11699", + "x-ms-request-id": "1698d274-ab61-461f-9fb6-0efda417330c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075610Z:645a4779-d959-42a4-a00f-9e7a92624264" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5914d56b1daa1ce7900d698149df31c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d48c548b-a8c4-4986-8e62-6578141444b0", + "x-ms-client-request-id": "5914d56b1daa1ce7900d698149df31c5", + "x-ms-correlation-request-id": "c076498b-8832-417c-aa7a-5ac1e4249609", + "x-ms-ratelimit-remaining-subscription-reads": "11698", + "x-ms-request-id": "054f5539-6d00-44b7-902b-844edba91a20", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075611Z:c076498b-8832-417c-aa7a-5ac1e4249609" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8d560fb96d32d860d96d7f564aaaf521", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "722c4371-fda5-4365-bb28-e9bf0ede6e6c", + "x-ms-client-request-id": "8d560fb96d32d860d96d7f564aaaf521", + "x-ms-correlation-request-id": "d5eb3cab-b26e-4192-b157-6becc5a59374", + "x-ms-ratelimit-remaining-subscription-reads": "11697", + "x-ms-request-id": "010cc1fb-3e3c-4bf4-b973-689316197d4f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075613Z:d5eb3cab-b26e-4192-b157-6becc5a59374" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6b22b2501960f3d7a3f1ad98d67d504a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b091ad1e-61ad-4762-ab72-8f1509267d5b", + "x-ms-client-request-id": "6b22b2501960f3d7a3f1ad98d67d504a", + "x-ms-correlation-request-id": "7a2236cb-f3be-4db5-9e68-444857b02ded", + "x-ms-ratelimit-remaining-subscription-reads": "11696", + "x-ms-request-id": "d9712b35-a8c1-4dcd-847d-883dbd15a42f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075614Z:7a2236cb-f3be-4db5-9e68-444857b02ded" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9b8ec7915b49fdb9743b803d9d91d2e6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "c2f9ca7d-1da2-4f15-9fd9-05595bf8af65", + "x-ms-client-request-id": "9b8ec7915b49fdb9743b803d9d91d2e6", + "x-ms-correlation-request-id": "efdbb85e-c930-4fc4-a528-58fe6876f16a", + "x-ms-ratelimit-remaining-subscription-reads": "11695", + "x-ms-request-id": "6472cf9e-8929-4705-b0b7-1fc7b4b8fd38", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075615Z:efdbb85e-c930-4fc4-a528-58fe6876f16a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "97304817c6bda0643763ea41bfc7025c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2d80a4b4-614c-434f-98c6-2b626626b3f7", + "x-ms-client-request-id": "97304817c6bda0643763ea41bfc7025c", + "x-ms-correlation-request-id": "e293ef79-edd6-4b17-8acf-6792bd9468c9", + "x-ms-ratelimit-remaining-subscription-reads": "11694", + "x-ms-request-id": "cb3b9963-febc-4bad-9bcb-748c96b688eb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075617Z:e293ef79-edd6-4b17-8acf-6792bd9468c9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "82c5351d5a1cf4d7f924f624989a5512", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "34a3e51e-9073-4628-8b1d-45b399b70935", + "x-ms-client-request-id": "82c5351d5a1cf4d7f924f624989a5512", + "x-ms-correlation-request-id": "ab869c74-e772-473f-9143-fc17b97e33a3", + "x-ms-ratelimit-remaining-subscription-reads": "11693", + "x-ms-request-id": "6850387d-a28b-4667-86ae-34f14bab5634", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075618Z:ab869c74-e772-473f-9143-fc17b97e33a3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8e81c71fb94cca8d63ed64e671773dac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:56: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": "7acb757f-6bda-4671-a3b8-7006d70d1e6c", + "x-ms-client-request-id": "8e81c71fb94cca8d63ed64e671773dac", + "x-ms-correlation-request-id": "1913d70f-3e0c-4988-b72e-17032b56f1d3", + "x-ms-ratelimit-remaining-subscription-reads": "11692", + "x-ms-request-id": "917551ee-6a19-4f72-bd6f-5c440dd239c0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075620Z:1913d70f-3e0c-4988-b72e-17032b56f1d3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "681f24394fccbdc9703c9d98cf40079c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ac940cef-adb7-47da-a74a-cf14824fd4b8", + "x-ms-client-request-id": "681f24394fccbdc9703c9d98cf40079c", + "x-ms-correlation-request-id": "2acd5469-65d2-484d-86f6-c824cc8da01c", + "x-ms-ratelimit-remaining-subscription-reads": "11691", + "x-ms-request-id": "5755b7aa-5796-46d5-8303-10ae33699374", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075621Z:2acd5469-65d2-484d-86f6-c824cc8da01c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f822d80d7346640fa7fa1f2ef5f18281", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6e9e4667-638e-4e54-a573-8a6a626a4318", + "x-ms-client-request-id": "f822d80d7346640fa7fa1f2ef5f18281", + "x-ms-correlation-request-id": "1e6fb59c-f9c6-4a7f-8c5d-49d513af6c38", + "x-ms-ratelimit-remaining-subscription-reads": "11690", + "x-ms-request-id": "082d8125-61e6-4308-8104-f5cf749ba668", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075622Z:1e6fb59c-f9c6-4a7f-8c5d-49d513af6c38" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "74eb49e6ed7bcf45fdc31e101bf5fb22", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "5c934e0c-d912-4021-9f5e-1fded2584bbc", + "x-ms-client-request-id": "74eb49e6ed7bcf45fdc31e101bf5fb22", + "x-ms-correlation-request-id": "afe354e5-8559-4817-af49-2aef6bb71867", + "x-ms-ratelimit-remaining-subscription-reads": "11689", + "x-ms-request-id": "d4e73160-e824-42b7-a448-749358d0fdfb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075624Z:afe354e5-8559-4817-af49-2aef6bb71867" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "99d8c7e64555c66614bbc1d1309ac77e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "718ec751-49e8-449f-93cc-f721218e7f9f", + "x-ms-client-request-id": "99d8c7e64555c66614bbc1d1309ac77e", + "x-ms-correlation-request-id": "56669de2-6a8a-4fb7-95a8-b79b74c19923", + "x-ms-ratelimit-remaining-subscription-reads": "11688", + "x-ms-request-id": "7465a4ce-a707-463c-9644-187552083f96", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075625Z:56669de2-6a8a-4fb7-95a8-b79b74c19923" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "85b11bb9925420219252fa8255ff48b2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6c135ae2-4b04-46af-8f4a-04fc82283e76", + "x-ms-client-request-id": "85b11bb9925420219252fa8255ff48b2", + "x-ms-correlation-request-id": "cfc9b586-1c62-40d6-85f4-2c2f65b9d0bd", + "x-ms-ratelimit-remaining-subscription-reads": "11687", + "x-ms-request-id": "763244f8-de5b-418e-a5a4-45e70cea5b7e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075626Z:cfc9b586-1c62-40d6-85f4-2c2f65b9d0bd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2e48fcffe919a12ce32560bf2b749f62", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2c95af9c-a6c8-4539-856f-87b75b5e0944", + "x-ms-client-request-id": "2e48fcffe919a12ce32560bf2b749f62", + "x-ms-correlation-request-id": "97c7ac10-f18c-4b52-b54d-14e46e041679", + "x-ms-ratelimit-remaining-subscription-reads": "11686", + "x-ms-request-id": "6006a5c1-a765-4411-b4ff-81c429f0313a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075627Z:97c7ac10-f18c-4b52-b54d-14e46e041679" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ff569ffc754353cea6b707034ae37015", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "6daf44e8-17be-49fe-b3d1-fea3995a6923", + "x-ms-client-request-id": "ff569ffc754353cea6b707034ae37015", + "x-ms-correlation-request-id": "964e93cd-2996-4b78-915b-7732f2651d50", + "x-ms-ratelimit-remaining-subscription-reads": "11685", + "x-ms-request-id": "6b5bd075-7adb-4dcb-bf21-5f778ab0897e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075629Z:964e93cd-2996-4b78-915b-7732f2651d50" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "33d20e729852d065ef10a12f3261f41d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0bfeb5e9-91d4-4e5d-b16a-2b0e8c462cc4", + "x-ms-client-request-id": "33d20e729852d065ef10a12f3261f41d", + "x-ms-correlation-request-id": "37162c06-3fe2-4ac6-8362-0f4095cbabb6", + "x-ms-ratelimit-remaining-subscription-reads": "11684", + "x-ms-request-id": "6323858e-438b-41e2-a01f-98cb334fbcbb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075630Z:37162c06-3fe2-4ac6-8362-0f4095cbabb6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b68698b348a8896e2ef58861e2295600", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "aea09f0d-6dcf-4ae3-b911-97132c959bba", + "x-ms-client-request-id": "b68698b348a8896e2ef58861e2295600", + "x-ms-correlation-request-id": "a157f6a5-350f-44f9-a73c-d1eafef3a8c1", + "x-ms-ratelimit-remaining-subscription-reads": "11683", + "x-ms-request-id": "8265fa5d-9cd3-4841-b8f7-bd58b80e4745", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075631Z:a157f6a5-350f-44f9-a73c-d1eafef3a8c1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1d4d4bb46ca1631039861033d49e2044", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "946b8f44-8c73-4258-aaa9-041716eb0917", + "x-ms-client-request-id": "1d4d4bb46ca1631039861033d49e2044", + "x-ms-correlation-request-id": "06a35d5c-b02f-4ed5-b082-fdaae715c914", + "x-ms-ratelimit-remaining-subscription-reads": "11682", + "x-ms-request-id": "8cfa6dd3-4219-406d-a71f-5cff5a98b012", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075633Z:06a35d5c-b02f-4ed5-b082-fdaae715c914" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b250e9c2ba5d296d9f49055c1003edc6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "59fb080b-199a-4de5-a18e-ef55c5101b32", + "x-ms-client-request-id": "b250e9c2ba5d296d9f49055c1003edc6", + "x-ms-correlation-request-id": "6cb84e89-1b7c-4288-be67-af847e99cac1", + "x-ms-ratelimit-remaining-subscription-reads": "11681", + "x-ms-request-id": "094880bb-e28f-41e6-8fa1-7c0e4471e9ab", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075634Z:6cb84e89-1b7c-4288-be67-af847e99cac1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e77ba1b9d714467c87227c21383bb48f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "359f6791-5362-4300-b03c-c3c69b363893", + "x-ms-client-request-id": "e77ba1b9d714467c87227c21383bb48f", + "x-ms-correlation-request-id": "461365c9-7080-499a-bda1-e74fabb034b4", + "x-ms-ratelimit-remaining-subscription-reads": "11680", + "x-ms-request-id": "edf78cba-8fa9-48d9-8f5b-905210acfd97", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075635Z:461365c9-7080-499a-bda1-e74fabb034b4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f89f43d4a4d9f9a3de237d5867b35335", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "91b01e48-8e96-4e3f-885a-6095e3dc19b7", + "x-ms-client-request-id": "f89f43d4a4d9f9a3de237d5867b35335", + "x-ms-correlation-request-id": "4ba8258f-0093-4815-b317-a3f5904f1384", + "x-ms-ratelimit-remaining-subscription-reads": "11679", + "x-ms-request-id": "8bdd1d71-335b-4f8e-a464-94b851738795", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075636Z:4ba8258f-0093-4815-b317-a3f5904f1384" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "337949983923eb306d092a3a3e4bf064", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "a3990783-56ac-41a8-aec2-aaaea804767c", + "x-ms-client-request-id": "337949983923eb306d092a3a3e4bf064", + "x-ms-correlation-request-id": "d80559af-1c94-4cb2-af15-360c2ef2fbc6", + "x-ms-ratelimit-remaining-subscription-reads": "11678", + "x-ms-request-id": "7b1fd6a0-8be8-4a97-a938-82bc5f7904b5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075638Z:d80559af-1c94-4cb2-af15-360c2ef2fbc6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cc887594f56415edfd8109f05a24dfd3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7376f0a7-b26c-43d3-bec1-228f14bc66aa", + "x-ms-client-request-id": "cc887594f56415edfd8109f05a24dfd3", + "x-ms-correlation-request-id": "06da1142-95d9-487b-bbd2-b707884ba2fd", + "x-ms-ratelimit-remaining-subscription-reads": "11677", + "x-ms-request-id": "4afc5871-426f-4167-aa1b-26b26becd761", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075639Z:06da1142-95d9-487b-bbd2-b707884ba2fd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ef8846cf81c19b6b13b48bcf7968bb92", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d12fd6ce-9ef9-47b9-9858-6e1ebfe2fa9d", + "x-ms-client-request-id": "ef8846cf81c19b6b13b48bcf7968bb92", + "x-ms-correlation-request-id": "65d53d64-881e-4535-a807-f012d73f4f47", + "x-ms-ratelimit-remaining-subscription-reads": "11676", + "x-ms-request-id": "1f77e0c3-a661-41ab-8b01-010a0e201ef7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075640Z:65d53d64-881e-4535-a807-f012d73f4f47" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f1c31932862ba3d15c6435a2303f9148", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "33ac01f0-c15a-46d6-89ca-29278fb4b3d9", + "x-ms-client-request-id": "f1c31932862ba3d15c6435a2303f9148", + "x-ms-correlation-request-id": "5b14faae-2224-4c62-9922-1afa043e4892", + "x-ms-ratelimit-remaining-subscription-reads": "11675", + "x-ms-request-id": "942d5e4b-5aa1-48f8-a50e-4706950ddd94", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075642Z:5b14faae-2224-4c62-9922-1afa043e4892" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f76b562901c312a209edb9b0691d9b94", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0ee1634f-ed8f-4b3e-a2be-ad42deef799c", + "x-ms-client-request-id": "f76b562901c312a209edb9b0691d9b94", + "x-ms-correlation-request-id": "25cf08e3-1990-4004-abb2-e29dc0805fb1", + "x-ms-ratelimit-remaining-subscription-reads": "11674", + "x-ms-request-id": "866ca35c-cb2a-4b28-aa93-30d35dcd5807", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075643Z:25cf08e3-1990-4004-abb2-e29dc0805fb1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "40bd76c5ee6149a875e4935d4cc96ad3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "834b8862-68cd-4186-a36f-1b6697eccb15", + "x-ms-client-request-id": "40bd76c5ee6149a875e4935d4cc96ad3", + "x-ms-correlation-request-id": "0277f9b4-e429-4bd3-9218-326414cc0c79", + "x-ms-ratelimit-remaining-subscription-reads": "11673", + "x-ms-request-id": "db098997-ba25-4d62-955d-9e186a143a62", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075644Z:0277f9b4-e429-4bd3-9218-326414cc0c79" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "22a64323c4fd31cf76b0e73ecd213a3e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d6c754ee-8c48-4778-aa7c-32a887cd3484", + "x-ms-client-request-id": "22a64323c4fd31cf76b0e73ecd213a3e", + "x-ms-correlation-request-id": "517bb166-adcc-48fd-8df3-b528b711a3ea", + "x-ms-ratelimit-remaining-subscription-reads": "11672", + "x-ms-request-id": "ffd02b2d-af2d-45a6-823d-a3fc2b2a54a2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075645Z:517bb166-adcc-48fd-8df3-b528b711a3ea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b9dca0c850823ae7ae2182de6e45c640", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "82c3e3d5-60fc-4d6d-b447-00524414fb5f", + "x-ms-client-request-id": "b9dca0c850823ae7ae2182de6e45c640", + "x-ms-correlation-request-id": "c9951b87-4dbd-49f8-aea7-aca3b14345c3", + "x-ms-ratelimit-remaining-subscription-reads": "11671", + "x-ms-request-id": "e4247a02-b741-450d-80bc-d423014c5e94", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075647Z:c9951b87-4dbd-49f8-aea7-aca3b14345c3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "268de58278760197a78ccab006697c53", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "295d5973-13be-4927-93fb-62864703a113", + "x-ms-client-request-id": "268de58278760197a78ccab006697c53", + "x-ms-correlation-request-id": "9b3719f7-e058-4442-b67b-a4e5a94a5702", + "x-ms-ratelimit-remaining-subscription-reads": "11670", + "x-ms-request-id": "1c146607-bf24-43aa-a770-05a6e83ca38c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075648Z:9b3719f7-e058-4442-b67b-a4e5a94a5702" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ac9454aab1edd2515b6b74db41f0c231", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "85c61d3a-4296-4f06-94e1-29ce27d00129", + "x-ms-client-request-id": "ac9454aab1edd2515b6b74db41f0c231", + "x-ms-correlation-request-id": "e684ed0b-916b-4ae9-8b94-443ff28983d6", + "x-ms-ratelimit-remaining-subscription-reads": "11669", + "x-ms-request-id": "5dccf55c-00bb-4492-93e5-5ae7a3c4b19d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075649Z:e684ed0b-916b-4ae9-8b94-443ff28983d6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e7bca7ea139450c809da11f586373445", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "2a3093c6-323c-4475-96e4-25a5ac5e839b", + "x-ms-client-request-id": "e7bca7ea139450c809da11f586373445", + "x-ms-correlation-request-id": "ea69ee2f-e20a-4f0d-933e-5b33fd6ac62c", + "x-ms-ratelimit-remaining-subscription-reads": "11668", + "x-ms-request-id": "c8af1c1a-5d32-46fc-bedd-7a8db1a2866f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075651Z:ea69ee2f-e20a-4f0d-933e-5b33fd6ac62c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1a342ea519b0d05293bacb0a04bbbfb7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1d577bf1-dbb6-461a-8f2d-6659cbb860f8", + "x-ms-client-request-id": "1a342ea519b0d05293bacb0a04bbbfb7", + "x-ms-correlation-request-id": "8b4af6fa-7271-4010-a4b1-70259b7ba999", + "x-ms-ratelimit-remaining-subscription-reads": "11667", + "x-ms-request-id": "76703b9b-bcc9-4947-8350-7a2684eebd51", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075652Z:8b4af6fa-7271-4010-a4b1-70259b7ba999" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5ec698c994ad96bf8c44a312a05b4c24", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a006f0d9-0e73-415c-98d3-8ef7233638f6", + "x-ms-client-request-id": "5ec698c994ad96bf8c44a312a05b4c24", + "x-ms-correlation-request-id": "d7a74057-d04f-4302-a419-0334721ca230", + "x-ms-ratelimit-remaining-subscription-reads": "11666", + "x-ms-request-id": "f8cff9f6-0090-43be-affd-4a7a7bb6bb8a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075653Z:d7a74057-d04f-4302-a419-0334721ca230" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "13362f37a8bcd08154eb54d948bd4b4d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "da653664-c849-4de7-b4b3-be095ac2ee24", + "x-ms-client-request-id": "13362f37a8bcd08154eb54d948bd4b4d", + "x-ms-correlation-request-id": "d2b816c1-f316-4555-9f98-4230b548a9a1", + "x-ms-ratelimit-remaining-subscription-reads": "11665", + "x-ms-request-id": "6b45215e-2fcb-4d8a-9d7d-da2166c84841", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075655Z:d2b816c1-f316-4555-9f98-4230b548a9a1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ed2c5a1ad57011976e9d8d6c76403037", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "bdf2da6c-30a8-40c7-83e4-19ae6afadf8c", + "x-ms-client-request-id": "ed2c5a1ad57011976e9d8d6c76403037", + "x-ms-correlation-request-id": "5db9518b-a511-4cde-91f0-e16eae9b9c1d", + "x-ms-ratelimit-remaining-subscription-reads": "11664", + "x-ms-request-id": "e5601a77-d633-42d4-80fd-057425cfc651", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075656Z:5db9518b-a511-4cde-91f0-e16eae9b9c1d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d4d3a66dac8520fa16f50ac13fe54dcf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9594fc6b-7f2c-4695-af06-c1df431436e0", + "x-ms-client-request-id": "d4d3a66dac8520fa16f50ac13fe54dcf", + "x-ms-correlation-request-id": "8dee9042-7655-47e1-a5a2-1782d1cbcb90", + "x-ms-ratelimit-remaining-subscription-reads": "11663", + "x-ms-request-id": "793b521a-5af3-4bdf-86bf-ef81d94b9da1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075657Z:8dee9042-7655-47e1-a5a2-1782d1cbcb90" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "46f855f85e2f62b39724a41e1a155914", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "665e14cc-9921-4de9-9688-74c0d78cbcec", + "x-ms-client-request-id": "46f855f85e2f62b39724a41e1a155914", + "x-ms-correlation-request-id": "6937dabd-4dc8-462e-b80f-29468f5ecbcb", + "x-ms-ratelimit-remaining-subscription-reads": "11662", + "x-ms-request-id": "e074517a-8192-463c-92bf-7b5f9f84232d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075658Z:6937dabd-4dc8-462e-b80f-29468f5ecbcb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a26c1cba76e96dc85f0bd67acbd6d189", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "a2bdadf0-c629-4f0b-a5ba-4fcbc2b8c527", + "x-ms-client-request-id": "a26c1cba76e96dc85f0bd67acbd6d189", + "x-ms-correlation-request-id": "1877e250-593d-4e4a-a811-1a5cfc01ce7a", + "x-ms-ratelimit-remaining-subscription-reads": "11661", + "x-ms-request-id": "cdcd4357-8075-43f2-bb64-9fde8147179c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075700Z:1877e250-593d-4e4a-a811-1a5cfc01ce7a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2073be50ea480e08f3713d6008db0601", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "433f34fb-352e-443f-bcee-f3d660d354e4", + "x-ms-client-request-id": "2073be50ea480e08f3713d6008db0601", + "x-ms-correlation-request-id": "d8e35ecb-f6c7-476a-83ec-f8b414a4db00", + "x-ms-ratelimit-remaining-subscription-reads": "11660", + "x-ms-request-id": "7c18c286-2e4b-496b-b107-4b4168965529", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075702Z:d8e35ecb-f6c7-476a-83ec-f8b414a4db00" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2306f59bab7981e58d8ae624873897c0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6c9dfb8a-256b-49ce-9601-38d1c30e1b2e", + "x-ms-client-request-id": "2306f59bab7981e58d8ae624873897c0", + "x-ms-correlation-request-id": "665c5551-9869-4ce2-9d61-a536b9978877", + "x-ms-ratelimit-remaining-subscription-reads": "11659", + "x-ms-request-id": "94b8e75e-ea62-49ad-8458-e339fc3f2dde", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075703Z:665c5551-9869-4ce2-9d61-a536b9978877" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5bce1b5239a1d0cc145dae7839676583", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "dfc7a90d-4864-4acc-9d7b-e65fccd35c71", + "x-ms-client-request-id": "5bce1b5239a1d0cc145dae7839676583", + "x-ms-correlation-request-id": "ef35ded4-dbce-4fa0-bc93-d99d0ae4b756", + "x-ms-ratelimit-remaining-subscription-reads": "11658", + "x-ms-request-id": "8fb74b4b-5151-4d90-a799-97b14afea2ee", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075705Z:ef35ded4-dbce-4fa0-bc93-d99d0ae4b756" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d5ded504aecfa40fd8f193be04e386ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e8b4377d-7344-45ca-83d8-19a0a7b9bfc2", + "x-ms-client-request-id": "d5ded504aecfa40fd8f193be04e386ba", + "x-ms-correlation-request-id": "459bbd5c-ca32-49f4-8bc5-0ede1992c63a", + "x-ms-ratelimit-remaining-subscription-reads": "11657", + "x-ms-request-id": "cd898940-01b6-4e07-8cc4-706527da61eb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075706Z:459bbd5c-ca32-49f4-8bc5-0ede1992c63a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ed0e7cdaaa0c625f28360e1bfc6d4825", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b36ac5e5-dcd4-4e1b-bd3b-663ca0ae88f9", + "x-ms-client-request-id": "ed0e7cdaaa0c625f28360e1bfc6d4825", + "x-ms-correlation-request-id": "85eadcbc-b5b3-486b-a3d8-73031bc7bdc7", + "x-ms-ratelimit-remaining-subscription-reads": "11656", + "x-ms-request-id": "ca4ae795-1854-492d-b57e-6d610549871c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075707Z:85eadcbc-b5b3-486b-a3d8-73031bc7bdc7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b21f6324c159a3f00b2a83b0a50ecc30", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a8843c96-e482-4b9a-a3e0-4df3a818175f", + "x-ms-client-request-id": "b21f6324c159a3f00b2a83b0a50ecc30", + "x-ms-correlation-request-id": "89d9fa98-883b-4798-b31f-ea2424c14329", + "x-ms-ratelimit-remaining-subscription-reads": "11655", + "x-ms-request-id": "1fa824d9-2758-4c31-8f59-c1f59c7bae98", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075709Z:89d9fa98-883b-4798-b31f-ea2424c14329" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bc9ef3d678595a76757cad999ff4a76b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "27c32259-49ab-4635-a9ad-8384f42b80b0", + "x-ms-client-request-id": "bc9ef3d678595a76757cad999ff4a76b", + "x-ms-correlation-request-id": "d04732dc-1eb3-44c4-a9d2-f7965b4d09bc", + "x-ms-ratelimit-remaining-subscription-reads": "11654", + "x-ms-request-id": "6ec35174-5d5f-4b3e-8957-fb37c7207517", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075710Z:d04732dc-1eb3-44c4-a9d2-f7965b4d09bc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a0996ea8d4c419618b6ae2e227afbd1a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "277ece3e-26d1-48fd-9437-57ed61641e0c", + "x-ms-client-request-id": "a0996ea8d4c419618b6ae2e227afbd1a", + "x-ms-correlation-request-id": "30673949-f21e-4dd6-a8dc-36a9b8f63232", + "x-ms-ratelimit-remaining-subscription-reads": "11653", + "x-ms-request-id": "5abe0390-963d-4bed-b3b3-8a31a21b36df", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075711Z:30673949-f21e-4dd6-a8dc-36a9b8f63232" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0845dd6a8bcfacccecc43ddd14570317", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f2b4bb06-2d63-4f4b-8bf9-d01260320180", + "x-ms-client-request-id": "0845dd6a8bcfacccecc43ddd14570317", + "x-ms-correlation-request-id": "cb8b540c-2f6b-41db-a542-d968323984d6", + "x-ms-ratelimit-remaining-subscription-reads": "11652", + "x-ms-request-id": "d31239d5-b6b8-4561-8947-d197fa9894aa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075713Z:cb8b540c-2f6b-41db-a542-d968323984d6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "370717822b75026c928530ee969433c6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "481fe5d5-bfd3-465e-b163-c6e55becc46d", + "x-ms-client-request-id": "370717822b75026c928530ee969433c6", + "x-ms-correlation-request-id": "bc785265-a1a5-4971-9308-d1f321cbb787", + "x-ms-ratelimit-remaining-subscription-reads": "11651", + "x-ms-request-id": "73d633b7-22fb-4a27-b966-f6eef04f6270", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075714Z:bc785265-a1a5-4971-9308-d1f321cbb787" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c22e92be9fae1c9ca2ecb4ff97830434", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "761ac9c3-d317-4010-b008-f65d653e6c0b", + "x-ms-client-request-id": "c22e92be9fae1c9ca2ecb4ff97830434", + "x-ms-correlation-request-id": "b247c7c2-2fc2-4c56-9a18-f30e627fa334", + "x-ms-ratelimit-remaining-subscription-reads": "11650", + "x-ms-request-id": "f57ac37e-b2e4-44d2-a2ce-015a6f80d5b1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075715Z:b247c7c2-2fc2-4c56-9a18-f30e627fa334" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0f60ca6686a73fa57142764a5bdd1658", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ceea3a5e-bfea-46db-8eb3-e79353872a4d", + "x-ms-client-request-id": "0f60ca6686a73fa57142764a5bdd1658", + "x-ms-correlation-request-id": "6ba6eb72-d25f-4c60-807a-232c6b7f0899", + "x-ms-ratelimit-remaining-subscription-reads": "11649", + "x-ms-request-id": "a62b0e45-ff10-4378-898b-da0b0fa5f46e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075717Z:6ba6eb72-d25f-4c60-807a-232c6b7f0899" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "811e77914128e3687aea9588776c6b0e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4d343d28-0855-4364-9603-568bfdf99848", + "x-ms-client-request-id": "811e77914128e3687aea9588776c6b0e", + "x-ms-correlation-request-id": "ff030715-f033-426c-84fa-1d1d84b1dbe6", + "x-ms-ratelimit-remaining-subscription-reads": "11648", + "x-ms-request-id": "88c29df0-4fa4-42fd-b074-7efe0c98651d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075718Z:ff030715-f033-426c-84fa-1d1d84b1dbe6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cb88fc802333381eedef506c2852c1c4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "c653ac50-6ae7-4515-aa58-86eb84580adf", + "x-ms-client-request-id": "cb88fc802333381eedef506c2852c1c4", + "x-ms-correlation-request-id": "b3176d26-7e92-48e7-904b-c6829bdec292", + "x-ms-ratelimit-remaining-subscription-reads": "11647", + "x-ms-request-id": "3cb5d209-4a0d-4781-adc5-7ae0057023d7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075719Z:b3176d26-7e92-48e7-904b-c6829bdec292" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1f6e5bd68365240c627d94bdf01cc704", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "45f51693-1929-4c2d-9adb-67b58df4d82c", + "x-ms-client-request-id": "1f6e5bd68365240c627d94bdf01cc704", + "x-ms-correlation-request-id": "6a788ee6-28dd-48e8-bfdd-d62945551c53", + "x-ms-ratelimit-remaining-subscription-reads": "11646", + "x-ms-request-id": "b846e8bd-28c4-4d43-b521-3d31e5f7d3fb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075720Z:6a788ee6-28dd-48e8-bfdd-d62945551c53" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5eca67d74b546e2459e59338f1fbba28", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b50e8e37-2494-4892-85b5-53b1a5219389", + "x-ms-client-request-id": "5eca67d74b546e2459e59338f1fbba28", + "x-ms-correlation-request-id": "855954a2-d7f4-4eb4-91ff-5a4e8ade64c6", + "x-ms-ratelimit-remaining-subscription-reads": "11645", + "x-ms-request-id": "54042a9f-ff4d-4d66-8145-ac98fdeb3b2a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075722Z:855954a2-d7f4-4eb4-91ff-5a4e8ade64c6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1bb1d0284bfefca9f06368b68e6048d0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ffccc958-1e58-4c81-b08f-1df7e9392a52", + "x-ms-client-request-id": "1bb1d0284bfefca9f06368b68e6048d0", + "x-ms-correlation-request-id": "a3ee3ac2-330c-455b-b4bd-87ff76b2b241", + "x-ms-ratelimit-remaining-subscription-reads": "11644", + "x-ms-request-id": "1d76c4b6-a0fc-4cd8-a902-fe74ab7b39b3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075723Z:a3ee3ac2-330c-455b-b4bd-87ff76b2b241" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c0944b2762888b6f3600c67ff0d33366", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b1dce01a-70c2-423c-9e8e-48d3a81fc33b", + "x-ms-client-request-id": "c0944b2762888b6f3600c67ff0d33366", + "x-ms-correlation-request-id": "9cad8e0e-5641-4551-b3cb-b4a3fc02ca02", + "x-ms-ratelimit-remaining-subscription-reads": "11643", + "x-ms-request-id": "8077fb44-2b13-4b16-9b96-0aacbf4594c1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075724Z:9cad8e0e-5641-4551-b3cb-b4a3fc02ca02" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "20946cc2ac6b8b06becd6ef0e26edff8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "06bf6529-feb2-4da2-b5e2-4b4693bf904d", + "x-ms-client-request-id": "20946cc2ac6b8b06becd6ef0e26edff8", + "x-ms-correlation-request-id": "c7a22a41-3349-499a-8fba-05338d491957", + "x-ms-ratelimit-remaining-subscription-reads": "11642", + "x-ms-request-id": "110c1999-632e-428a-863c-567f5f519150", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075726Z:c7a22a41-3349-499a-8fba-05338d491957" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a510c29df966c5a06025e5fe84290c1c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "bc9a6a2f-3bca-4221-b73c-ddcf11641954", + "x-ms-client-request-id": "a510c29df966c5a06025e5fe84290c1c", + "x-ms-correlation-request-id": "b9d77d28-c211-41e2-97d7-cdb7e388e645", + "x-ms-ratelimit-remaining-subscription-reads": "11641", + "x-ms-request-id": "a02d945d-c109-4adc-9fdb-11c01b9b370c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075727Z:b9d77d28-c211-41e2-97d7-cdb7e388e645" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "22f4013027cc7b65450901baf47ea9c8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:57: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": "be8b8923-b964-40a1-a53a-aa3d89254067", + "x-ms-client-request-id": "22f4013027cc7b65450901baf47ea9c8", + "x-ms-correlation-request-id": "0351d18b-10dd-451a-ad60-dbb283c339f7", + "x-ms-ratelimit-remaining-subscription-reads": "11640", + "x-ms-request-id": "fd82e5fa-f876-435c-a076-58a3bb85b2ed", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075728Z:0351d18b-10dd-451a-ad60-dbb283c339f7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2de2ce208dc2c800cbcebf45c6080695", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b1d1fb62-d9df-4959-9dd2-01f7cee487f7", + "x-ms-client-request-id": "2de2ce208dc2c800cbcebf45c6080695", + "x-ms-correlation-request-id": "af7a21dc-cb81-4183-b515-229a8b3020f3", + "x-ms-ratelimit-remaining-subscription-reads": "11639", + "x-ms-request-id": "0750bbd7-8e90-4f97-bd73-b6715316291d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075729Z:af7a21dc-cb81-4183-b515-229a8b3020f3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e1c051c1bd79752b5d94605df8e6d1e1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5a45438b-0370-4f72-9f39-d151da3db170", + "x-ms-client-request-id": "e1c051c1bd79752b5d94605df8e6d1e1", + "x-ms-correlation-request-id": "3122b7a8-804a-4dbd-8a8e-a4ae259263e1", + "x-ms-ratelimit-remaining-subscription-reads": "11638", + "x-ms-request-id": "e5cec926-0ab8-427a-87fa-2acf4c653985", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075731Z:3122b7a8-804a-4dbd-8a8e-a4ae259263e1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b6dd1c7cde47a35a012b56fe671fb43c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ff34658d-187d-44a7-89c2-2f3c8f28020c", + "x-ms-client-request-id": "b6dd1c7cde47a35a012b56fe671fb43c", + "x-ms-correlation-request-id": "b6339b9e-562d-48a0-b371-6f5d7e020ea9", + "x-ms-ratelimit-remaining-subscription-reads": "11637", + "x-ms-request-id": "3648cb4f-dbf4-4829-9c1a-e2c23943bd3f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075733Z:b6339b9e-562d-48a0-b371-6f5d7e020ea9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a2f96c02c7be624ea26cd02d2ca2d0e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "767c7284-4629-4d50-b223-ca3ba20075fd", + "x-ms-client-request-id": "a2f96c02c7be624ea26cd02d2ca2d0e4", + "x-ms-correlation-request-id": "d71ce200-a985-44cc-812b-6c4d94ebeee0", + "x-ms-ratelimit-remaining-subscription-reads": "11636", + "x-ms-request-id": "9c08876c-4927-4335-b2b4-9d4654b2456b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075734Z:d71ce200-a985-44cc-812b-6c4d94ebeee0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aac8defc502ae24ef71cdf4e662d0d3d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "743cbde3-286c-4ce9-a913-02c148faaf53", + "x-ms-client-request-id": "aac8defc502ae24ef71cdf4e662d0d3d", + "x-ms-correlation-request-id": "f4313d42-8acc-440f-b20d-255fb4cbb6b9", + "x-ms-ratelimit-remaining-subscription-reads": "11635", + "x-ms-request-id": "18b96eac-3d57-40f2-a651-37a67d6fe870", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075735Z:f4313d42-8acc-440f-b20d-255fb4cbb6b9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f4893d21-355c-4ac8-b25d-45bce94d8d44?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8b5b24e02fedb422cd7b13db0e2c775e", + "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, 08 Sep 2021 07:57: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": "f2be8005-4344-402d-a8c2-da15907e6655", + "x-ms-client-request-id": "8b5b24e02fedb422cd7b13db0e2c775e", + "x-ms-correlation-request-id": "01ea00b3-d676-4a92-9363-065be06146c3", + "x-ms-ratelimit-remaining-subscription-reads": "11634", + "x-ms-request-id": "6b418427-788a-4dad-bbfa-07c7ba8e6216", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075736Z:01ea00b3-d676-4a92-9363-065be06146c3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-3829?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8901725b0a56b1121e17aaa2e700fc75", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1534", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:57:37 GMT", + "ETag": "W/\u002204f002b7-8f63-4a5e-a61c-98806a814db0\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": "5f78fa9d-159f-4a1b-b3d9-fd0de9dd85f8", + "x-ms-client-request-id": "8901725b0a56b1121e17aaa2e700fc75", + "x-ms-correlation-request-id": "da48d35c-e8a1-40b9-8d24-0c61f9d0a861", + "x-ms-ratelimit-remaining-subscription-reads": "11633", + "x-ms-request-id": "2fdfb1b5-2e9f-4e0f-8096-2d96200f53c9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075737Z:da48d35c-e8a1-40b9-8d24-0c61f9d0a861" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022bastion-3829\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-3829\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002204f002b7-8f63-4a5e-a61c-98806a814db0\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022dnsName\u0022: \u0022bst-9ee9dad8-d7f3-4f27-8a34-61eda503b407.bastion.azure.com\u0022,\r\n", + " \u0022scaleUnits\u0022: 2,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022bastionIPConfig-688\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-3829/bastionHostIpConfigurations/bastionIPConfig-688\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002204f002b7-8f63-4a5e-a61c-98806a814db0\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts/bastionHostIpConfigurations\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/bastionrg-7251/providers/Microsoft.Network/publicIPAddresses/ip-3184\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121/subnets/AzureBastionSubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022bastionShareableLinks\u0022: {}\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "084d925e4447cdf7bb14dcaf3d73d3cb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1695", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:57:37 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": "7005693d-95f5-4ba1-b47a-a89e175dc7ce", + "x-ms-client-request-id": "084d925e4447cdf7bb14dcaf3d73d3cb", + "x-ms-correlation-request-id": "9040eedb-a051-4ec6-86e0-4fb9a91d0b17", + "x-ms-ratelimit-remaining-subscription-reads": "11632", + "x-ms-request-id": "585bc568-839e-4d60-a043-047009d8edf3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075737Z:9040eedb-a051-4ec6-86e0-4fb9a91d0b17" + }, + "ResponseBody": [ + "{\r\n", + " \u0022value\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022bastion-3829\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-3829\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002204f002b7-8f63-4a5e-a61c-98806a814db0\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022dnsName\u0022: \u0022bst-9ee9dad8-d7f3-4f27-8a34-61eda503b407.bastion.azure.com\u0022,\r\n", + " \u0022scaleUnits\u0022: 2,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022bastionIPConfig-688\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-3829/bastionHostIpConfigurations/bastionIPConfig-688\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002204f002b7-8f63-4a5e-a61c-98806a814db0\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts/bastionHostIpConfigurations\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/bastionrg-7251/providers/Microsoft.Network/publicIPAddresses/ip-3184\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121/subnets/AzureBastionSubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022bastionShareableLinks\u0022: {}\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022\r\n", + " }\r\n", + " }\r\n", + " ]\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f4f281a5842cd5e611a96dd68480cccc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1695", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:57:37 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": "3a1823ec-cfb5-4ea8-b5f9-8b7098c2b5a5", + "x-ms-client-request-id": "f4f281a5842cd5e611a96dd68480cccc", + "x-ms-correlation-request-id": "2adcbb1e-765b-48b5-b14e-e0a15ba0a8bd", + "x-ms-ratelimit-remaining-subscription-reads": "11631", + "x-ms-request-id": "b436ad6e-96e2-4ab9-83db-2d850f464a94", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075737Z:2adcbb1e-765b-48b5-b14e-e0a15ba0a8bd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022value\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022bastion-3829\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-3829\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002204f002b7-8f63-4a5e-a61c-98806a814db0\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022dnsName\u0022: \u0022bst-9ee9dad8-d7f3-4f27-8a34-61eda503b407.bastion.azure.com\u0022,\r\n", + " \u0022scaleUnits\u0022: 2,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022bastionIPConfig-688\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-3829/bastionHostIpConfigurations/bastionIPConfig-688\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002204f002b7-8f63-4a5e-a61c-98806a814db0\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts/bastionHostIpConfigurations\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/bastionrg-7251/providers/Microsoft.Network/publicIPAddresses/ip-3184\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121/subnets/AzureBastionSubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022bastionShareableLinks\u0022: {}\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022\r\n", + " }\r\n", + " }\r\n", + " ]\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-3829?api-version=2021-02-01", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7b7c9e7f6fde16177a33ce422d6374aa", + "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/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 08 Sep 2021 07:57:38 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operationResults/4684cb45-82e3-49f8-9291-e276ba68911d?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": "fe75dc2f-5b40-4011-b787-4e40419f3ee8", + "x-ms-client-request-id": "7b7c9e7f6fde16177a33ce422d6374aa", + "x-ms-correlation-request-id": "d2e78c12-1d2e-4ceb-9bd3-901a98af6dff", + "x-ms-ratelimit-remaining-subscription-deletes": "14998", + "x-ms-request-id": "4684cb45-82e3-49f8-9291-e276ba68911d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075738Z:d2e78c12-1d2e-4ceb-9bd3-901a98af6dff" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9f30104757f635ec69dc7af8b5a3a7ae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:57:38 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": "dfad3f97-e874-404f-93f2-acb27b587a75", + "x-ms-client-request-id": "9f30104757f635ec69dc7af8b5a3a7ae", + "x-ms-correlation-request-id": "96e3a228-3325-4902-9b55-9cef74c50996", + "x-ms-ratelimit-remaining-subscription-reads": "11630", + "x-ms-request-id": "866b0ae8-cd05-4617-a6e7-787ed7b8222f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075738Z:96e3a228-3325-4902-9b55-9cef74c50996" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a492c235658377be55a2cf66787a3f58", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:57:39 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": "440a85b5-5051-4c6a-bd16-6d8357f351b8", + "x-ms-client-request-id": "a492c235658377be55a2cf66787a3f58", + "x-ms-correlation-request-id": "20d7f8ad-958f-44c8-ad2f-08132a59feff", + "x-ms-ratelimit-remaining-subscription-reads": "11629", + "x-ms-request-id": "402d2bf0-9bde-409f-b3c4-09e16f235d15", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075740Z:20d7f8ad-958f-44c8-ad2f-08132a59feff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1dfb93e9d533ebb4f2c7fd318d502408", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:57: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": "972e18a5-dc60-4bfd-afc3-b423d0043619", + "x-ms-client-request-id": "1dfb93e9d533ebb4f2c7fd318d502408", + "x-ms-correlation-request-id": "ed4a337a-0ea5-4eb3-ad4c-29f9b72a7977", + "x-ms-ratelimit-remaining-subscription-reads": "11628", + "x-ms-request-id": "875d6a9f-9288-4527-a9b9-926af353fc5a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075741Z:ed4a337a-0ea5-4eb3-ad4c-29f9b72a7977" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "146748d0a58fe1b751b849548886bdee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:57:42 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": "6e7ee8d1-09bb-4a5e-b807-3c7365b2a1f1", + "x-ms-client-request-id": "146748d0a58fe1b751b849548886bdee", + "x-ms-correlation-request-id": "d50ee138-db1e-41a7-87fd-f713e4681f9e", + "x-ms-ratelimit-remaining-subscription-reads": "11627", + "x-ms-request-id": "20474dc3-aa4c-49ed-ad37-f98d57ff4118", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075743Z:d50ee138-db1e-41a7-87fd-f713e4681f9e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "220e219c8aa8607a0ea7b1bc688cea05", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:57: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": "f699ec97-81a9-4822-a3ff-0eee847c3c8c", + "x-ms-client-request-id": "220e219c8aa8607a0ea7b1bc688cea05", + "x-ms-correlation-request-id": "bf7571c8-0b40-48b4-a095-43271dadb94e", + "x-ms-ratelimit-remaining-subscription-reads": "11626", + "x-ms-request-id": "736500d3-6f09-4aaf-9da5-27a7b1bec4c3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075744Z:bf7571c8-0b40-48b4-a095-43271dadb94e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3096c67d2b1344c9dc1acb7a8b60626c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:57:45 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": "1aae0197-869a-4fc6-a46e-8058fba955a8", + "x-ms-client-request-id": "3096c67d2b1344c9dc1acb7a8b60626c", + "x-ms-correlation-request-id": "5aa5a5f8-bb12-4ebe-a995-bc1f93691f20", + "x-ms-ratelimit-remaining-subscription-reads": "11625", + "x-ms-request-id": "030026d4-10df-4a34-9272-b6a53cec7913", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075745Z:5aa5a5f8-bb12-4ebe-a995-bc1f93691f20" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6b950f090241455fcd0606e8f3fa79c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:57: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": "60d48ae5-02a2-4e72-b41e-48d2cbbee444", + "x-ms-client-request-id": "6b950f090241455fcd0606e8f3fa79c5", + "x-ms-correlation-request-id": "f908e57a-2db6-4a24-97e9-28da5e8a918b", + "x-ms-ratelimit-remaining-subscription-reads": "11624", + "x-ms-request-id": "a32b1699-bebd-4b28-90b2-6b2268107f2b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075747Z:f908e57a-2db6-4a24-97e9-28da5e8a918b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c2d644ce8cf071db58ca468ebe00d5ad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:57:48 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": "25572f88-ffcc-423e-9f84-0c4796ef5825", + "x-ms-client-request-id": "c2d644ce8cf071db58ca468ebe00d5ad", + "x-ms-correlation-request-id": "24586cc8-4c89-4fe6-9ff7-7a8579646828", + "x-ms-ratelimit-remaining-subscription-reads": "11623", + "x-ms-request-id": "5c15cad1-ec26-40c9-bf19-90137fa6f4aa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075749Z:24586cc8-4c89-4fe6-9ff7-7a8579646828" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "59b245447ef77bc46650630c25e151e1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:57: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": "91d9785a-6f3e-48a2-8184-6a6435fa730b", + "x-ms-client-request-id": "59b245447ef77bc46650630c25e151e1", + "x-ms-correlation-request-id": "708f60cd-8f40-4ebf-a83d-87ae5a7ded3e", + "x-ms-ratelimit-remaining-subscription-reads": "11622", + "x-ms-request-id": "ecfc1e7b-3ae5-47f7-9907-c2b43683d3ac", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075750Z:708f60cd-8f40-4ebf-a83d-87ae5a7ded3e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "46ac06a0a08a7d7b34231276bcd187cd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ba11ddaf-5f09-459e-92db-c5008e7f40ea", + "x-ms-client-request-id": "46ac06a0a08a7d7b34231276bcd187cd", + "x-ms-correlation-request-id": "dc2c14fd-35c7-422e-af1e-662a0f40f883", + "x-ms-ratelimit-remaining-subscription-reads": "11621", + "x-ms-request-id": "2dc81862-4a09-475c-8fbf-67eefd8d8f53", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075751Z:dc2c14fd-35c7-422e-af1e-662a0f40f883" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ada3583120484fcd805a5ba029ce4c77", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "9c234866-99b4-4710-b318-8a51a3a1435c", + "x-ms-client-request-id": "ada3583120484fcd805a5ba029ce4c77", + "x-ms-correlation-request-id": "99b2d032-0d3c-4d3b-a9ee-2583f0214d83", + "x-ms-ratelimit-remaining-subscription-reads": "11620", + "x-ms-request-id": "7648d15e-7d58-4b19-9d5d-c8169ce32586", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075753Z:99b2d032-0d3c-4d3b-a9ee-2583f0214d83" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b7ed64798e53a323ca3524d36c4dbf95", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a3ef3198-7f24-447a-9339-97f902f54a8b", + "x-ms-client-request-id": "b7ed64798e53a323ca3524d36c4dbf95", + "x-ms-correlation-request-id": "67525fbd-77fe-4657-acf2-2fe7e8b3d832", + "x-ms-ratelimit-remaining-subscription-reads": "11619", + "x-ms-request-id": "6b1121bc-1427-4df3-86ae-3a67b86a4ada", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075754Z:67525fbd-77fe-4657-acf2-2fe7e8b3d832" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ccdb95c8a33d8099385dc62f45db5365", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e33c9673-9dba-4cab-a6a3-27ec8e503b19", + "x-ms-client-request-id": "ccdb95c8a33d8099385dc62f45db5365", + "x-ms-correlation-request-id": "f7f09f6f-0ada-4a9c-bfe6-88213cc301ab", + "x-ms-ratelimit-remaining-subscription-reads": "11618", + "x-ms-request-id": "476095c1-7308-4236-a45a-3f46153b89d5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075756Z:f7f09f6f-0ada-4a9c-bfe6-88213cc301ab" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "57fd9bd7cfe3a2793400e313fbfae332", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b2f63786-d437-4a64-a9a2-95fafc39c95e", + "x-ms-client-request-id": "57fd9bd7cfe3a2793400e313fbfae332", + "x-ms-correlation-request-id": "89fc496b-aaf7-46e6-a066-9bbec9be253f", + "x-ms-ratelimit-remaining-subscription-reads": "11617", + "x-ms-request-id": "592e839f-6b30-464f-b00c-4c1bb896afe0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075757Z:89fc496b-aaf7-46e6-a066-9bbec9be253f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "94d7c69a7ff2d539cb6c7ff6c7f45eef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "3188de0d-216a-4861-a635-ed3bbf8c2ade", + "x-ms-client-request-id": "94d7c69a7ff2d539cb6c7ff6c7f45eef", + "x-ms-correlation-request-id": "01e3b1b9-637f-4480-a6a8-57b6786a4a9a", + "x-ms-ratelimit-remaining-subscription-reads": "11616", + "x-ms-request-id": "53999a8e-8edb-437f-aa5b-4ed55617cddf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075758Z:01e3b1b9-637f-4480-a6a8-57b6786a4a9a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d0fbbfe16850f9b11b38983dc085853e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e45abe02-ab96-47be-b604-d7636bb30cc1", + "x-ms-client-request-id": "d0fbbfe16850f9b11b38983dc085853e", + "x-ms-correlation-request-id": "785fa387-f742-41e1-b8bd-218ecdfef376", + "x-ms-ratelimit-remaining-subscription-reads": "11615", + "x-ms-request-id": "6cc71e66-0603-47d6-987b-c65f4499cd63", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075800Z:785fa387-f742-41e1-b8bd-218ecdfef376" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7e95947abf03577361278c775083db40", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8d0be6e3-293b-40e0-97a2-f00e49e4a523", + "x-ms-client-request-id": "7e95947abf03577361278c775083db40", + "x-ms-correlation-request-id": "88be156f-e40f-4de4-9878-305b238624f1", + "x-ms-ratelimit-remaining-subscription-reads": "11614", + "x-ms-request-id": "0d2a2120-683d-4fbf-943b-51cd27736ab1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075801Z:88be156f-e40f-4de4-9878-305b238624f1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3c31f4a112fe32e215dd78b9e7fc1545", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:58: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": "22afe89d-21b0-4f7f-aff8-a465e07f9d22", + "x-ms-client-request-id": "3c31f4a112fe32e215dd78b9e7fc1545", + "x-ms-correlation-request-id": "dcbe9d26-171c-45ec-b98b-73baf00e92da", + "x-ms-ratelimit-remaining-subscription-reads": "11613", + "x-ms-request-id": "9fad5a49-0b49-4399-a6f6-533a67b09f58", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075802Z:dcbe9d26-171c-45ec-b98b-73baf00e92da" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "327b40e6df5e22eb4ba46f28dc39a997", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "51aea6d9-7963-4217-a2c9-00b7d3e110ad", + "x-ms-client-request-id": "327b40e6df5e22eb4ba46f28dc39a997", + "x-ms-correlation-request-id": "8d444ef2-9752-4873-8b1c-a11d981f0a41", + "x-ms-ratelimit-remaining-subscription-reads": "11612", + "x-ms-request-id": "35d13837-191f-4ad1-b2b0-4034e6473da9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075804Z:8d444ef2-9752-4873-8b1c-a11d981f0a41" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cc9b575d4954673fb262692547b97065", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "30f154fb-d44b-4131-a509-ea48895a81ae", + "x-ms-client-request-id": "cc9b575d4954673fb262692547b97065", + "x-ms-correlation-request-id": "0aa1966f-cbe1-4092-862b-fa6d2296862e", + "x-ms-ratelimit-remaining-subscription-reads": "11611", + "x-ms-request-id": "8d5dc4b3-432d-4621-a520-9f407bc9bd89", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075805Z:0aa1966f-cbe1-4092-862b-fa6d2296862e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0f904612a807c1e1080ff05aa3b956db", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "22fd78c0-698e-43b1-93bd-0ac429d46dfc", + "x-ms-client-request-id": "0f904612a807c1e1080ff05aa3b956db", + "x-ms-correlation-request-id": "9c851813-ff03-4675-a3d0-0e7783ffe89b", + "x-ms-ratelimit-remaining-subscription-reads": "11610", + "x-ms-request-id": "77db635c-eb49-4a21-87cb-b89859121df0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075806Z:9c851813-ff03-4675-a3d0-0e7783ffe89b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8f5ce03349609df1011480fc76c5db92", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "01b3c371-3cfe-4ad7-aa8b-18accc1473fe", + "x-ms-client-request-id": "8f5ce03349609df1011480fc76c5db92", + "x-ms-correlation-request-id": "b436741e-42a5-47d7-841c-31646175f8bf", + "x-ms-ratelimit-remaining-subscription-reads": "11609", + "x-ms-request-id": "c0d60ef8-8510-4636-bccb-10ccc014a259", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075808Z:b436741e-42a5-47d7-841c-31646175f8bf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "95150a349aa9b59076dac34459e5c4f8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4a33e5d6-3a4e-41eb-9e6d-b118f1ff7c44", + "x-ms-client-request-id": "95150a349aa9b59076dac34459e5c4f8", + "x-ms-correlation-request-id": "508aa9b8-b6a2-4dee-a5eb-98f3ab98f596", + "x-ms-ratelimit-remaining-subscription-reads": "11608", + "x-ms-request-id": "016cb11f-e6d4-4969-b7e9-8ea2c353fd70", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075809Z:508aa9b8-b6a2-4dee-a5eb-98f3ab98f596" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "66f28e0ce05dc90454f30ef327e54b42", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c44e4ab1-c839-4586-a939-0eb5194b137e", + "x-ms-client-request-id": "66f28e0ce05dc90454f30ef327e54b42", + "x-ms-correlation-request-id": "1fba8898-40e4-4f24-a04a-1b06ca673d03", + "x-ms-ratelimit-remaining-subscription-reads": "11607", + "x-ms-request-id": "c12bb1f4-c451-4ec6-a2f6-725bc09733c4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075810Z:1fba8898-40e4-4f24-a04a-1b06ca673d03" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "99265d34c0a4993150a6198685ad431b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:58: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": "970010bb-bcff-4c72-ba66-e8c0abb62a0e", + "x-ms-client-request-id": "99265d34c0a4993150a6198685ad431b", + "x-ms-correlation-request-id": "afd7fea0-6073-4bb9-b5a6-6cf1166dfb58", + "x-ms-ratelimit-remaining-subscription-reads": "11606", + "x-ms-request-id": "8c6ed94b-2026-43df-8655-2690081aee5d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075811Z:afd7fea0-6073-4bb9-b5a6-6cf1166dfb58" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e7f0874f74d35335054b41b68c9c8d90", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1b33f3f0-36f3-4496-b04d-183db4aa85db", + "x-ms-client-request-id": "e7f0874f74d35335054b41b68c9c8d90", + "x-ms-correlation-request-id": "96d2a3cc-f91e-4432-a0de-f4aec862c53d", + "x-ms-ratelimit-remaining-subscription-reads": "11605", + "x-ms-request-id": "f0f56847-1323-4730-953e-f7e6f176b0d8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075813Z:96d2a3cc-f91e-4432-a0de-f4aec862c53d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fb10808e2bbf4b545d5815b6c67d44a7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "aa83850e-dc06-48fe-bb73-7b100afd96c4", + "x-ms-client-request-id": "fb10808e2bbf4b545d5815b6c67d44a7", + "x-ms-correlation-request-id": "1fb95c61-8754-4381-abf2-5fd65e1707ea", + "x-ms-ratelimit-remaining-subscription-reads": "11604", + "x-ms-request-id": "509bc534-27b6-462b-b798-422b6d35978d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075814Z:1fb95c61-8754-4381-abf2-5fd65e1707ea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a0a3f2af64f4bf6f28d293587f7a0db3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "bd1bbf08-f391-4101-b346-bade4a2158e6", + "x-ms-client-request-id": "a0a3f2af64f4bf6f28d293587f7a0db3", + "x-ms-correlation-request-id": "d3b9c92e-1309-406c-a9fb-75ae2aeb6662", + "x-ms-ratelimit-remaining-subscription-reads": "11603", + "x-ms-request-id": "782439a2-3f8f-4a38-bf6e-aca4d673fc99", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075815Z:d3b9c92e-1309-406c-a9fb-75ae2aeb6662" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "04f78919479d245c33a48a7b5e7e8d87", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:58: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": "90c10143-0e81-4470-bab0-97970c6c56cc", + "x-ms-client-request-id": "04f78919479d245c33a48a7b5e7e8d87", + "x-ms-correlation-request-id": "a027de9a-8508-46d8-af2f-6fe1df01cbe6", + "x-ms-ratelimit-remaining-subscription-reads": "11602", + "x-ms-request-id": "abcb69c0-a501-4ea1-8b60-523f3352cdae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075816Z:a027de9a-8508-46d8-af2f-6fe1df01cbe6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "99079907edf82a9b1150d3ec97fbcce2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f8c81bbb-0e56-48df-8f1f-c6d6d69fe51b", + "x-ms-client-request-id": "99079907edf82a9b1150d3ec97fbcce2", + "x-ms-correlation-request-id": "783125d9-845f-4c05-b014-bac843ae5fc5", + "x-ms-ratelimit-remaining-subscription-reads": "11601", + "x-ms-request-id": "58ec735b-690a-4f0c-9dd3-200474f2b88a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075818Z:783125d9-845f-4c05-b014-bac843ae5fc5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3d9c624b3f86670a957f6c50d9f461a9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c3b9307d-aa29-4097-b136-b69d4d7f1cca", + "x-ms-client-request-id": "3d9c624b3f86670a957f6c50d9f461a9", + "x-ms-correlation-request-id": "012871be-9bd3-4d5a-86fe-d9a7e992292a", + "x-ms-ratelimit-remaining-subscription-reads": "11600", + "x-ms-request-id": "c5202b3a-2208-43db-be55-3dfa9d18ee1e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075820Z:012871be-9bd3-4d5a-86fe-d9a7e992292a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e5500b4473732cbbedccf24c74708c38", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:58: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": "0c58dd49-52f5-4a6f-9e3e-f2dcbf82f6d1", + "x-ms-client-request-id": "e5500b4473732cbbedccf24c74708c38", + "x-ms-correlation-request-id": "e4591b1c-3780-4528-97b6-7a49fc3b0c61", + "x-ms-ratelimit-remaining-subscription-reads": "11599", + "x-ms-request-id": "e6b3594c-3459-42ea-8502-059430f9d444", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075821Z:e4591b1c-3780-4528-97b6-7a49fc3b0c61" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fc2fa7d750e2c8018e9f0479804b501d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "eea4e64a-d1dd-4faf-b651-1150e561d079", + "x-ms-client-request-id": "fc2fa7d750e2c8018e9f0479804b501d", + "x-ms-correlation-request-id": "a308064c-9846-4241-9268-65272b5e2a46", + "x-ms-ratelimit-remaining-subscription-reads": "11598", + "x-ms-request-id": "436d7da1-cf8f-451d-bf7f-d1cd0481f638", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075822Z:a308064c-9846-4241-9268-65272b5e2a46" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8ba729efe6aad86ea6704fb94dbdf225", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "02ae48d9-9e2a-45a4-b8dd-a3dc7197ef38", + "x-ms-client-request-id": "8ba729efe6aad86ea6704fb94dbdf225", + "x-ms-correlation-request-id": "f49dc40b-3656-4e16-8791-7bb8348baab2", + "x-ms-ratelimit-remaining-subscription-reads": "11597", + "x-ms-request-id": "3baed9fe-8cbb-4277-af9f-24642f533d76", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075824Z:f49dc40b-3656-4e16-8791-7bb8348baab2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "317834f264c4f4c70a8856d46f41aba2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a283bc71-e97d-43f9-ab18-41f22a2fa74a", + "x-ms-client-request-id": "317834f264c4f4c70a8856d46f41aba2", + "x-ms-correlation-request-id": "f4df9b01-d340-411c-8fe6-160f0bbe4b20", + "x-ms-ratelimit-remaining-subscription-reads": "11596", + "x-ms-request-id": "dd917c63-1296-4de3-83c7-a631571665d8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075825Z:f4df9b01-d340-411c-8fe6-160f0bbe4b20" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4b5dd57c00c8f08d3957557100477bd1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:58: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": "9f551ff4-dae2-4774-8ffe-1dfa0bdbc243", + "x-ms-client-request-id": "4b5dd57c00c8f08d3957557100477bd1", + "x-ms-correlation-request-id": "26e8832c-2c3d-4da7-a2da-9830dc91851b", + "x-ms-ratelimit-remaining-subscription-reads": "11595", + "x-ms-request-id": "c22259aa-0430-4a94-a12b-fdeccae16c38", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075826Z:26e8832c-2c3d-4da7-a2da-9830dc91851b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4c86deac1ed28a5962b38122909a6964", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3d51c300-3c49-4a80-be48-b74d112bc5e0", + "x-ms-client-request-id": "4c86deac1ed28a5962b38122909a6964", + "x-ms-correlation-request-id": "26ab3f13-ad06-433b-b98b-3fa7c3c79892", + "x-ms-ratelimit-remaining-subscription-reads": "11594", + "x-ms-request-id": "ae22aa25-bad7-406b-aee0-d3a805d838b5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075828Z:26ab3f13-ad06-433b-b98b-3fa7c3c79892" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "783dadc4a760f15da688f86d0e55f3c2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "fdecc919-06b6-4b51-9874-17d5b8d5ae59", + "x-ms-client-request-id": "783dadc4a760f15da688f86d0e55f3c2", + "x-ms-correlation-request-id": "a8ed9293-faf7-4336-ab2e-23a31245fa61", + "x-ms-ratelimit-remaining-subscription-reads": "11593", + "x-ms-request-id": "0e7cf803-ea15-432f-a958-2bed08f9f320", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075829Z:a8ed9293-faf7-4336-ab2e-23a31245fa61" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9027850d5fba5dcf7bd2e8157f6a609f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:58: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": "0fe8033b-505b-4ddc-9868-93d210e3d3a5", + "x-ms-client-request-id": "9027850d5fba5dcf7bd2e8157f6a609f", + "x-ms-correlation-request-id": "32f9919c-6d6e-4340-a4e9-3effa510632c", + "x-ms-ratelimit-remaining-subscription-reads": "11592", + "x-ms-request-id": "7f2c07ed-fef1-4fa0-8cff-2c8093b6509b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075831Z:32f9919c-6d6e-4340-a4e9-3effa510632c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "52adf1ed020a05708095a54a26eb7c0c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d7621b32-f458-4818-abd7-af548ea42ac0", + "x-ms-client-request-id": "52adf1ed020a05708095a54a26eb7c0c", + "x-ms-correlation-request-id": "f1202a1a-0e02-48f5-88f5-4724ba54d73e", + "x-ms-ratelimit-remaining-subscription-reads": "11591", + "x-ms-request-id": "89362021-a93f-4731-a51b-5e699acda4eb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075832Z:f1202a1a-0e02-48f5-88f5-4724ba54d73e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0a14bfbfd87265a9dddffc8dbe48723c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e00b1826-88d1-48b9-ad88-28eda263d3c3", + "x-ms-client-request-id": "0a14bfbfd87265a9dddffc8dbe48723c", + "x-ms-correlation-request-id": "575b5af0-805d-4c6b-89db-828ba5108ac4", + "x-ms-ratelimit-remaining-subscription-reads": "11590", + "x-ms-request-id": "96a232db-8ab2-4d82-ac41-64e02720ea31", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075833Z:575b5af0-805d-4c6b-89db-828ba5108ac4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1d7f5827a0a80ab714211025b985368f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2ec4f961-b158-4f8d-8344-88eb7e1c676a", + "x-ms-client-request-id": "1d7f5827a0a80ab714211025b985368f", + "x-ms-correlation-request-id": "ae3feb0a-f2c6-4814-86ac-2fada3f7391f", + "x-ms-ratelimit-remaining-subscription-reads": "11589", + "x-ms-request-id": "16ae0374-6e0b-4160-a7e8-8f6e497aece1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075834Z:ae3feb0a-f2c6-4814-86ac-2fada3f7391f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c055dc565656152c4747742a06e34638", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:58: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": "321db733-2c00-4996-9483-ae3335c4c3e6", + "x-ms-client-request-id": "c055dc565656152c4747742a06e34638", + "x-ms-correlation-request-id": "64bfed52-c5ff-4ae7-a63b-07dd17cb979a", + "x-ms-ratelimit-remaining-subscription-reads": "11588", + "x-ms-request-id": "d4f21aa9-2d1f-4fbb-8926-590e34e29bbc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075836Z:64bfed52-c5ff-4ae7-a63b-07dd17cb979a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cd2269235e6c1e64070af550c884ac58", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "13018b76-edeb-44b2-bc08-78d94ae4fe0f", + "x-ms-client-request-id": "cd2269235e6c1e64070af550c884ac58", + "x-ms-correlation-request-id": "bc50d010-4177-471c-944a-29c1451c3c03", + "x-ms-ratelimit-remaining-subscription-reads": "11587", + "x-ms-request-id": "23ce5e15-2af9-42f7-b2e6-a2aa8c54a684", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075837Z:bc50d010-4177-471c-944a-29c1451c3c03" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e2366ca9b1f2d1e52c69d6602b8c0330", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "61ed2dea-f634-488d-9f3c-5f2cff70e0e6", + "x-ms-client-request-id": "e2366ca9b1f2d1e52c69d6602b8c0330", + "x-ms-correlation-request-id": "b2d52d9a-f6e0-422d-9d23-93cf491d4f81", + "x-ms-ratelimit-remaining-subscription-reads": "11586", + "x-ms-request-id": "8c809344-2015-4fb6-a617-bec3dc11fdaf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075838Z:b2d52d9a-f6e0-422d-9d23-93cf491d4f81" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4f02d7db6963f7237736b94b60db4cc2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:58: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": "a5246bc4-1c37-48ad-9790-2451a20b5dcc", + "x-ms-client-request-id": "4f02d7db6963f7237736b94b60db4cc2", + "x-ms-correlation-request-id": "5febcb0f-f361-4c95-bd43-a8cc0a6677cd", + "x-ms-ratelimit-remaining-subscription-reads": "11585", + "x-ms-request-id": "575b397b-c711-4cfd-8510-3156ecb0eaf1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075840Z:5febcb0f-f361-4c95-bd43-a8cc0a6677cd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9a811c9b63ad71458350a1028804f27a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "50187f5b-c4de-42bf-b10a-cc63e3aa119b", + "x-ms-client-request-id": "9a811c9b63ad71458350a1028804f27a", + "x-ms-correlation-request-id": "7ec86b64-6810-4805-9b53-24e8e6986fc9", + "x-ms-ratelimit-remaining-subscription-reads": "11584", + "x-ms-request-id": "3578fd74-3292-4f0e-8ae6-645c4b2df609", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075841Z:7ec86b64-6810-4805-9b53-24e8e6986fc9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f075c4065c813ff4483e6bbbf89a7151", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1a176a82-7b0f-48bd-8a1e-0b99e8a1e1af", + "x-ms-client-request-id": "f075c4065c813ff4483e6bbbf89a7151", + "x-ms-correlation-request-id": "e1190ade-90d5-4c59-9c17-a5d40fb59a9c", + "x-ms-ratelimit-remaining-subscription-reads": "11583", + "x-ms-request-id": "f352f201-b106-4e68-a6f9-a0c5558b7ed0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075842Z:e1190ade-90d5-4c59-9c17-a5d40fb59a9c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0fc4131d690a77839290cb12c8206e72", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c0abe463-e74a-4023-990c-d523e86e0dfb", + "x-ms-client-request-id": "0fc4131d690a77839290cb12c8206e72", + "x-ms-correlation-request-id": "9cbd2c78-63af-444d-a438-641be1d904e4", + "x-ms-ratelimit-remaining-subscription-reads": "11582", + "x-ms-request-id": "662fcf6f-e3b4-494a-b22a-d323881b8869", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075844Z:9cbd2c78-63af-444d-a438-641be1d904e4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9b453e445b663e402842516ef88978e9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:58: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": "3ca552b4-e6d1-4448-bc83-c66eeebd217f", + "x-ms-client-request-id": "9b453e445b663e402842516ef88978e9", + "x-ms-correlation-request-id": "e4affb68-462a-4d14-98d6-8f04fe20cb43", + "x-ms-ratelimit-remaining-subscription-reads": "11581", + "x-ms-request-id": "1b05d56f-4c5b-4dfd-bc9d-b26d60afff18", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075845Z:e4affb68-462a-4d14-98d6-8f04fe20cb43" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "75e54fdfe3409d6f41fd5ef191e17728", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "62362d99-15c3-406c-b0c4-59d566e94fd8", + "x-ms-client-request-id": "75e54fdfe3409d6f41fd5ef191e17728", + "x-ms-correlation-request-id": "ac5ce259-6066-4bbf-b37e-5a0add4af027", + "x-ms-ratelimit-remaining-subscription-reads": "11580", + "x-ms-request-id": "444e4a7c-7205-4fe5-b95d-a71b9cb1120f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075846Z:ac5ce259-6066-4bbf-b37e-5a0add4af027" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ba77f8cfd654c1ead285e6c817147f08", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2953aa1f-a049-4e8a-b3d2-6833d5c71904", + "x-ms-client-request-id": "ba77f8cfd654c1ead285e6c817147f08", + "x-ms-correlation-request-id": "3c28440f-97e9-4e4b-a8a7-c58e477bab44", + "x-ms-ratelimit-remaining-subscription-reads": "11579", + "x-ms-request-id": "a6eb9bb8-3079-4baa-ae56-167c9c56b6b5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075847Z:3c28440f-97e9-4e4b-a8a7-c58e477bab44" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7833e117f93b6032cfa85968fd4fad46", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d0d48fb3-e00c-4370-af17-e201b954b070", + "x-ms-client-request-id": "7833e117f93b6032cfa85968fd4fad46", + "x-ms-correlation-request-id": "df47e664-a000-48ff-9cd4-cc1863dd3de9", + "x-ms-ratelimit-remaining-subscription-reads": "11578", + "x-ms-request-id": "00ab4ac3-35d8-4a06-aa20-46dfc0ce6c50", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075849Z:df47e664-a000-48ff-9cd4-cc1863dd3de9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ff9e29cabe1209956524a3bafca6852c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:58: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": "4880f0d7-3163-43c0-8632-2f0420175be6", + "x-ms-client-request-id": "ff9e29cabe1209956524a3bafca6852c", + "x-ms-correlation-request-id": "5dd2decf-d192-4beb-81ec-dafa954f52cd", + "x-ms-ratelimit-remaining-subscription-reads": "11577", + "x-ms-request-id": "91802211-08af-43c3-a937-43d211ec0665", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075850Z:5dd2decf-d192-4beb-81ec-dafa954f52cd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "afd9567dffaed6ecc616eaab7c82c382", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1558f095-9468-4945-87df-417f55972f4b", + "x-ms-client-request-id": "afd9567dffaed6ecc616eaab7c82c382", + "x-ms-correlation-request-id": "1a99e981-7a24-45dc-8384-6add64c3c6a1", + "x-ms-ratelimit-remaining-subscription-reads": "11576", + "x-ms-request-id": "06fd92d6-9abb-4cd6-a939-3f1a95ef19ae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075851Z:1a99e981-7a24-45dc-8384-6add64c3c6a1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eefea0d7807659f64c2a131656786328", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "db98074b-99cf-4173-8bbd-2dd1293996c9", + "x-ms-client-request-id": "eefea0d7807659f64c2a131656786328", + "x-ms-correlation-request-id": "1ab12383-9d73-4ee8-8b88-a8ed266a8ba0", + "x-ms-ratelimit-remaining-subscription-reads": "11575", + "x-ms-request-id": "e67448ad-6569-4d65-be05-243893e37f20", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075853Z:1ab12383-9d73-4ee8-8b88-a8ed266a8ba0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a6ea2d22fe76cb973cc839fbd3e98ce2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "a8cbd671-1586-4914-9428-cc10e8a37260", + "x-ms-client-request-id": "a6ea2d22fe76cb973cc839fbd3e98ce2", + "x-ms-correlation-request-id": "3ce678be-16ee-4234-8441-0fc15be54a67", + "x-ms-ratelimit-remaining-subscription-reads": "11574", + "x-ms-request-id": "dc9b0c66-453d-478b-9894-ba9ebc9254b2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075854Z:3ce678be-16ee-4234-8441-0fc15be54a67" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5ce2206097a8fdb660806284ebd6804d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "70bf63e4-f4c7-4985-80b4-c2f606632664", + "x-ms-client-request-id": "5ce2206097a8fdb660806284ebd6804d", + "x-ms-correlation-request-id": "cce7a3db-acb7-4331-a956-b6ae1e96a649", + "x-ms-ratelimit-remaining-subscription-reads": "11573", + "x-ms-request-id": "1d11222b-0245-4b3b-8c4d-70a8a1723d77", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075856Z:cce7a3db-acb7-4331-a956-b6ae1e96a649" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4f88c2b31d97d90b0833b1ad47fa8563", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f059bc24-ad81-4232-8fc8-7f8dbcc2c2b0", + "x-ms-client-request-id": "4f88c2b31d97d90b0833b1ad47fa8563", + "x-ms-correlation-request-id": "191fba7e-d41b-4955-a8cb-ebe2737b4099", + "x-ms-ratelimit-remaining-subscription-reads": "11572", + "x-ms-request-id": "8cdba9ef-59f5-4259-a327-c5cd5754808a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075857Z:191fba7e-d41b-4955-a8cb-ebe2737b4099" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "35b5309d07958b8076ed46f69b12df66", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b31058e5-d5cc-499c-accd-bc98d03fb2e6", + "x-ms-client-request-id": "35b5309d07958b8076ed46f69b12df66", + "x-ms-correlation-request-id": "ef42595b-6f02-409e-8b5c-b19fa1133967", + "x-ms-ratelimit-remaining-subscription-reads": "11571", + "x-ms-request-id": "7e2c58df-1366-4e06-8aec-365e521f5cc3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075859Z:ef42595b-6f02-409e-8b5c-b19fa1133967" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1148eb473d60434a14085375e608b665", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "9226ef5d-c4c5-4a56-879c-ac7cc8684b3c", + "x-ms-client-request-id": "1148eb473d60434a14085375e608b665", + "x-ms-correlation-request-id": "98e28cbf-c01a-4e5f-a437-06c546055a0f", + "x-ms-ratelimit-remaining-subscription-reads": "11570", + "x-ms-request-id": "4bf84653-6c30-4cde-b7b3-4900a735b5e3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075900Z:98e28cbf-c01a-4e5f-a437-06c546055a0f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bbe7fffb4a20abb842fdd8a9d6153df5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "100250a4-087c-4373-b5db-2e29a0182f65", + "x-ms-client-request-id": "bbe7fffb4a20abb842fdd8a9d6153df5", + "x-ms-correlation-request-id": "9698429c-ef5e-4898-8646-9b88cfdea146", + "x-ms-ratelimit-remaining-subscription-reads": "11569", + "x-ms-request-id": "04725699-ec4a-4958-b7db-45aa783a77cc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075901Z:9698429c-ef5e-4898-8646-9b88cfdea146" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5c654b5373b25f02e572208cb30ba56e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f89abd8f-a8bc-41d8-ad6d-17f4d2eaf273", + "x-ms-client-request-id": "5c654b5373b25f02e572208cb30ba56e", + "x-ms-correlation-request-id": "504ec86c-2471-45e2-949e-4b05ee3731a8", + "x-ms-ratelimit-remaining-subscription-reads": "11568", + "x-ms-request-id": "42f94a9a-fc61-49d8-85dd-20388128dcb4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075903Z:504ec86c-2471-45e2-949e-4b05ee3731a8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9cfbe037242bfc45329ccf6265a16cff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "56660307-f6ea-425a-9df3-660355406dc6", + "x-ms-client-request-id": "9cfbe037242bfc45329ccf6265a16cff", + "x-ms-correlation-request-id": "4b636d19-d793-4790-a5b3-bbf82b99b1ad", + "x-ms-ratelimit-remaining-subscription-reads": "11567", + "x-ms-request-id": "934b994f-a44d-4d7b-aeb3-fcf09563bdf7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075904Z:4b636d19-d793-4790-a5b3-bbf82b99b1ad" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9a215dcb59a287b3fc87d5ae2a2bf837", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5b8cb3fd-d9d7-434a-aad0-4a2d568a1b83", + "x-ms-client-request-id": "9a215dcb59a287b3fc87d5ae2a2bf837", + "x-ms-correlation-request-id": "70db0350-7a64-4a7f-8eff-11d9a208527e", + "x-ms-ratelimit-remaining-subscription-reads": "11566", + "x-ms-request-id": "2daea78b-af10-4cd2-bd84-e7632dc5477f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075905Z:70db0350-7a64-4a7f-8eff-11d9a208527e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f6726957a1192fca05692915a4a0fa44", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3c19c203-e1a5-40dc-887a-5aa64a735a66", + "x-ms-client-request-id": "f6726957a1192fca05692915a4a0fa44", + "x-ms-correlation-request-id": "8e0e0ae2-13e8-45d8-9aa7-195ebb6e82a0", + "x-ms-ratelimit-remaining-subscription-reads": "11565", + "x-ms-request-id": "dcd828ad-0fc6-4534-a047-b831403b3c64", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075906Z:8e0e0ae2-13e8-45d8-9aa7-195ebb6e82a0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "56c120050ae9ddcc2d739fa44e97d207", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0937d0d0-8564-4646-9125-6ee32c88b151", + "x-ms-client-request-id": "56c120050ae9ddcc2d739fa44e97d207", + "x-ms-correlation-request-id": "2bf5a58b-6ea0-49e5-915f-3d37167e7332", + "x-ms-ratelimit-remaining-subscription-reads": "11564", + "x-ms-request-id": "0638f932-bade-48ae-8067-0a3f50a9d989", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075908Z:2bf5a58b-6ea0-49e5-915f-3d37167e7332" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fb0a98a4762e29e593f19539309de35c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "2e397361-35b8-4370-84e0-b31e9cd8aa6b", + "x-ms-client-request-id": "fb0a98a4762e29e593f19539309de35c", + "x-ms-correlation-request-id": "1fb19473-e1f0-45b1-87a1-f41ebcd7f5f8", + "x-ms-ratelimit-remaining-subscription-reads": "11563", + "x-ms-request-id": "f313a9a8-e275-4b5d-8319-decb3d4cabfd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075909Z:1fb19473-e1f0-45b1-87a1-f41ebcd7f5f8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "09a8908ca2694d4d9d94c9a60125e06e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5fca4241-59eb-4656-9a60-ed1cc604ce46", + "x-ms-client-request-id": "09a8908ca2694d4d9d94c9a60125e06e", + "x-ms-correlation-request-id": "ce6c54b3-00a2-4878-97b4-b47a2e6f5f97", + "x-ms-ratelimit-remaining-subscription-reads": "11562", + "x-ms-request-id": "5c052a3c-4d9b-4252-b9fb-943069eb5a0a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075910Z:ce6c54b3-00a2-4878-97b4-b47a2e6f5f97" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0c712196ff958f163a97c2f77592ac8f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "9a5ae6ad-9449-4018-9299-febdc8866c2d", + "x-ms-client-request-id": "0c712196ff958f163a97c2f77592ac8f", + "x-ms-correlation-request-id": "a80358cf-ce0d-42a3-a81f-ea745b72518d", + "x-ms-ratelimit-remaining-subscription-reads": "11561", + "x-ms-request-id": "daca9cf9-d80c-46fb-8f63-27474d2c08c7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075912Z:a80358cf-ce0d-42a3-a81f-ea745b72518d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bd174390c8ee029d4abd5d99ac3f286d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b58ae0a6-f160-45e6-aeea-98dff74be3a7", + "x-ms-client-request-id": "bd174390c8ee029d4abd5d99ac3f286d", + "x-ms-correlation-request-id": "040e4069-9951-4ec4-9a43-3f5732572af4", + "x-ms-ratelimit-remaining-subscription-reads": "11560", + "x-ms-request-id": "84209779-3f10-4f0f-a152-b6a574516a41", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075914Z:040e4069-9951-4ec4-9a43-3f5732572af4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0fa22611d72b8dc77a18cfd2df55d70a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2fa1e77b-d599-418e-aee6-6921f6b99490", + "x-ms-client-request-id": "0fa22611d72b8dc77a18cfd2df55d70a", + "x-ms-correlation-request-id": "b7572760-604a-4109-9f10-8ae3d33cdb5a", + "x-ms-ratelimit-remaining-subscription-reads": "11559", + "x-ms-request-id": "265ebf1a-d8ab-44d5-b909-df7febb93474", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075915Z:b7572760-604a-4109-9f10-8ae3d33cdb5a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "be1539e8220ece7f836fc1d7a17ce3fb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:59: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": "c04d31ba-d8cf-49e1-961b-7784a4ccafaf", + "x-ms-client-request-id": "be1539e8220ece7f836fc1d7a17ce3fb", + "x-ms-correlation-request-id": "b14d61dd-d922-4a7f-9d25-8c7255df1311", + "x-ms-ratelimit-remaining-subscription-reads": "11558", + "x-ms-request-id": "cd678c38-3c36-4f5b-a3cb-c2da35ec8979", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075916Z:b14d61dd-d922-4a7f-9d25-8c7255df1311" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4fe6546f9df0b9637b8a43d6f9cb22f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d74723f2-efd4-4842-ad48-06de3da711e5", + "x-ms-client-request-id": "4fe6546f9df0b9637b8a43d6f9cb22f5", + "x-ms-correlation-request-id": "26d4f04c-da71-48e4-8f82-8d24488e0438", + "x-ms-ratelimit-remaining-subscription-reads": "11557", + "x-ms-request-id": "57355582-3cfa-4d35-8102-fb1ff504a5a3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075918Z:26d4f04c-da71-48e4-8f82-8d24488e0438" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "72b152e66a2aee5fa7d48bbc15efebfe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8efe457e-7463-4dd6-9b7d-f044d4f96099", + "x-ms-client-request-id": "72b152e66a2aee5fa7d48bbc15efebfe", + "x-ms-correlation-request-id": "07ed99d9-63ad-4c2a-95c9-f4e3fa40a30a", + "x-ms-ratelimit-remaining-subscription-reads": "11556", + "x-ms-request-id": "597c20d1-8173-42bb-9973-8081bfd035cf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075919Z:07ed99d9-63ad-4c2a-95c9-f4e3fa40a30a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8a62d335886f4a1ad55b4283dfa8d4b8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "18dc7ff4-6a23-4f5d-bcb7-b6cb9811c4a5", + "x-ms-client-request-id": "8a62d335886f4a1ad55b4283dfa8d4b8", + "x-ms-correlation-request-id": "3d42dd31-e40b-4a73-8a34-bdff56171d8f", + "x-ms-ratelimit-remaining-subscription-reads": "11555", + "x-ms-request-id": "74d64392-9ef9-4ee1-8ac7-57ce71fe7527", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075920Z:3d42dd31-e40b-4a73-8a34-bdff56171d8f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4ef1cc4c70ca05d0f4f8a71b11a6a48c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "981b74f1-5ff5-4413-9a56-c7a456c08793", + "x-ms-client-request-id": "4ef1cc4c70ca05d0f4f8a71b11a6a48c", + "x-ms-correlation-request-id": "e2698093-1774-410a-bba4-73aaefdc353a", + "x-ms-ratelimit-remaining-subscription-reads": "11554", + "x-ms-request-id": "20c3de0b-bd7a-496b-ba39-9332d088d661", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075922Z:e2698093-1774-410a-bba4-73aaefdc353a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "25a0449e97685d8538679cce27dc0efe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7f5126f6-3c6a-427c-b051-2799140f78b0", + "x-ms-client-request-id": "25a0449e97685d8538679cce27dc0efe", + "x-ms-correlation-request-id": "84254860-f0c5-4434-84b5-a940fb4df40f", + "x-ms-ratelimit-remaining-subscription-reads": "11553", + "x-ms-request-id": "76155ea6-d707-46b4-8ab3-ed1f367ef984", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075923Z:84254860-f0c5-4434-84b5-a940fb4df40f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4970d2ff9dfec534035d9576e0fe392f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a66fe5cd-5183-48ed-bcf0-6a122b998225", + "x-ms-client-request-id": "4970d2ff9dfec534035d9576e0fe392f", + "x-ms-correlation-request-id": "dae66560-fdc2-4ebd-a207-521897734da6", + "x-ms-ratelimit-remaining-subscription-reads": "11552", + "x-ms-request-id": "8b2bc527-ab03-41cf-9848-a45fb31b8b55", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075924Z:dae66560-fdc2-4ebd-a207-521897734da6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9be4b6b7af08b45046931663d302dd18", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0db4e3c8-43e6-4f10-a7eb-e00e1a11a662", + "x-ms-client-request-id": "9be4b6b7af08b45046931663d302dd18", + "x-ms-correlation-request-id": "d2853418-b39d-439c-83ec-9ca9e13dd3ac", + "x-ms-ratelimit-remaining-subscription-reads": "11551", + "x-ms-request-id": "1f36280e-7ac4-445c-b1c6-607446eefbc5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075926Z:d2853418-b39d-439c-83ec-9ca9e13dd3ac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3e1ca9ea5a36018d0fdb220a020e7c39", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "02b15833-7349-4271-a885-4334598e0a4e", + "x-ms-client-request-id": "3e1ca9ea5a36018d0fdb220a020e7c39", + "x-ms-correlation-request-id": "157adad7-ba63-44df-9523-12362643cc0d", + "x-ms-ratelimit-remaining-subscription-reads": "11550", + "x-ms-request-id": "632281be-2365-4d05-bd8a-4e99f3cc7047", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075927Z:157adad7-ba63-44df-9523-12362643cc0d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "71176d2e72f74ff682bc026a86d1f101", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d9c2d67b-1dec-4aa0-a713-dc68886f7358", + "x-ms-client-request-id": "71176d2e72f74ff682bc026a86d1f101", + "x-ms-correlation-request-id": "757459db-ed1c-4b76-84e7-8344f924365c", + "x-ms-ratelimit-remaining-subscription-reads": "11549", + "x-ms-request-id": "b6f98a7c-e763-4307-9ecb-6718bd62023a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075928Z:757459db-ed1c-4b76-84e7-8344f924365c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "378c7d80fae25cf828e38b2c8d45b237", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:59: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": "5924777c-aeeb-45bf-b969-a6181899bbe5", + "x-ms-client-request-id": "378c7d80fae25cf828e38b2c8d45b237", + "x-ms-correlation-request-id": "d437bf02-b55d-4f3f-97dd-22dce436a30b", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "adf63703-f56b-4ad5-bef8-1cbd35bd7af0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075930Z:d437bf02-b55d-4f3f-97dd-22dce436a30b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6535dd176beb7721b3ccbc7a57237a3e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "437d2930-8c0a-4fe0-8003-56563b345661", + "x-ms-client-request-id": "6535dd176beb7721b3ccbc7a57237a3e", + "x-ms-correlation-request-id": "ad24e7e4-c4d7-4293-8849-98cf2726c0b3", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "9c207c8d-292a-4581-9887-b5aeeaa33f02", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075931Z:ad24e7e4-c4d7-4293-8849-98cf2726c0b3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "858921ea4582335675ba4813e6c9c23d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "dc2d2332-8a6a-4ce0-863b-4f01fd67fc2b", + "x-ms-client-request-id": "858921ea4582335675ba4813e6c9c23d", + "x-ms-correlation-request-id": "96407f07-3f26-42e9-a4d1-d5ac14d7b63f", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "f3ce42b3-ba4f-4177-9231-d43c9180bc30", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075932Z:96407f07-3f26-42e9-a4d1-d5ac14d7b63f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a953cb0a8c9c14165b1584153d7e0505", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "73e29fa7-df8c-4d18-9113-c7a74e8fc287", + "x-ms-client-request-id": "a953cb0a8c9c14165b1584153d7e0505", + "x-ms-correlation-request-id": "88eb12c4-100c-414b-a7c9-92d3e289dca7", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "0351b414-d68f-4343-94fa-689ef5da0cd6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075934Z:88eb12c4-100c-414b-a7c9-92d3e289dca7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6b424d682dbbd1b58601f030220d90e9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:59: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": "e2b9fde1-fa83-478e-aa94-efcede6a5946", + "x-ms-client-request-id": "6b424d682dbbd1b58601f030220d90e9", + "x-ms-correlation-request-id": "23643ae9-be57-4fa8-ba56-b9bc7314b0d9", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "d1562ff7-3a56-4946-a7ef-5982926ec761", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075935Z:23643ae9-be57-4fa8-ba56-b9bc7314b0d9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8c6f7f09d1cf5da20b75296cc041f5f6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ab3d9d94-0c47-46bf-a9b2-66febc5ec441", + "x-ms-client-request-id": "8c6f7f09d1cf5da20b75296cc041f5f6", + "x-ms-correlation-request-id": "18f287f3-c055-45bd-a684-bdaf511b5207", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "2934ac7e-7e43-4845-80dc-427c9e8defe1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075936Z:18f287f3-c055-45bd-a684-bdaf511b5207" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "99ab43b45687dc811681239b9be5f14d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7aee070b-ae25-499a-bf1b-ce2e714a0495", + "x-ms-client-request-id": "99ab43b45687dc811681239b9be5f14d", + "x-ms-correlation-request-id": "4aea7f6b-9b21-4b90-86bc-f056d565a7d4", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "78d2aab8-0ca7-460a-a0f6-c7fb8d0707f1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075938Z:4aea7f6b-9b21-4b90-86bc-f056d565a7d4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "be0b9b85780e9736abe4604603481045", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "ba6843c2-d036-441a-a8e9-e79bbd5b74fe", + "x-ms-client-request-id": "be0b9b85780e9736abe4604603481045", + "x-ms-correlation-request-id": "b0400870-c244-4a83-aeb0-6977c63978c6", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "74a77d69-fd41-4794-96b3-e940349bf0fe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075939Z:b0400870-c244-4a83-aeb0-6977c63978c6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "df7bfa0bf662b361fd92764dad07c226", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "07984322-757d-48ab-b316-730d42c0bc5a", + "x-ms-client-request-id": "df7bfa0bf662b361fd92764dad07c226", + "x-ms-correlation-request-id": "f64bb56e-9a7b-433b-b399-3484dffca1f2", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "0faee0f3-25fc-487b-8acd-7fe1188f3b2b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075940Z:f64bb56e-9a7b-433b-b399-3484dffca1f2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "25e7db8337353ce70d13eea3f63ad9cd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b4055eb9-5fcc-4a35-a0dc-36e0f32dc152", + "x-ms-client-request-id": "25e7db8337353ce70d13eea3f63ad9cd", + "x-ms-correlation-request-id": "c84843c3-6b36-4abf-a747-ac60d68541a9", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "19a1d3db-e599-425b-9efb-8fbd97fc670d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075941Z:c84843c3-6b36-4abf-a747-ac60d68541a9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a18fde7112698eeb3a58c17b02e8e9a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f663a28f-f4b9-4ac3-815d-90e6516057db", + "x-ms-client-request-id": "a18fde7112698eeb3a58c17b02e8e9a4", + "x-ms-correlation-request-id": "1d626502-6112-4faa-a5a1-a276fb3a01fb", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "e9b1fb2a-2bff-4da0-960d-efa5cc6804bf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075943Z:1d626502-6112-4faa-a5a1-a276fb3a01fb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "28c33a22eb61d40f123fd24e08bebdc2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7cdbf1ae-c0d1-4286-9d92-cb8383f64abd", + "x-ms-client-request-id": "28c33a22eb61d40f123fd24e08bebdc2", + "x-ms-correlation-request-id": "38f888e6-cdd5-4ea2-aab5-27d0129df7c9", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "6b215c19-9b4a-425a-9f30-2408becebe37", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075945Z:38f888e6-cdd5-4ea2-aab5-27d0129df7c9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cfdca9b9207771bcef58ebdc756b3924", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0ec2cf9f-e2a4-4d91-8c69-6dfe50ebcbe7", + "x-ms-client-request-id": "cfdca9b9207771bcef58ebdc756b3924", + "x-ms-correlation-request-id": "b613bfab-ab18-4546-9a2d-74ac805349c8", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "fcb7f20f-0813-428e-8a78-daa8bb5ac6f3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075946Z:b613bfab-ab18-4546-9a2d-74ac805349c8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bb80492ab177856bcebb8e293f9d857b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8cd56ea2-40bf-4826-843d-b6ed7fe8b5f7", + "x-ms-client-request-id": "bb80492ab177856bcebb8e293f9d857b", + "x-ms-correlation-request-id": "90e6805e-b8e2-48ec-b493-2decd1403687", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "e21d785f-7d9e-48c7-992f-2cebfe72dcf7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075947Z:90e6805e-b8e2-48ec-b493-2decd1403687" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "59c2fe9b1a0c012c7d513808ff325ea6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d42ea3a2-17d4-443c-a1a5-52606508c0ff", + "x-ms-client-request-id": "59c2fe9b1a0c012c7d513808ff325ea6", + "x-ms-correlation-request-id": "0ee898ae-a082-48f1-9ad4-0bf6258bf040", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "3b4f1da3-8467-41c0-a38a-36c57bc22106", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075948Z:0ee898ae-a082-48f1-9ad4-0bf6258bf040" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "be24ae06013d084b3d5601bc91933152", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2512563c-e8a2-4b23-a39f-ac1f239da9df", + "x-ms-client-request-id": "be24ae06013d084b3d5601bc91933152", + "x-ms-correlation-request-id": "06f81344-c93b-4d8a-bf71-32bc693ec483", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "7a265bd5-8682-4788-8fc4-1e68a62b0775", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075950Z:06f81344-c93b-4d8a-bf71-32bc693ec483" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "77416fd3e0a90f181c7f3d257862869b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d1f8944c-3ee0-438e-bca4-0624f1b11677", + "x-ms-client-request-id": "77416fd3e0a90f181c7f3d257862869b", + "x-ms-correlation-request-id": "0c1e9348-31bc-4ce4-ae52-303d34c8afef", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "71c721ff-9696-4210-89df-7025076ed577", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075951Z:0c1e9348-31bc-4ce4-ae52-303d34c8afef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9122e85cc778993eb3b91bb519706fe9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7cf8e005-8646-45e8-adc2-1ddd72c4b3ef", + "x-ms-client-request-id": "9122e85cc778993eb3b91bb519706fe9", + "x-ms-correlation-request-id": "81bd8073-9983-4512-b568-5a1f329adf4f", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "81a2d8c4-e9bf-4b48-a48f-f180c1ed6dfe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075952Z:81bd8073-9983-4512-b568-5a1f329adf4f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9035e520e6f126fd9514a1bdc32590db", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8482993f-1037-46bf-9d91-ce5dde01f794", + "x-ms-client-request-id": "9035e520e6f126fd9514a1bdc32590db", + "x-ms-correlation-request-id": "bfce73d8-7ce4-41a0-8b58-efdc4d4aba7e", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "0b74fb3e-c10a-4611-b63f-2bfe20f4089f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075954Z:bfce73d8-7ce4-41a0-8b58-efdc4d4aba7e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a95f65d0a0700cd930a7c4f0c462f6ac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "266eccc4-5c82-4ac4-a3bd-babe5345e5ec", + "x-ms-client-request-id": "a95f65d0a0700cd930a7c4f0c462f6ac", + "x-ms-correlation-request-id": "7f69055a-3c38-4b56-a27f-101c9a0b2f79", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "c521a0c4-54f3-4e5c-90f8-2141a86391ef", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075955Z:7f69055a-3c38-4b56-a27f-101c9a0b2f79" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9205530ff52c75a9eafcfb642580d58e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2094e161-b990-4570-a46b-6427fc6139eb", + "x-ms-client-request-id": "9205530ff52c75a9eafcfb642580d58e", + "x-ms-correlation-request-id": "cffa695d-81c7-4baf-8f3a-42e9ff3b52ef", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "36fddd51-4bb9-45e5-b3d9-fdb6b88317e7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075956Z:cffa695d-81c7-4baf-8f3a-42e9ff3b52ef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b3e54029c61180790c295f49220d6133", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:59: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": "4e86a765-21a5-476b-a3ea-75864ccda319", + "x-ms-client-request-id": "b3e54029c61180790c295f49220d6133", + "x-ms-correlation-request-id": "e7e541aa-7025-4964-9e66-3beb7d75745e", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "7de48272-f019-44bf-8a65-6aa65ae8adbf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075957Z:e7e541aa-7025-4964-9e66-3beb7d75745e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6faef51dfd1fdaaebbe9be74a475e6af", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "aa663878-d83d-4817-8570-75a6a0f0b23b", + "x-ms-client-request-id": "6faef51dfd1fdaaebbe9be74a475e6af", + "x-ms-correlation-request-id": "0be15085-2715-440c-9bfc-1396c9800cb5", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "4d1a7d93-da7b-432f-b39b-16ba5e206714", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075959Z:0be15085-2715-440c-9bfc-1396c9800cb5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "83c636d1437d499ada858603966053dd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "fcc17597-398b-4ebf-a790-bf73d73d4f2f", + "x-ms-client-request-id": "83c636d1437d499ada858603966053dd", + "x-ms-correlation-request-id": "1ae1e652-ad14-4d91-a6f5-526a7a5d7702", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "a2232b48-6e94-4fe2-91cf-1302bd6045d5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080000Z:1ae1e652-ad14-4d91-a6f5-526a7a5d7702" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2f46c89a66d22c6e920af7280704db97", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1f4a4b99-c0ec-49ac-beed-081b15b92fa7", + "x-ms-client-request-id": "2f46c89a66d22c6e920af7280704db97", + "x-ms-correlation-request-id": "b55a8771-dc98-4546-8ae9-4d54f896d543", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "e21e130e-e72f-4040-9e73-9f4537a915d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080002Z:b55a8771-dc98-4546-8ae9-4d54f896d543" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ec78af42dd46dab55b65959a76ab445b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 08:00: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": "4a733063-d11c-4f8c-8ac6-522e96ccf7f5", + "x-ms-client-request-id": "ec78af42dd46dab55b65959a76ab445b", + "x-ms-correlation-request-id": "85c3859f-6f69-44f3-a6b2-efa795b78430", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "099873c0-996c-4677-afe0-acb67bde30a0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080003Z:85c3859f-6f69-44f3-a6b2-efa795b78430" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dcd9e195b72e6bddc79af1724b7241d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f626838a-33b3-4a20-ab56-f87f8431adbd", + "x-ms-client-request-id": "dcd9e195b72e6bddc79af1724b7241d5", + "x-ms-correlation-request-id": "5e0ccb13-25fb-4c50-b687-e09cceedc23b", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "7e944ab6-c3df-478b-b231-6090199086ff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080005Z:5e0ccb13-25fb-4c50-b687-e09cceedc23b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e6c0efa967e7bd96126cd36cd0d4b5e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "293be090-1d53-46b8-a4f0-e087c8fed639", + "x-ms-client-request-id": "e6c0efa967e7bd96126cd36cd0d4b5e7", + "x-ms-correlation-request-id": "94fbfdcf-58c6-46ea-b65d-c4424f4faad9", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "fe3980ae-6678-4819-a9c1-cbcc3567b307", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080006Z:94fbfdcf-58c6-46ea-b65d-c4424f4faad9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "26929cc6ff2b8b68d20c24acec438ee9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "17efb6ce-1700-4f26-ae05-cabe1fc232e8", + "x-ms-client-request-id": "26929cc6ff2b8b68d20c24acec438ee9", + "x-ms-correlation-request-id": "3ce3933e-985f-48f3-8189-b22544cb7ac0", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "39616975-6a5b-4db2-b533-545479c79a5c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080008Z:3ce3933e-985f-48f3-8189-b22544cb7ac0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "87f0bf235deb2e734a1bc9c1e3709af3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0788b2a9-711e-45ab-901a-d504aa70c0e3", + "x-ms-client-request-id": "87f0bf235deb2e734a1bc9c1e3709af3", + "x-ms-correlation-request-id": "62c57a22-bf95-4fa2-b149-45e6355dfa49", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "7aa966c1-db72-4e37-8bf4-d13a0dec319b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080009Z:62c57a22-bf95-4fa2-b149-45e6355dfa49" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "afac0ae41bdfaaa9863414db42ead0cf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d8435c3c-f5fd-464f-89b7-73ed331a1c2c", + "x-ms-client-request-id": "afac0ae41bdfaaa9863414db42ead0cf", + "x-ms-correlation-request-id": "ffde5b11-153e-4d83-bee1-51794e70e8a1", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "767bd36d-f2a1-4b69-9865-01fe16067b20", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080011Z:ffde5b11-153e-4d83-bee1-51794e70e8a1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1149eadd2ee469fc2864db0f35a7a761", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 08:00: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": "0b9b5706-2941-4fc9-b1e2-d236bd5d850a", + "x-ms-client-request-id": "1149eadd2ee469fc2864db0f35a7a761", + "x-ms-correlation-request-id": "ee4a5384-7d35-4f3b-9f78-d75a9faafa25", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "dd7013eb-f417-434d-b7bb-26719264468b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080012Z:ee4a5384-7d35-4f3b-9f78-d75a9faafa25" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e1c73171df97080a154600b64898eb60", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "96291777-1560-46b9-b2ef-ca0e1bccf86f", + "x-ms-client-request-id": "e1c73171df97080a154600b64898eb60", + "x-ms-correlation-request-id": "c0a54afe-e9f4-42c6-9db3-734dc8d7ee17", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "9226ec04-de4c-4c35-8616-7d6ac5af2101", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080013Z:c0a54afe-e9f4-42c6-9db3-734dc8d7ee17" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f9e3fa4b8927b60e0e42867b3f9a74df", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "41282b9a-b503-4be8-a5ba-635833b89438", + "x-ms-client-request-id": "f9e3fa4b8927b60e0e42867b3f9a74df", + "x-ms-correlation-request-id": "b38b46a9-390e-455c-8c36-5e35ccd4ef27", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "487ddce3-0456-4056-af0a-1e72196f318d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080014Z:b38b46a9-390e-455c-8c36-5e35ccd4ef27" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1169b38def22fd37e040fc9d2d45208f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ab89bb8c-ded5-4e48-8e01-410cdfd044d1", + "x-ms-client-request-id": "1169b38def22fd37e040fc9d2d45208f", + "x-ms-correlation-request-id": "17f134a0-b363-4a6f-84fb-ccc264fe40a7", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "ddf7e2cc-04e8-4b44-818a-32bb4e87946c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080016Z:17f134a0-b363-4a6f-84fb-ccc264fe40a7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3ac47b78aec3e8392211d354598ec97b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5e9075aa-0697-45df-80ee-fe0e9c4530dd", + "x-ms-client-request-id": "3ac47b78aec3e8392211d354598ec97b", + "x-ms-correlation-request-id": "7e8064d3-f980-42a8-b443-3254770f2b76", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "a8c28292-fb38-41f8-97db-eab7e1b4de92", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080017Z:7e8064d3-f980-42a8-b443-3254770f2b76" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "952921d1da2f5b3ec3e618e78c7088c8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7e8296ff-f9fb-425c-a151-4ddc852f3958", + "x-ms-client-request-id": "952921d1da2f5b3ec3e618e78c7088c8", + "x-ms-correlation-request-id": "1febf934-6232-4686-9689-f5dd040a872c", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "ecea647a-6ec4-4c0c-9601-ea93432cb550", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080018Z:1febf934-6232-4686-9689-f5dd040a872c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c303f62239d5de1b7980ee101be3a451", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 08:00: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": "e773df7f-f338-4b44-9656-ca4b5c763314", + "x-ms-client-request-id": "c303f62239d5de1b7980ee101be3a451", + "x-ms-correlation-request-id": "a82330da-a7d6-4395-9af3-376a393a7eb5", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "13c85a13-da91-4faa-baff-be7c1657f177", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080020Z:a82330da-a7d6-4395-9af3-376a393a7eb5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0ccc80778b1c9d603d6877dd96525bb1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9322935a-31f9-4918-8d02-52ef0511dff6", + "x-ms-client-request-id": "0ccc80778b1c9d603d6877dd96525bb1", + "x-ms-correlation-request-id": "9c83f823-f297-40c8-9dad-6a6b0d706166", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "1e3d405e-9f32-4fc5-90dc-59302bc35abf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080021Z:9c83f823-f297-40c8-9dad-6a6b0d706166" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "62320b89058b98a5054a1baeec2d40df", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "cb450d5f-58e9-421f-9201-45c1d591aaf1", + "x-ms-client-request-id": "62320b89058b98a5054a1baeec2d40df", + "x-ms-correlation-request-id": "7243706f-22ea-4c0c-8ada-0a374552cd79", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "87a01606-100e-4003-9a86-c8511f343796", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080022Z:7243706f-22ea-4c0c-8ada-0a374552cd79" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0b6fc6427ca496ab9665866cc13e4826", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e959edca-c4a9-4df3-89c5-f523179f5eae", + "x-ms-client-request-id": "0b6fc6427ca496ab9665866cc13e4826", + "x-ms-correlation-request-id": "965f68b2-27c0-4cb1-aadd-9df3fd224ae5", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "cf7e76d9-3cb8-434b-80c2-39cd3d445f2d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080024Z:965f68b2-27c0-4cb1-aadd-9df3fd224ae5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "10873d2441b072c6db3406d270b1b10f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8484d9ca-7975-4456-9028-93ed8fb71e61", + "x-ms-client-request-id": "10873d2441b072c6db3406d270b1b10f", + "x-ms-correlation-request-id": "b3b4c014-0eb7-4773-a34e-5b916e48d888", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "0bd0e715-618a-4ffe-aa2f-a3aaa08e3392", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080025Z:b3b4c014-0eb7-4773-a34e-5b916e48d888" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cf9b98284fe30d0c5f9bcc267e39d6c7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6dcbcd41-7e27-4089-a7b0-540c66ba4fb0", + "x-ms-client-request-id": "cf9b98284fe30d0c5f9bcc267e39d6c7", + "x-ms-correlation-request-id": "76eeb5f8-c5c2-41eb-bdb5-c602eb4f15fb", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "32449d74-6cc1-432b-8199-db9e72c43fb4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080026Z:76eeb5f8-c5c2-41eb-bdb5-c602eb4f15fb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "af8af40230a6002e00fc307075d926e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f952a16b-e3da-4502-b09b-bc7d0bbdba9f", + "x-ms-client-request-id": "af8af40230a6002e00fc307075d926e4", + "x-ms-correlation-request-id": "8550d43e-c4a0-43a8-9b2a-9cc62dc1e87d", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "2d66cbe9-8405-4224-8ea4-1aca167907d3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080027Z:8550d43e-c4a0-43a8-9b2a-9cc62dc1e87d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "294476b378a3d443307ab014749ff4a1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e0202e56-83bb-4656-bf18-d69766a96cae", + "x-ms-client-request-id": "294476b378a3d443307ab014749ff4a1", + "x-ms-correlation-request-id": "c1f9b31e-58e1-4a1e-9b1f-733a4c15900c", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "74f188f0-7fb5-4114-af23-c89f047a771b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080029Z:c1f9b31e-58e1-4a1e-9b1f-733a4c15900c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7bcf3f5d0227f869699acee61e9c9786", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "042523ed-a359-40d6-9490-d1f16ad16f2b", + "x-ms-client-request-id": "7bcf3f5d0227f869699acee61e9c9786", + "x-ms-correlation-request-id": "b628bd1d-b677-4ad6-bb35-5e8caac4f821", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "7ff4a2a7-ca37-43c4-a5c8-09939f61e2d3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080030Z:b628bd1d-b677-4ad6-bb35-5e8caac4f821" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0772e875adf58924b1b57f2c801a8c60", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 08:00: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": "47c1583d-9726-4caa-83f9-b13acc1337f8", + "x-ms-client-request-id": "0772e875adf58924b1b57f2c801a8c60", + "x-ms-correlation-request-id": "5517719c-da86-4413-8079-91ba9047fd9f", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "0604b99c-eeca-4353-9da3-b5baf1344a0f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080032Z:5517719c-da86-4413-8079-91ba9047fd9f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "35128e08aa09b1bd0d4cc008aa5cb593", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7579fa95-7e76-4c65-9cc2-e2f6570483cf", + "x-ms-client-request-id": "35128e08aa09b1bd0d4cc008aa5cb593", + "x-ms-correlation-request-id": "4b2577ed-76bc-43c9-83c2-d0cc70cda81c", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "0fcf5198-5ab7-4ac6-a21c-489dc05b8eb5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080033Z:4b2577ed-76bc-43c9-83c2-d0cc70cda81c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8b9f29e2ec2db0ac1b46ca71833d774f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f076f4a6-7ad4-41ce-91c0-dcbd4b14029f", + "x-ms-client-request-id": "8b9f29e2ec2db0ac1b46ca71833d774f", + "x-ms-correlation-request-id": "cecfd65d-24b0-441a-849a-5d33fcea5ecd", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "b239153a-5969-4c90-bfef-431bb1d9a387", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080034Z:cecfd65d-24b0-441a-849a-5d33fcea5ecd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "90dd6d0e618aca7d2bc0faa8ed1bdf54", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2668fac5-ac8d-49f3-a532-07a81058bc0e", + "x-ms-client-request-id": "90dd6d0e618aca7d2bc0faa8ed1bdf54", + "x-ms-correlation-request-id": "a29a79ed-5802-4a90-b9c8-882e2eeaf0fb", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "4d45d565-f893-42e5-985e-b2a482a69955", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080036Z:a29a79ed-5802-4a90-b9c8-882e2eeaf0fb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5649ebff007a1c33e2611ac3e04b2ed0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 08:00: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": "1d31ac6b-268c-481d-b146-ad066ac3c6dc", + "x-ms-client-request-id": "5649ebff007a1c33e2611ac3e04b2ed0", + "x-ms-correlation-request-id": "9ee31ee4-9cb5-4573-847a-5c746cdea52a", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "2ed5d5e5-441d-4148-a9b7-1afc9fcca2c4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080037Z:9ee31ee4-9cb5-4573-847a-5c746cdea52a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3cfa70d4257f8009abd4606cf203c3ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d0146ec0-12f5-45c3-ac0d-e68314f98af8", + "x-ms-client-request-id": "3cfa70d4257f8009abd4606cf203c3ff", + "x-ms-correlation-request-id": "6d1c361e-8819-4315-bbb5-6719cdf94533", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "f8a7fae8-6e4a-44f0-89e4-832366fcce7d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080038Z:6d1c361e-8819-4315-bbb5-6719cdf94533" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9772756621f30dd43ac1ad2847bae9e0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "02b300c6-2ea3-4183-b933-030620a92956", + "x-ms-client-request-id": "9772756621f30dd43ac1ad2847bae9e0", + "x-ms-correlation-request-id": "d0865630-9158-4e24-ab4a-e463d73e6d1d", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "84bea9c3-80db-4a40-a884-b498fa54ec2b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080040Z:d0865630-9158-4e24-ab4a-e463d73e6d1d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7cd42992a321d9d5e2c8aaa69fc629de", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 08: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": "9d42cfd7-03d9-4db1-a6f0-9c011d55c7f6", + "x-ms-client-request-id": "7cd42992a321d9d5e2c8aaa69fc629de", + "x-ms-correlation-request-id": "9819f682-d51c-4a27-8355-e0f4dc673fa1", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "4522bc34-42ba-408b-9213-20fab672268d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080041Z:9819f682-d51c-4a27-8355-e0f4dc673fa1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6a5c1a9e96d8b3dc9cec01bd77e039f1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f1f3cce7-7286-4d40-be31-e73483401230", + "x-ms-client-request-id": "6a5c1a9e96d8b3dc9cec01bd77e039f1", + "x-ms-correlation-request-id": "20352963-aa80-40dd-93a8-3fcf73558bf2", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "96302337-bb7a-41c2-95d9-7bdb640e4d88", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080042Z:20352963-aa80-40dd-93a8-3fcf73558bf2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c8da80ea472fc3dea098b52a762e6d74", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1d3aa53f-084f-4202-9695-c2c0f59eaef9", + "x-ms-client-request-id": "c8da80ea472fc3dea098b52a762e6d74", + "x-ms-correlation-request-id": "532febc9-b379-4859-a3d8-090a092b1f57", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "12ca5c0b-2447-426e-a0e7-4c2b2287b794", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080044Z:532febc9-b379-4859-a3d8-090a092b1f57" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2c8acf977f5efb074d21df34a1176102", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 08: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": "57ebed88-cf73-45b9-9315-b443b8d9af32", + "x-ms-client-request-id": "2c8acf977f5efb074d21df34a1176102", + "x-ms-correlation-request-id": "71b8a8ba-c8f1-486b-8dd9-f58979261489", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "6a21e1d7-418d-4405-addc-95ef57607136", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080045Z:71b8a8ba-c8f1-486b-8dd9-f58979261489" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1fbbb98e61eb56ae3c98ca40e1b13d6e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "01844655-8b90-4c2f-a91e-cdd293c38725", + "x-ms-client-request-id": "1fbbb98e61eb56ae3c98ca40e1b13d6e", + "x-ms-correlation-request-id": "e4cdc824-4315-4f76-a33d-951ada7e3c3d", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "b70d187b-fdf4-4fd6-9758-80daa85de124", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080046Z:e4cdc824-4315-4f76-a33d-951ada7e3c3d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a8268d7f0d566b9379de7b0d68aa2289", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "08dbac75-1180-4fc0-b341-c45cad4d5353", + "x-ms-client-request-id": "a8268d7f0d566b9379de7b0d68aa2289", + "x-ms-correlation-request-id": "0685e509-843f-48ab-98a0-3742cb526bbe", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "b1a47f92-0777-45b0-968a-951bc340a21e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080048Z:0685e509-843f-48ab-98a0-3742cb526bbe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bc9cb2364e7335882033f0c5b4c61a9b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3f3b4e69-6824-4274-a65d-5a04358ad5b8", + "x-ms-client-request-id": "bc9cb2364e7335882033f0c5b4c61a9b", + "x-ms-correlation-request-id": "035dc2e8-193f-4e53-ad47-eaa108ea85e1", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "1a248289-8a57-4711-8342-4c444320355d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080049Z:035dc2e8-193f-4e53-ad47-eaa108ea85e1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "13b571e4b9f080ac264fa50de6a0ee91", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 08: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": "fc3c2f5b-cacb-402b-b598-8346f7a28b3b", + "x-ms-client-request-id": "13b571e4b9f080ac264fa50de6a0ee91", + "x-ms-correlation-request-id": "ca2025ee-9294-4c6b-874f-d5dbd2429774", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "f41c3577-923d-42be-ae9d-01bb8f162cc0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080050Z:ca2025ee-9294-4c6b-874f-d5dbd2429774" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2e094075801530fb05f087221dcdb6b2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "93837513-6ecd-4d1d-86c9-9bcb5a063e6c", + "x-ms-client-request-id": "2e094075801530fb05f087221dcdb6b2", + "x-ms-correlation-request-id": "765bc7a3-2a55-477d-8478-12a3aa20c952", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "8636f2bb-258f-42ea-9f9e-7b3402a6676b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080052Z:765bc7a3-2a55-477d-8478-12a3aa20c952" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f629e0c40ef57c99061b9623a87a4f7f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "343db656-e39d-46de-ac6b-c5c148d9cbc5", + "x-ms-client-request-id": "f629e0c40ef57c99061b9623a87a4f7f", + "x-ms-correlation-request-id": "341fc211-a06a-4831-885f-3acbd70b3511", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "0ab9f4f4-1391-45c1-bfd9-fc6d0a9de620", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080053Z:341fc211-a06a-4831-885f-3acbd70b3511" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "74505e45ebbd638576840eff328a6358", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 08: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": "bdcaf1ff-227f-401f-9437-3918ac64c3d0", + "x-ms-client-request-id": "74505e45ebbd638576840eff328a6358", + "x-ms-correlation-request-id": "6811c29b-a591-4ed5-b57f-8a3d06fa89b0", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "ce64c8f6-d5ec-4055-8a77-5c8070116856", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080054Z:6811c29b-a591-4ed5-b57f-8a3d06fa89b0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0648f398f777679ba78c28faead7878a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a76d350d-e06d-40de-874e-306376ebec5b", + "x-ms-client-request-id": "0648f398f777679ba78c28faead7878a", + "x-ms-correlation-request-id": "e51bd6bb-8f81-4865-baf6-942547181385", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "68182bf6-4d4d-4218-a803-e5016cfa6484", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080055Z:e51bd6bb-8f81-4865-baf6-942547181385" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bedc07a0427dd8f55ac58070ff994a7c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b042b00b-0b24-4717-b70a-1bb4f2a658ca", + "x-ms-client-request-id": "bedc07a0427dd8f55ac58070ff994a7c", + "x-ms-correlation-request-id": "15f9ac6f-ac6b-40b8-b716-b41778fd521d", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "a2756822-f7bb-4a1b-863b-96c8bcbe79f3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080057Z:15f9ac6f-ac6b-40b8-b716-b41778fd521d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b58a3db749314e08c3e8cc30c38b799e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 08: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": "5d3cebb7-53f1-4597-a707-a71ae6389d57", + "x-ms-client-request-id": "b58a3db749314e08c3e8cc30c38b799e", + "x-ms-correlation-request-id": "6811c05a-bea2-44ed-ad71-5b51db8e4fd0", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "18d40933-9340-4c39-a071-d8c8e9acc42a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080058Z:6811c05a-bea2-44ed-ad71-5b51db8e4fd0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2b5f84fda4ad56dbfd70abb1772a670e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f6024dba-cc9c-4ec6-bcc8-04f804486ed7", + "x-ms-client-request-id": "2b5f84fda4ad56dbfd70abb1772a670e", + "x-ms-correlation-request-id": "30eacadc-e94b-466c-8a6d-12f340c0603e", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "6d2dba27-5021-4b93-b049-a11e3a024542", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080059Z:30eacadc-e94b-466c-8a6d-12f340c0603e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ac42ab42d14d5658fe8efb9476c515ce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "526c90d0-85bf-4544-8837-390935835df2", + "x-ms-client-request-id": "ac42ab42d14d5658fe8efb9476c515ce", + "x-ms-correlation-request-id": "061bd10b-183b-461e-9350-3edd71bb7c04", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "2ba99d17-a5a6-44a4-b38c-e4480d4c8f8d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080101Z:061bd10b-183b-461e-9350-3edd71bb7c04" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7b73e24b1f3913ce6134b8c19d57d698", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 08: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": "d10306bf-3ed8-4548-a3b8-62628f4fa9d8", + "x-ms-client-request-id": "7b73e24b1f3913ce6134b8c19d57d698", + "x-ms-correlation-request-id": "d029744b-5975-4b5b-b9f1-6a99b45dfe00", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "b2f67189-bab4-4222-8697-ad57e628653a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080102Z:d029744b-5975-4b5b-b9f1-6a99b45dfe00" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "17eebd81cd492b502c082c1fa847e038", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e7669c3b-1371-4bcc-b1ef-ab5d88c9c531", + "x-ms-client-request-id": "17eebd81cd492b502c082c1fa847e038", + "x-ms-correlation-request-id": "00b6604a-1ffc-4a4d-9853-38b598419af5", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "e805e9ed-5831-407a-98db-ca8cf386afa9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080103Z:00b6604a-1ffc-4a4d-9853-38b598419af5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9465dd5aecb722d4dc2f4b191996b9a7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ebcc3a47-1c19-4e2f-b817-c3f58bcdd70c", + "x-ms-client-request-id": "9465dd5aecb722d4dc2f4b191996b9a7", + "x-ms-correlation-request-id": "f516f2ce-dce1-4541-abc0-45e638e73cb3", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "346f5825-02b3-41fd-b7ce-f23b6d678fed", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080105Z:f516f2ce-dce1-4541-abc0-45e638e73cb3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b81363b7fdd67e8491484e31f2af6a1a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 08:01: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": "97696274-fa1d-4777-b435-a850c11be22f", + "x-ms-client-request-id": "b81363b7fdd67e8491484e31f2af6a1a", + "x-ms-correlation-request-id": "970c6c29-57d5-4804-b69d-b300cf676af6", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "1e6b7e4d-228a-4632-8b3b-845f548228be", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080106Z:970c6c29-57d5-4804-b69d-b300cf676af6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c0677f5441f194e1e9cb3a1a82371195", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 08: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": "20ebad45-d103-4193-b68a-de77e90c9351", + "x-ms-client-request-id": "c0677f5441f194e1e9cb3a1a82371195", + "x-ms-correlation-request-id": "ff0102e2-ec2a-43cf-9b5c-ddbba9719603", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "3d6fc14f-9458-4b64-90ae-c4fd75332520", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080107Z:ff0102e2-ec2a-43cf-9b5c-ddbba9719603" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4568844f27335d6159e6036e9da22f2d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "47b4fe20-f0f8-49af-9470-bc61ca1ccd57", + "x-ms-client-request-id": "4568844f27335d6159e6036e9da22f2d", + "x-ms-correlation-request-id": "297ea9bf-9b5c-4f15-a828-07064928ee2b", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "e63f1852-7d75-42ff-ab5b-40cf4636b3ed", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080109Z:297ea9bf-9b5c-4f15-a828-07064928ee2b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9ac530c4f82f75b6827ece0bc369fc59", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a9f955cc-23a7-49d9-b3cd-3c584335cd8f", + "x-ms-client-request-id": "9ac530c4f82f75b6827ece0bc369fc59", + "x-ms-correlation-request-id": "79d806c9-1d17-472d-8f36-f98cd87cc78a", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "98a6950b-f0e3-4406-afcf-e145d01ad30f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080110Z:79d806c9-1d17-472d-8f36-f98cd87cc78a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6de2b83624472ce61d0a660a3e72f646", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 08:01: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": "73cafecd-f737-4fcd-b98f-66c9519bff0f", + "x-ms-client-request-id": "6de2b83624472ce61d0a660a3e72f646", + "x-ms-correlation-request-id": "0de4b2c4-82d2-46b4-9164-09f5ec075295", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "8adc6b8a-095c-4fc7-9af6-a08cd5b4a432", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080111Z:0de4b2c4-82d2-46b4-9164-09f5ec075295" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "51550c9b77715666cef2c2b4585699ef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ebaf5139-6c85-4d77-9bf1-b89589c59640", + "x-ms-client-request-id": "51550c9b77715666cef2c2b4585699ef", + "x-ms-correlation-request-id": "4b4e60fc-59d5-4552-b2bf-73469f3dd891", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "038582d5-0294-48a7-908c-a2da5334c612", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080113Z:4b4e60fc-59d5-4552-b2bf-73469f3dd891" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e538a9e9c2c09fe649997c2592ab3710", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e6a4517b-17f8-497d-82f1-eb56cb1d0ab1", + "x-ms-client-request-id": "e538a9e9c2c09fe649997c2592ab3710", + "x-ms-correlation-request-id": "fc897b76-21fa-4298-adbf-8e29f48d25aa", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "1c0d4c67-f429-485c-93f9-caa2e78d1376", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080114Z:fc897b76-21fa-4298-adbf-8e29f48d25aa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b66f8887ab14bee8528c9f546231d3c6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "73ec7b2f-fdf1-4500-8c0f-9ee138ced9ec", + "x-ms-client-request-id": "b66f8887ab14bee8528c9f546231d3c6", + "x-ms-correlation-request-id": "c0a22fe1-daac-4a4b-81f1-5cdff176e039", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "44762bed-270b-48c3-a611-e87915c0da4e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080116Z:c0a22fe1-daac-4a4b-81f1-5cdff176e039" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "942077701139d98626b507d8fb41c322", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 08: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": "a16fa941-0905-4fd0-ab85-5a8c85f7da99", + "x-ms-client-request-id": "942077701139d98626b507d8fb41c322", + "x-ms-correlation-request-id": "8dfec2c9-c2fd-4648-8eb6-73baf3eeeb91", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "80558775-f6ec-45a6-b46d-92719e35e1da", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080117Z:8dfec2c9-c2fd-4648-8eb6-73baf3eeeb91" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d02db2bbe3e63edbc179923322923d17", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "bdd93acc-271e-4ee7-9fc8-d91d65539b27", + "x-ms-client-request-id": "d02db2bbe3e63edbc179923322923d17", + "x-ms-correlation-request-id": "f7c86cd3-22fc-4f24-8e18-090e4c68eb2b", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "57757782-6969-4c53-9242-5fd39e89db62", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080118Z:f7c86cd3-22fc-4f24-8e18-090e4c68eb2b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1ab5b5c5a28b76d602968f5ea30fc310", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "df74698d-96bb-4731-b971-d8beb19ccbe2", + "x-ms-client-request-id": "1ab5b5c5a28b76d602968f5ea30fc310", + "x-ms-correlation-request-id": "db4ad79f-3af5-40f1-85e1-aece23fd71e8", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "911b031a-dc0b-4880-a1d5-ae182ca5641f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080120Z:db4ad79f-3af5-40f1-85e1-aece23fd71e8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "af987cc803048ce09ce2d3c07e52b694", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 08:01: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": "dbe87d1f-eb8a-4dae-af87-d5f5645a5f68", + "x-ms-client-request-id": "af987cc803048ce09ce2d3c07e52b694", + "x-ms-correlation-request-id": "75ac7b45-506f-4bbc-a735-157999eea67d", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "733ddf62-07d0-4dfe-86cb-2a16dfec4067", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080121Z:75ac7b45-506f-4bbc-a735-157999eea67d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4513ef77a88b1997dcb6ce50547c9ab2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8940ad18-61b0-4df9-9be1-3a8bf1f0043d", + "x-ms-client-request-id": "4513ef77a88b1997dcb6ce50547c9ab2", + "x-ms-correlation-request-id": "7c971f2d-e6f9-454a-bccb-7d2b9d90c2f7", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "844a6434-1a1e-4940-a22b-4487057b1d37", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080122Z:7c971f2d-e6f9-454a-bccb-7d2b9d90c2f7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a66b81b68ef9c212d5297ea9cf16f7af", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "eb739fac-161b-415e-ae37-c90b43d495dd", + "x-ms-client-request-id": "a66b81b68ef9c212d5297ea9cf16f7af", + "x-ms-correlation-request-id": "a440859b-07d5-4488-94f7-bc79e17ec125", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "44aa3853-86c5-4166-86a2-4488a47dea5e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080123Z:a440859b-07d5-4488-94f7-bc79e17ec125" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b3e6fbdf7efb1f84e47fd34d348f371f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "fcb4e7cd-1bfc-4a9a-ab06-70a6543ed29e", + "x-ms-client-request-id": "b3e6fbdf7efb1f84e47fd34d348f371f", + "x-ms-correlation-request-id": "926893e0-bbaf-4f9a-bc30-b63efb66f1c9", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "456dabbe-c5fa-4ca7-b4a3-22a0f9ebe417", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080125Z:926893e0-bbaf-4f9a-bc30-b63efb66f1c9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fd0a204710e6e99bdc506f622aee4ac6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "cce635f1-5463-4fd3-8bfb-d0ff426e92bb", + "x-ms-client-request-id": "fd0a204710e6e99bdc506f622aee4ac6", + "x-ms-correlation-request-id": "4c34dea5-ae75-493b-8850-23c3f554f326", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "6a7f6612-3693-4a10-8642-be60ea01fe14", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080126Z:4c34dea5-ae75-493b-8850-23c3f554f326" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "59701ebfe79537b6fc4cc179bbc58d45", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 08: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": "5cd6f5f4-98c1-4bf5-b436-2be897a95da4", + "x-ms-client-request-id": "59701ebfe79537b6fc4cc179bbc58d45", + "x-ms-correlation-request-id": "85d6be02-fb62-4d78-a44d-fa180069d7d6", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "0329024a-8d9a-480f-84aa-b0204b616686", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080128Z:85d6be02-fb62-4d78-a44d-fa180069d7d6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ae625ff1fa0bcfc95ffdd6ab0e22f5f6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "70d94384-8d89-4159-9280-d6995ae73af5", + "x-ms-client-request-id": "ae625ff1fa0bcfc95ffdd6ab0e22f5f6", + "x-ms-correlation-request-id": "76a12b17-9956-4979-8f89-63d57803f7d0", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "89b29a2c-29d4-4f0d-ac61-e2048f548bce", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080129Z:76a12b17-9956-4979-8f89-63d57803f7d0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "168e0c35de1e5f896ad2009a4f212d17", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f66479c7-5faf-423b-9b27-47ea5992ce00", + "x-ms-client-request-id": "168e0c35de1e5f896ad2009a4f212d17", + "x-ms-correlation-request-id": "dc54cb40-6308-4081-ad49-f4a92b6a930f", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "bd0bac76-ddd1-49c0-8396-f2377e5a4808", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080131Z:dc54cb40-6308-4081-ad49-f4a92b6a930f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cb712ac39b8cc5ba55a1f998100b29da", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f34265c4-a3c5-46f8-a25e-b4dd5c34bd6a", + "x-ms-client-request-id": "cb712ac39b8cc5ba55a1f998100b29da", + "x-ms-correlation-request-id": "3ae4c78c-1b46-44e0-9ad7-7a26582b59ff", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "37f6f5ac-44d2-4635-8f61-8608f10ad2c0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080132Z:3ae4c78c-1b46-44e0-9ad7-7a26582b59ff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ae43ca5777361227d5024439f92e7f3e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e97391ca-d89c-4a1f-9d30-d11fcd35c45a", + "x-ms-client-request-id": "ae43ca5777361227d5024439f92e7f3e", + "x-ms-correlation-request-id": "862af981-3160-4f06-a937-5809879bbb04", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "7adb7ba0-35b6-4d2e-a185-f51654a99eb1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080134Z:862af981-3160-4f06-a937-5809879bbb04" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e4e7becf2ab0996a52c8c17ce5f14f5e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 08: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": "56875eda-2396-4afe-8c0a-204b94b822b6", + "x-ms-client-request-id": "e4e7becf2ab0996a52c8c17ce5f14f5e", + "x-ms-correlation-request-id": "57101ea4-6678-400b-b0f6-f5e19f6b4b60", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "70d2d7a1-d532-466d-bdeb-aea0dce9c056", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080135Z:57101ea4-6678-400b-b0f6-f5e19f6b4b60" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "844325a97fdd4ce0025ef58a5780cb26", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "aaf1dfd1-d0e4-4bdb-979d-18d4442998b3", + "x-ms-client-request-id": "844325a97fdd4ce0025ef58a5780cb26", + "x-ms-correlation-request-id": "cbc69ebd-ef14-484a-a55a-ff8ffb7a6957", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "9fffe1d1-a6a6-4361-982c-89c143e93289", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080137Z:cbc69ebd-ef14-484a-a55a-ff8ffb7a6957" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "51c9bb2244232c2960aa5c6eb5aa2de3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "54643156-fe8f-4f20-886e-892672600009", + "x-ms-client-request-id": "51c9bb2244232c2960aa5c6eb5aa2de3", + "x-ms-correlation-request-id": "cce8c741-dc3f-491f-b5b9-416beedf4d29", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "ee728819-cf3b-4c8a-9b87-9b50de646516", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080138Z:cce8c741-dc3f-491f-b5b9-416beedf4d29" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d490e5b2fbeb5060dd9be15234df42d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8bb9672f-7665-4936-be60-a0e97366cde8", + "x-ms-client-request-id": "d490e5b2fbeb5060dd9be15234df42d1", + "x-ms-correlation-request-id": "80ae6c06-a79d-48af-a7e1-0a3ff4e21b92", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "0549fddb-5347-400f-b1f7-a32bd87a1734", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080139Z:80ae6c06-a79d-48af-a7e1-0a3ff4e21b92" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2a5a9bfcfd28643bfb16233322729658", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ae66c4d2-1d6c-491c-85e6-f0e78a120f78", + "x-ms-client-request-id": "2a5a9bfcfd28643bfb16233322729658", + "x-ms-correlation-request-id": "ca4b7fd9-0b15-4b8a-b359-826414c3a6f2", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "489a9f15-2d8d-4e51-9bb5-23cbb56d5489", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080141Z:ca4b7fd9-0b15-4b8a-b359-826414c3a6f2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "71d71231f7f0263a5a78738763d7f880", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "05110e4e-b1ef-4062-8297-3b6ba0aa6d34", + "x-ms-client-request-id": "71d71231f7f0263a5a78738763d7f880", + "x-ms-correlation-request-id": "c6afc250-7ecc-494a-aa19-2fcc9b9c3e1f", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "e3187120-8975-4599-9e7e-b770a4377af5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080142Z:c6afc250-7ecc-494a-aa19-2fcc9b9c3e1f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1a728a67034fb5bbaa2bd9d4d72c2d6b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 08: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": "a357c078-6c05-45f3-b469-793e5b2fe703", + "x-ms-client-request-id": "1a728a67034fb5bbaa2bd9d4d72c2d6b", + "x-ms-correlation-request-id": "453abfc1-4d41-432e-b2b2-9843fbf6fa08", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "c9901a5f-df30-4941-9d81-a943ee0647f9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080143Z:453abfc1-4d41-432e-b2b2-9843fbf6fa08" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "21218805d10805e06034cfaf89b30123", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "87bf2fd7-98d6-447d-94ab-bfffb6360497", + "x-ms-client-request-id": "21218805d10805e06034cfaf89b30123", + "x-ms-correlation-request-id": "ea2e063d-5611-4b26-b01f-2af56e996a02", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "d007b0f2-6689-463d-b7c9-e1ef3fa7768a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080144Z:ea2e063d-5611-4b26-b01f-2af56e996a02" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "97cca21d7cff2e095622c7c41d654f2e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e56d39c2-ffe3-43d5-85db-e17ce18ba415", + "x-ms-client-request-id": "97cca21d7cff2e095622c7c41d654f2e", + "x-ms-correlation-request-id": "8c609331-7623-4f86-9b28-c8a78e7679af", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "e098741c-8e0f-4374-ab28-c7e2a0e828e8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080146Z:8c609331-7623-4f86-9b28-c8a78e7679af" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "da82084bd7b69578aa6dba1b330c2bf6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9a222e9d-aea0-4d63-9520-30217c2567a2", + "x-ms-client-request-id": "da82084bd7b69578aa6dba1b330c2bf6", + "x-ms-correlation-request-id": "530d9635-90a7-42c2-bd2d-938d84f7d9e3", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "1692bdf5-5f78-42c0-b3e8-cf0fa1de6891", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080147Z:530d9635-90a7-42c2-bd2d-938d84f7d9e3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "34b7b52a955f896b7ef2cbe60a1ce7fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 08: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": "4b5edc3b-b83a-4d18-a7df-c5c41c95b9d1", + "x-ms-client-request-id": "34b7b52a955f896b7ef2cbe60a1ce7fa", + "x-ms-correlation-request-id": "9da13101-94b7-47d0-b19b-80d4e6b5a23f", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "b889cd5e-292b-404f-a25a-3638e41bf1fe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080148Z:9da13101-94b7-47d0-b19b-80d4e6b5a23f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8164a1e52631466d2a36ed92c1eefa4a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e14cf715-ab25-4d1b-873a-bbb87245f057", + "x-ms-client-request-id": "8164a1e52631466d2a36ed92c1eefa4a", + "x-ms-correlation-request-id": "175d631a-fd3e-47db-bc44-daaa44c4ef2d", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "b94b2e5e-c7f9-4e74-8ddd-bf697ee1fcd4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080149Z:175d631a-fd3e-47db-bc44-daaa44c4ef2d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6899d0f61aaeb5ce9cf95bc30b928b8e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e238319f-85a4-44f9-99ae-e67561eb0a8d", + "x-ms-client-request-id": "6899d0f61aaeb5ce9cf95bc30b928b8e", + "x-ms-correlation-request-id": "5c238a9b-5c2a-4bf9-b96b-bfd5c5b777fb", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "9cc76de0-274d-428f-ac94-d88867d26c66", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080151Z:5c238a9b-5c2a-4bf9-b96b-bfd5c5b777fb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9136bf86a9a704c548700a29a8d9c790", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "62a30d5b-ace1-4024-a3cc-eca5dd0e26c3", + "x-ms-client-request-id": "9136bf86a9a704c548700a29a8d9c790", + "x-ms-correlation-request-id": "a4d6c4b9-c8ec-4387-adf3-e67ea9056cc8", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "97952d05-31c9-4e6c-8b30-b86ceca9f95f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080152Z:a4d6c4b9-c8ec-4387-adf3-e67ea9056cc8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "39ef80f87e82ca4bd3aee538caa93a98", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9ef6c450-5c89-4183-b020-c4162eb9de4d", + "x-ms-client-request-id": "39ef80f87e82ca4bd3aee538caa93a98", + "x-ms-correlation-request-id": "f2edaa67-3290-4d98-a7bd-593a485013c3", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "239e0f8f-4a40-444f-aa3c-17e352220eb5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080153Z:f2edaa67-3290-4d98-a7bd-593a485013c3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "020c5fab68b84da20b95203d0fa40dc2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f216b2c5-8a0b-4a15-9309-c57275db32f1", + "x-ms-client-request-id": "020c5fab68b84da20b95203d0fa40dc2", + "x-ms-correlation-request-id": "3eaeafc0-fd4a-4ef1-8d90-d424eb863165", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "64980bd1-c562-428a-9e66-e7f7e1889fe5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080155Z:3eaeafc0-fd4a-4ef1-8d90-d424eb863165" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8acbcb3151a2070b736bbef8c38d3a9e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "fc605b28-6ac3-499f-a106-e0aa21e52af3", + "x-ms-client-request-id": "8acbcb3151a2070b736bbef8c38d3a9e", + "x-ms-correlation-request-id": "1b2fdda4-cb9e-4e4a-bf35-2148b4ca4641", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "bca38381-1ddd-465b-9358-d9961f606548", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080156Z:1b2fdda4-cb9e-4e4a-bf35-2148b4ca4641" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "487d7236c5cc8fd7dea12eed5e0ebb2e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "30642e77-df55-43ff-ba98-d8e5700a0c2b", + "x-ms-client-request-id": "487d7236c5cc8fd7dea12eed5e0ebb2e", + "x-ms-correlation-request-id": "b96ce133-96c6-4cb7-b162-cc6459c50860", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "a7da2cc3-fc87-4ad1-aa14-154e0495fbb2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080158Z:b96ce133-96c6-4cb7-b162-cc6459c50860" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fe0622a1afde59f553048e4daaa9897d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "12270f0f-23ae-4f32-9a50-07bf77ab6077", + "x-ms-client-request-id": "fe0622a1afde59f553048e4daaa9897d", + "x-ms-correlation-request-id": "fd3fe385-0992-4caa-a707-037a9494f474", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "ff5321b8-870a-4c0e-b4ee-7e746a212a4e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080159Z:fd3fe385-0992-4caa-a707-037a9494f474" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9d07825ac4276cf5f33bac01221ea965", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d7bb4d77-a662-4fd9-970e-9addc002a3b5", + "x-ms-client-request-id": "9d07825ac4276cf5f33bac01221ea965", + "x-ms-correlation-request-id": "cbf27ac8-99dc-4c58-8cee-50683ac95a29", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "c9428045-0ae2-48e7-b2ce-81e2da752573", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080200Z:cbf27ac8-99dc-4c58-8cee-50683ac95a29" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/4684cb45-82e3-49f8-9291-e276ba68911d?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a05790af3b8686bf7d24f4c8368ae534", + "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, 08 Sep 2021 08:02: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": "b6d19fcc-24ae-4a40-913c-e90ea3b10de0", + "x-ms-client-request-id": "a05790af3b8686bf7d24f4c8368ae534", + "x-ms-correlation-request-id": "bee0079c-8a76-4f00-ab4c-f4a202b5e363", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "3e940487-ec56-4acd-ad82-a082d17b1fd6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T080201Z:bee0079c-8a76-4f00-ab4c-f4a202b5e363" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + } + ], + "Variables": { + "LOCATION": "westus2", + "RandomSeed": "142148794", + "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/BastionHostContainerTests/GetAsync.json b/sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/BastionHostContainerTests/GetAsync.json new file mode 100644 index 0000000000000..efd3901378706 --- /dev/null +++ b/sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/BastionHostContainerTests/GetAsync.json @@ -0,0 +1,16625 @@ +{ + "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-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b5c4f23678508bc44b192b9326e1b652", + "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, 08 Sep 2021 07:44:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f0418ee9-5cd3-4264-9619-ece98f4db6ff", + "x-ms-ratelimit-remaining-subscription-reads": "11546", + "x-ms-request-id": "f0418ee9-5cd3-4264-9619-ece98f4db6ff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074409Z:f0418ee9-5cd3-4264-9619-ece98f4db6ff" + }, + "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/bastionrg-7251?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-2099159d5adff94ab51e4adbbd00730c-81b78aa779dbb740-00", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "628c8f388e327d168abd597e163b2239", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "226", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:44:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "86d3a81a-4ee7-4ee8-adb5-e6bb6dee4bbd", + "x-ms-ratelimit-remaining-subscription-reads": "11545", + "x-ms-request-id": "86d3a81a-4ee7-4ee8-adb5-e6bb6dee4bbd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074409Z:86d3a81a-4ee7-4ee8-adb5-e6bb6dee4bbd" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251", + "name": "bastionrg-7251", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eb9a668e8fecd1075b8a5c809dad074a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1249", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:44:09 GMT", + "ETag": "W/\u00226c25ae20-bd40-4cbe-9195-bed650ffe574\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": "4335ee48-1886-42d6-8cab-d8dde39ce1c7", + "x-ms-client-request-id": "eb9a668e8fecd1075b8a5c809dad074a", + "x-ms-correlation-request-id": "7ca854ec-8b33-402b-8704-8bbfcd6801d8", + "x-ms-ratelimit-remaining-subscription-reads": "11544", + "x-ms-request-id": "9f93cd0f-1574-411b-b1b7-c1e07d3e2f96", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074409Z:7ca854ec-8b33-402b-8704-8bbfcd6801d8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022vnet-6121\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00226c25ae20-bd40-4cbe-9195-bed650ffe574\\\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: \u0022a7067e65-d510-4fab-b894-da0e03df110f\u0022,\r\n", + " \u0022addressSpace\u0022: {\r\n", + " \u0022addressPrefixes\u0022: [\r\n", + " \u002210.0.0.0/16\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022subnets\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022AzureBastionSubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121/subnets/AzureBastionSubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00226c25ae20-bd40-4cbe-9195-bed650ffe574\\\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/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121/subnets/AzureBastionSubnet?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b8b2277eadcfa85fdc462b931e46740f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "551", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:44:10 GMT", + "ETag": "W/\u00226c25ae20-bd40-4cbe-9195-bed650ffe574\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": "cc86a077-8831-4cca-b653-cb96b0641e7a", + "x-ms-client-request-id": "b8b2277eadcfa85fdc462b931e46740f", + "x-ms-correlation-request-id": "9ed5b5a7-72df-40dc-913c-d18a962b08f6", + "x-ms-ratelimit-remaining-subscription-reads": "11543", + "x-ms-request-id": "3e8e15c5-d4c8-4fbd-8e84-e6b6e79629b3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074410Z:9ed5b5a7-72df-40dc-913c-d18a962b08f6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022AzureBastionSubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121/subnets/AzureBastionSubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00226c25ae20-bd40-4cbe-9195-bed650ffe574\\\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/bastionrg-7251/providers/Microsoft.Network/publicIPAddresses/ip-3184?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bf04f2f7cb47a96687ba07a73195e0dd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "664", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:44:10 GMT", + "ETag": "W/\u002240910b0a-1401-4d31-bb73-16afab73048e\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": "e6c7ae47-dc5d-42e5-b1e6-1fb204861149", + "x-ms-client-request-id": "bf04f2f7cb47a96687ba07a73195e0dd", + "x-ms-correlation-request-id": "711450cd-b009-42d8-ac7a-1b8fcd2d993c", + "x-ms-ratelimit-remaining-subscription-reads": "11542", + "x-ms-request-id": "b922e47a-5e06-441a-86c1-dd6cb698ebff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074410Z:711450cd-b009-42d8-ac7a-1b8fcd2d993c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022ip-3184\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/publicIPAddresses/ip-3184\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002240910b0a-1401-4d31-bb73-16afab73048e\\\u0022\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022cf12151e-bd67-4380-9ac6-86981f12aa37\u0022,\r\n", + " \u0022ipAddress\u0022: \u002220.98.77.111\u0022,\r\n", + " \u0022publicIPAddressVersion\u0022: \u0022IPv4\u0022,\r\n", + " \u0022publicIPAllocationMethod\u0022: \u0022Static\u0022,\r\n", + " \u0022idleTimeoutInMinutes\u0022: 4,\r\n", + " \u0022ipTags\u0022: []\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/publicIPAddresses\u0022,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Standard\u0022,\r\n", + " \u0022tier\u0022: \u0022Regional\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-1533?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "469", + "Content-Type": "application/json", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "89eeff0e696906e1f20ea56474b31515", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "id": null, + "properties": { + "ipConfigurations": [ + { + "name": "bastionIPConfig-5719", + "id": null, + "properties": { + "subnet": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121/subnets/AzureBastionSubnet" + }, + "publicIPAddress": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/publicIPAddresses/ip-3184" + } + } + } + ] + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "1456", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:44:17 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": "dfd9f42a-128f-489c-b3b5-b6ff8177db36", + "x-ms-client-request-id": "89eeff0e696906e1f20ea56474b31515", + "x-ms-correlation-request-id": "4053c187-80c0-4498-b752-5c4d12e61d71", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "7a8385a5-498b-49c2-9c66-34b9d8a350fc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074417Z:4053c187-80c0-4498-b752-5c4d12e61d71" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022bastion-1533\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-1533\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022118beba6-567b-47bd-a123-856a4439631b\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022scaleUnits\u0022: 2,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022bastionIPConfig-5719\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-1533/bastionHostIpConfigurations/bastionIPConfig-5719\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022118beba6-567b-47bd-a123-856a4439631b\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts/bastionHostIpConfigurations\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/bastionrg-7251/providers/Microsoft.Network/publicIPAddresses/ip-3184\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121/subnets/AzureBastionSubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022bastionShareableLinks\u0022: {}\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "460fdd4e8586898e23b855bcc1441307", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:44:17 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": "2a7978c4-90ee-4a24-89d0-b784876e021a", + "x-ms-client-request-id": "460fdd4e8586898e23b855bcc1441307", + "x-ms-correlation-request-id": "d38a7392-3930-43b1-a145-154dbfe274b0", + "x-ms-ratelimit-remaining-subscription-reads": "11541", + "x-ms-request-id": "647d96d6-75c2-48b3-8f51-7d1b15f92e6e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074417Z:d38a7392-3930-43b1-a145-154dbfe274b0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0ce491f234350b6d4d2d8038543b4e7b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:44: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": "3d370fde-4aee-4abd-9ede-0b1c26f0f6f4", + "x-ms-client-request-id": "0ce491f234350b6d4d2d8038543b4e7b", + "x-ms-correlation-request-id": "9c9cc780-0ccf-4b02-a91d-7011a633ffe5", + "x-ms-ratelimit-remaining-subscription-reads": "11540", + "x-ms-request-id": "2dc8f26d-a240-4c21-bde0-ca5db30a013e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074419Z:9c9cc780-0ccf-4b02-a91d-7011a633ffe5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "96153ec8cfa3c78ffb21848faef5ffc4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:44: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": "b67db876-9bbe-4c98-8eaf-bd07830196bf", + "x-ms-client-request-id": "96153ec8cfa3c78ffb21848faef5ffc4", + "x-ms-correlation-request-id": "071b5e75-7e48-4141-87de-2da48dcd1655", + "x-ms-ratelimit-remaining-subscription-reads": "11539", + "x-ms-request-id": "d4861a68-10db-4eff-b34c-92027cb2796c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074420Z:071b5e75-7e48-4141-87de-2da48dcd1655" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "26b30d1e3a9119307004f858045535e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:44:21 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": "45210e19-4214-4746-a154-c419439f28ec", + "x-ms-client-request-id": "26b30d1e3a9119307004f858045535e7", + "x-ms-correlation-request-id": "f590b4c5-e3f2-4115-9761-a709e5438ba1", + "x-ms-ratelimit-remaining-subscription-reads": "11538", + "x-ms-request-id": "65e5dee3-1045-4686-ad0c-5658949746fb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074421Z:f590b4c5-e3f2-4115-9761-a709e5438ba1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "82f4d96a7c2e2364021c1113b0de5c58", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:44: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": "9f7e9a09-6adc-43de-85ce-c8cf4a2bc7fd", + "x-ms-client-request-id": "82f4d96a7c2e2364021c1113b0de5c58", + "x-ms-correlation-request-id": "c6a4f512-5be6-4aa6-b540-e2738d03f09a", + "x-ms-ratelimit-remaining-subscription-reads": "11537", + "x-ms-request-id": "949c4682-e3b0-47a5-9eb1-4eabdf45f330", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074422Z:c6a4f512-5be6-4aa6-b540-e2738d03f09a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "461abc2d28888ee90dfc269ed636c2a5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:44: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": "eecfe1dc-61f8-4386-87fd-02c9f8ed4e7c", + "x-ms-client-request-id": "461abc2d28888ee90dfc269ed636c2a5", + "x-ms-correlation-request-id": "cdabe09e-302e-4d43-b67a-c59c68b2ea6a", + "x-ms-ratelimit-remaining-subscription-reads": "11536", + "x-ms-request-id": "da678a7c-2f67-4b26-af75-003036c0a0ee", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074424Z:cdabe09e-302e-4d43-b67a-c59c68b2ea6a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d4249cec7c00a195a88f2375281c6991", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:44: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": "1bdc697a-dd24-4fa1-bdcb-4db51a926ed9", + "x-ms-client-request-id": "d4249cec7c00a195a88f2375281c6991", + "x-ms-correlation-request-id": "f68a1389-59e9-4971-9df3-b82c44fec109", + "x-ms-ratelimit-remaining-subscription-reads": "11535", + "x-ms-request-id": "ea748238-fafc-453a-bf07-6879a837b07f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074425Z:f68a1389-59e9-4971-9df3-b82c44fec109" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "482aa0a8ee3b415fef66753255c64ccb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:44:26 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": "fcfe2e31-7fce-4b85-93ab-c80d6cf61601", + "x-ms-client-request-id": "482aa0a8ee3b415fef66753255c64ccb", + "x-ms-correlation-request-id": "d8fe35bf-6476-4cd7-927f-12c1b4d7380d", + "x-ms-ratelimit-remaining-subscription-reads": "11534", + "x-ms-request-id": "2969ac25-dce0-4842-b2cf-dac30ce04bd9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074426Z:d8fe35bf-6476-4cd7-927f-12c1b4d7380d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "13276b5a88b9b15727789df9047465f0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:44: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": "f54c9e07-d5c8-40eb-a986-3df0a59fcebe", + "x-ms-client-request-id": "13276b5a88b9b15727789df9047465f0", + "x-ms-correlation-request-id": "ecb0107f-0ffd-443c-95c3-34534c08acac", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "3a7ccbbf-4073-4d7b-814b-3b284d716e38", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074429Z:ecb0107f-0ffd-443c-95c3-34534c08acac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "36f695937a0cfe693de3e49a07624ce2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7fe716f8-e074-4a3e-b93a-f50dffdc9e28", + "x-ms-client-request-id": "36f695937a0cfe693de3e49a07624ce2", + "x-ms-correlation-request-id": "489c7e14-46ca-49ed-b804-213bf6c70e0f", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "9369a5bf-913d-4ec6-a92b-f8ab6715782b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074430Z:489c7e14-46ca-49ed-b804-213bf6c70e0f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bd1b584355f51fd7487921c350653c7b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "01e909ce-60ae-4671-96ed-52a9b8bb1f22", + "x-ms-client-request-id": "bd1b584355f51fd7487921c350653c7b", + "x-ms-correlation-request-id": "d71716e6-0408-48da-937f-a561c5a3c65a", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "317eba0c-6a73-4cd1-873e-d964c3faa460", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074431Z:d71716e6-0408-48da-937f-a561c5a3c65a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c09e840015d0dfbe0229d5d6a3bdaac4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "aa30c034-d770-478b-8089-9b88fedd6223", + "x-ms-client-request-id": "c09e840015d0dfbe0229d5d6a3bdaac4", + "x-ms-correlation-request-id": "ae612314-358d-4afb-a716-8a67a59abf12", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "509a20d3-b320-4093-9f09-c3429a3ef3fb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074432Z:ae612314-358d-4afb-a716-8a67a59abf12" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "acb6bb2ca8593dfbbdd6ee9359a6add7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "bb94c4f6-c02f-420d-9cb7-e3db3fe9d094", + "x-ms-client-request-id": "acb6bb2ca8593dfbbdd6ee9359a6add7", + "x-ms-correlation-request-id": "92dd05bc-bee0-498c-a417-6d31c27e4a1e", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "8d21fc6f-5281-4167-b99b-27d59cd62659", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074434Z:92dd05bc-bee0-498c-a417-6d31c27e4a1e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "829969a68bc32d12993bbbcc80017c8b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9ebbc8ac-161a-4ceb-8d6f-20e0ba27f0d8", + "x-ms-client-request-id": "829969a68bc32d12993bbbcc80017c8b", + "x-ms-correlation-request-id": "f642b771-4471-4725-b418-525da1ffae96", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "c001dd85-75b9-4ed2-aff1-4c46b525d9d7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074435Z:f642b771-4471-4725-b418-525da1ffae96" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "95975dcf90af5821896103f9272b865b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e6e2aada-6627-4487-b139-5d8c274550b5", + "x-ms-client-request-id": "95975dcf90af5821896103f9272b865b", + "x-ms-correlation-request-id": "a610023c-f7cf-4c52-b6cd-d6ec9d4fe83f", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "cc72f811-5ecc-4078-acf1-c06ed168a02d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074436Z:a610023c-f7cf-4c52-b6cd-d6ec9d4fe83f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3a2ffd7c2723a000a889121ded2ebdbc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c0b4cfcd-8a7e-418e-ae5d-e5b046c527b4", + "x-ms-client-request-id": "3a2ffd7c2723a000a889121ded2ebdbc", + "x-ms-correlation-request-id": "6d60a9d3-7ccb-4e19-84e0-13a6ef6f9e7a", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "59fc0683-40bf-4371-bdfd-cfbbb56b69cf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074438Z:6d60a9d3-7ccb-4e19-84e0-13a6ef6f9e7a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fcc4635a170e16274740f9628818056d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a8aadf08-8589-4214-bd57-e0eb23ab80ee", + "x-ms-client-request-id": "fcc4635a170e16274740f9628818056d", + "x-ms-correlation-request-id": "5f352410-06dc-4839-b581-c91477c2799e", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "2dab43d9-d863-4002-97b7-f8d46351dba9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074439Z:5f352410-06dc-4839-b581-c91477c2799e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "82505fb541d1a7675cf6ed267d036b5a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "66b0fb7c-bc7d-421d-a1ae-ed173e17d04c", + "x-ms-client-request-id": "82505fb541d1a7675cf6ed267d036b5a", + "x-ms-correlation-request-id": "08b034db-4aa1-4137-90c6-c779c4b53abe", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "9b154074-d741-45ba-8ef3-cb98ff9b1daa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074440Z:08b034db-4aa1-4137-90c6-c779c4b53abe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c49f46a38a67644cd519f3e32e9d188f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4edefe3b-98dd-4a4d-b58b-18e1135f1ddb", + "x-ms-client-request-id": "c49f46a38a67644cd519f3e32e9d188f", + "x-ms-correlation-request-id": "cc783976-4763-497f-82e1-e0ba049b16ff", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "41d3da97-7548-4e3b-946a-fbbe6df705eb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074442Z:cc783976-4763-497f-82e1-e0ba049b16ff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8d68a4833bde18ebfb1c9f182a019843", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "98325ff6-19dd-4d23-84a2-dbdb133cca58", + "x-ms-client-request-id": "8d68a4833bde18ebfb1c9f182a019843", + "x-ms-correlation-request-id": "a594c056-24ec-44c2-ae1c-dce30718f656", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "6019ea2a-1c7d-4773-bbbd-5b147d587458", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074444Z:a594c056-24ec-44c2-ae1c-dce30718f656" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "41be9ed540792a0612ebacb74e8479bf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e4c7f2b0-27ef-494f-8b66-1e1b59143928", + "x-ms-client-request-id": "41be9ed540792a0612ebacb74e8479bf", + "x-ms-correlation-request-id": "92a95531-7da2-4919-9cab-30d68d25c9f0", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "3424fee1-98f4-4d08-823b-b5ef2efb3726", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074445Z:92a95531-7da2-4919-9cab-30d68d25c9f0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d8a35ddddd9b687c5b86c84beb343ad4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "ca294466-7e94-4e0f-bf13-f3be7ecd0d83", + "x-ms-client-request-id": "d8a35ddddd9b687c5b86c84beb343ad4", + "x-ms-correlation-request-id": "a9a9738c-6835-41b1-b1e7-35a39e568207", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "975ff615-160b-4e62-9a9f-f2ceb061812b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074447Z:a9a9738c-6835-41b1-b1e7-35a39e568207" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8f0daf80d7de43159e3d7bf28e33ca77", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9a793fcc-d8df-40b5-8b52-e9f2e967b391", + "x-ms-client-request-id": "8f0daf80d7de43159e3d7bf28e33ca77", + "x-ms-correlation-request-id": "3354c1d3-bb1b-4509-9907-4b12336e0a47", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "1e9acf87-4608-496b-8d98-df7b430f7d07", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074448Z:3354c1d3-bb1b-4509-9907-4b12336e0a47" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cc3ae0a3bf5df8a82156e6f377ba3fde", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ab761f25-f754-4e41-92e0-c07dc905bd9c", + "x-ms-client-request-id": "cc3ae0a3bf5df8a82156e6f377ba3fde", + "x-ms-correlation-request-id": "601a0ce1-b68f-4552-aabb-5093ff7294d5", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "c6becb9a-361c-4c3f-9439-16187098d147", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074449Z:601a0ce1-b68f-4552-aabb-5093ff7294d5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9e36d7b1e97606e04760395d6189d928", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:44: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": "bcad9af3-0568-4af5-b328-d44d022757db", + "x-ms-client-request-id": "9e36d7b1e97606e04760395d6189d928", + "x-ms-correlation-request-id": "8a1d18c3-0785-493c-bb9b-1bd59b7bbf86", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "eb31da49-f3a8-4a25-9660-3b0d3eab8186", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074451Z:8a1d18c3-0785-493c-bb9b-1bd59b7bbf86" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0aa751bb6ef9c07607146e88f022cbe4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1d79913a-e9da-4a24-937d-709be31169cc", + "x-ms-client-request-id": "0aa751bb6ef9c07607146e88f022cbe4", + "x-ms-correlation-request-id": "192535c8-ca9f-49ac-9d1d-4afbdc67473a", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "e46c0841-b340-46f9-b2c2-aabeaa8e7882", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074452Z:192535c8-ca9f-49ac-9d1d-4afbdc67473a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b6419dfe2bfcba00ff3384fd864b9698", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d9c42eb9-b14e-48ed-a59b-96f87047fe21", + "x-ms-client-request-id": "b6419dfe2bfcba00ff3384fd864b9698", + "x-ms-correlation-request-id": "9ab468a4-8142-4e04-b563-30870dceef62", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "7db5b97c-825a-410e-af3b-f95a98cb2ef6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074453Z:9ab468a4-8142-4e04-b563-30870dceef62" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2637bd7c341343e4607697627b581525", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "f709baa1-dbae-4d0e-b1f2-ad2fad6c9007", + "x-ms-client-request-id": "2637bd7c341343e4607697627b581525", + "x-ms-correlation-request-id": "4aae156f-fb21-4fd8-97a8-47b6fa9e6f9a", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "e0055e9e-872e-4edb-8249-09b1bdb9a329", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074454Z:4aae156f-fb21-4fd8-97a8-47b6fa9e6f9a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c45f55942348902b50ed0bc5e9793abc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1b5fb92d-7e90-428e-abc6-44c42d51ae12", + "x-ms-client-request-id": "c45f55942348902b50ed0bc5e9793abc", + "x-ms-correlation-request-id": "644a7cbf-0a34-47d7-8d63-59d695f2c3ff", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "05ab061a-ac34-49ed-9f7d-acdf82b8f9ff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074456Z:644a7cbf-0a34-47d7-8d63-59d695f2c3ff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "320bd57ea4eac9d0b8fe5586949e3fa7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "18fbc453-e02f-4436-9215-ff9fbc1f09e5", + "x-ms-client-request-id": "320bd57ea4eac9d0b8fe5586949e3fa7", + "x-ms-correlation-request-id": "ad09600a-d5fd-4958-9964-7a7cc49bd78c", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "2ab7461a-b958-4f2b-b3d2-3c9386ae2270", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074457Z:ad09600a-d5fd-4958-9964-7a7cc49bd78c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "30695f1ed2eb594f92a7d626291e59e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "095c90ad-35d9-46d6-8732-3e3ab95da558", + "x-ms-client-request-id": "30695f1ed2eb594f92a7d626291e59e7", + "x-ms-correlation-request-id": "31380d1c-6351-4c05-a60d-e4a5e6b40628", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "f728a913-d5d1-4892-afd7-270467ff08f5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074458Z:31380d1c-6351-4c05-a60d-e4a5e6b40628" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a5e4da3be24cef3a84950b4acda5fbb1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "5483c719-7ebc-462c-9b7b-f6cd7ca7b9f1", + "x-ms-client-request-id": "a5e4da3be24cef3a84950b4acda5fbb1", + "x-ms-correlation-request-id": "01383f2c-b245-4afc-b65e-716ade99df81", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "f370ac1d-5617-4008-b501-f998e1bd03ca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074500Z:01383f2c-b245-4afc-b65e-716ade99df81" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8aa763ad0a10abd086b2a043ceaa9f9a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d547d284-3045-4f90-93d2-8786a9b7758e", + "x-ms-client-request-id": "8aa763ad0a10abd086b2a043ceaa9f9a", + "x-ms-correlation-request-id": "36f8e2b9-500b-46b8-b7e0-5067cc0e0d80", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "069c71ee-04cd-43ff-aba4-5b1fb319e235", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074501Z:36f8e2b9-500b-46b8-b7e0-5067cc0e0d80" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b94b6ea49aba3b5a2579ab56c7058bed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8c9734d6-edab-4ed4-b9cf-6a863ed10c14", + "x-ms-client-request-id": "b94b6ea49aba3b5a2579ab56c7058bed", + "x-ms-correlation-request-id": "3f253e9e-67ca-4d55-a5c0-07b1fc4f43ed", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "8174dfb8-b9b6-47fc-b0de-e3bcc216e221", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074502Z:3f253e9e-67ca-4d55-a5c0-07b1fc4f43ed" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c67824abcf7731d70a381e9a42f620da", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "43ac6d28-3876-46c4-89fe-bd6d06cf952a", + "x-ms-client-request-id": "c67824abcf7731d70a381e9a42f620da", + "x-ms-correlation-request-id": "99d7ff8b-5be4-4e4b-a475-56365c06dc0f", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "1111908b-027c-4f74-a45c-cd4ff7b62d1d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074504Z:99d7ff8b-5be4-4e4b-a475-56365c06dc0f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5fa571f6425913f7086c64965e7ae481", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "c559452e-4102-4688-aa35-e713979dbdc3", + "x-ms-client-request-id": "5fa571f6425913f7086c64965e7ae481", + "x-ms-correlation-request-id": "a5e0792f-5f46-4598-af2a-82e7679d1a04", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "7164d30b-3438-4262-82e7-4bb522f8bc26", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074505Z:a5e0792f-5f46-4598-af2a-82e7679d1a04" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aa98b326d932d422961aaf827bc0f82e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e3674f5f-3116-4c3d-b104-7e7e5cb2920c", + "x-ms-client-request-id": "aa98b326d932d422961aaf827bc0f82e", + "x-ms-correlation-request-id": "d525a64a-1935-4022-9dd5-573c3ebf56c3", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "8ce16f76-e656-4380-9d59-530f6f0529cb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074506Z:d525a64a-1935-4022-9dd5-573c3ebf56c3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "555fd1582c5f69932d64bd0a6a40d28f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ec8da750-ad36-4bd8-8c72-8246e5c18aa4", + "x-ms-client-request-id": "555fd1582c5f69932d64bd0a6a40d28f", + "x-ms-correlation-request-id": "f9c9a07c-8137-4564-970f-380ceb876b6d", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "94395015-b23d-48fb-aeac-5c017c79d4f7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074507Z:f9c9a07c-8137-4564-970f-380ceb876b6d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8f739d54765e1da74ed0c93f93759848", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "59c9dd79-7017-4b53-8694-35c8d0b3f606", + "x-ms-client-request-id": "8f739d54765e1da74ed0c93f93759848", + "x-ms-correlation-request-id": "06200be9-2b36-4923-9c69-ad93f56fa0a2", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "ec9f0fa2-d7be-46a8-8a27-15b884153778", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074509Z:06200be9-2b36-4923-9c69-ad93f56fa0a2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8d3e36738e1afa211f2e7dce1c186a55", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f66c44b6-e0c1-4dbe-bab0-325f12b045d2", + "x-ms-client-request-id": "8d3e36738e1afa211f2e7dce1c186a55", + "x-ms-correlation-request-id": "5cba0300-a915-4a25-b8ad-a2f143ad7c46", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "939972f3-61f6-4fa2-8ded-31c57d82513c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074510Z:5cba0300-a915-4a25-b8ad-a2f143ad7c46" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dd2d1f47694ce1cf2942078f6353d6b7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "81b82a94-270b-4d11-85e3-069e9206a8be", + "x-ms-client-request-id": "dd2d1f47694ce1cf2942078f6353d6b7", + "x-ms-correlation-request-id": "6d657f48-0cbf-49b0-a3fc-e3626fa7558f", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "45fc0860-9aca-4c7c-b66c-5f56b324e309", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074511Z:6d657f48-0cbf-49b0-a3fc-e3626fa7558f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "339674cc4502c5757c796f2ff8d90136", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "02e42912-0c66-4e77-896c-b0e2978d4772", + "x-ms-client-request-id": "339674cc4502c5757c796f2ff8d90136", + "x-ms-correlation-request-id": "87920355-bfc4-45a8-a984-225b44b5d33b", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "7ca925f0-f024-493a-9927-3079c2a30394", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074513Z:87920355-bfc4-45a8-a984-225b44b5d33b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "73f87366ba470afb675c63d8869297cc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e774bb40-941d-4c8a-a958-b9b40b17ef05", + "x-ms-client-request-id": "73f87366ba470afb675c63d8869297cc", + "x-ms-correlation-request-id": "1505d61a-4492-4fe8-ad37-b427ab216b9c", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "6f8788a4-725c-4e9f-bb40-6633a9a98f38", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074514Z:1505d61a-4492-4fe8-ad37-b427ab216b9c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a701c55836810252aa6761d3fa9fe94f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7eed1b19-4c2f-46b6-aa37-94abfe490024", + "x-ms-client-request-id": "a701c55836810252aa6761d3fa9fe94f", + "x-ms-correlation-request-id": "072c5ed9-f58b-4283-b15a-7fe632640653", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "5a0d943e-1f78-4a0f-ac74-6bc13077ef91", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074515Z:072c5ed9-f58b-4283-b15a-7fe632640653" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ef28d141625b1270798ccca6e19d3fea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c9b3c9c5-e6a9-4ff1-866a-ff5d1b18d34b", + "x-ms-client-request-id": "ef28d141625b1270798ccca6e19d3fea", + "x-ms-correlation-request-id": "889980d1-065f-4f71-8f07-da002e1749a9", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "06792ef9-6ee8-4bf8-a2e6-3060bb110049", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074517Z:889980d1-065f-4f71-8f07-da002e1749a9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "33d7a3e159d72fb420f5c9df58270fc7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b66fd974-29fb-498e-b547-fecdc1a34cee", + "x-ms-client-request-id": "33d7a3e159d72fb420f5c9df58270fc7", + "x-ms-correlation-request-id": "4a70ba5d-4144-4ebd-9a59-4fb09a2eff9d", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "67e33b29-2026-4645-9a1c-8e60fc01e33d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074518Z:4a70ba5d-4144-4ebd-9a59-4fb09a2eff9d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b5961373a769f67054ef2ef469ac210c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2b0c5910-182f-4d6d-833d-ef92c7c44ef9", + "x-ms-client-request-id": "b5961373a769f67054ef2ef469ac210c", + "x-ms-correlation-request-id": "88e618b0-988d-4c75-ac04-f189cd3f729d", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "b09af3c4-946e-41d0-8815-de322e3089eb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074519Z:88e618b0-988d-4c75-ac04-f189cd3f729d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "57f17728b5c8e7781cf9ce659891b951", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e7e5878c-d068-4f6f-8d5a-f5cc3452ef00", + "x-ms-client-request-id": "57f17728b5c8e7781cf9ce659891b951", + "x-ms-correlation-request-id": "571ba319-28be-4bef-b50d-418f94223f85", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "44160885-f04b-4b67-a14f-9fa9238bb414", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074520Z:571ba319-28be-4bef-b50d-418f94223f85" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cd32047d8906398132e0dee82bc0c673", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "4a8ca112-0ab3-465e-9ae5-7d18f123817e", + "x-ms-client-request-id": "cd32047d8906398132e0dee82bc0c673", + "x-ms-correlation-request-id": "96f9a4e1-298f-4621-8eac-f8a0e96aea0c", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "a83b6a9e-476a-4ee6-ab25-eb738acdd1dc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074522Z:96f9a4e1-298f-4621-8eac-f8a0e96aea0c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e1b6bcd4b836bdff9bae986fd90a5dc3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "38661877-34ff-42f9-a54d-e851499c9b12", + "x-ms-client-request-id": "e1b6bcd4b836bdff9bae986fd90a5dc3", + "x-ms-correlation-request-id": "1c0ff7c6-8639-4434-b4d1-47616d2d6c4c", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "457b4615-5623-4d58-881b-d6c2be3ee858", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074523Z:1c0ff7c6-8639-4434-b4d1-47616d2d6c4c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6577dd36547a9f06f5b724e7d78fbc5c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "31c9adf0-0a5c-4c7b-bc8f-842e9e2e52c5", + "x-ms-client-request-id": "6577dd36547a9f06f5b724e7d78fbc5c", + "x-ms-correlation-request-id": "5af71a2a-53ae-40b4-b9b4-647272ecf45c", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "4dcc75a0-1b4b-4087-845e-b4d5124a9cb4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074524Z:5af71a2a-53ae-40b4-b9b4-647272ecf45c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "db915a33d7dac41b05753157f0116027", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5bf44640-16c8-451f-b9d7-a8be78349978", + "x-ms-client-request-id": "db915a33d7dac41b05753157f0116027", + "x-ms-correlation-request-id": "aeb52b7d-1c8e-4da3-8b12-93f0246124c0", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "a2e6b80f-9ee3-419f-9cbf-e6cb3080bc57", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074526Z:aeb52b7d-1c8e-4da3-8b12-93f0246124c0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4eb11b82604980f9b617ec7e9317e60b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9dfa84ce-31b3-4258-b96e-2c00e83d6dc6", + "x-ms-client-request-id": "4eb11b82604980f9b617ec7e9317e60b", + "x-ms-correlation-request-id": "63f4b077-fe8a-4095-b949-ebb5829ab098", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "1e6bb769-d655-4e20-b4f3-b1112c18c9ff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074528Z:63f4b077-fe8a-4095-b949-ebb5829ab098" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7e3c3cf281795fe8c2b25f0422aeaee4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "617c30f8-c109-4111-b715-afd95051c2f6", + "x-ms-client-request-id": "7e3c3cf281795fe8c2b25f0422aeaee4", + "x-ms-correlation-request-id": "a070e977-2ad3-430e-a431-5552b6d537b9", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "524a82a3-4df8-495e-ab24-66de1f4d3cd3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074531Z:a070e977-2ad3-430e-a431-5552b6d537b9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bc64fc576eded213611025c3eb9c30ee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6d8f4a0e-c9e0-4d49-9f3d-ea3043d7094f", + "x-ms-client-request-id": "bc64fc576eded213611025c3eb9c30ee", + "x-ms-correlation-request-id": "913e8cf1-3fae-4cdc-9971-3a6fbe88c6ba", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "b7904ef3-6366-44ab-872d-1b1ad9c3d992", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074532Z:913e8cf1-3fae-4cdc-9971-3a6fbe88c6ba" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b465258ee2d401ae32528b9601f45d07", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3fa05e3b-9670-45cd-8b88-405719bc29b3", + "x-ms-client-request-id": "b465258ee2d401ae32528b9601f45d07", + "x-ms-correlation-request-id": "573b1802-e5af-4a82-9461-9fcf24ab3d6c", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "fdb21e67-b84b-4809-91aa-c6ef0daf0e08", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074534Z:573b1802-e5af-4a82-9461-9fcf24ab3d6c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "972707692ab2832d296a1c685c247325", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f314e6cb-268d-4bf3-945d-2e524e1a358f", + "x-ms-client-request-id": "972707692ab2832d296a1c685c247325", + "x-ms-correlation-request-id": "dc3444d0-babc-4f28-9dcb-d2fac0d81468", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "05592ee3-dafa-4d10-a4ba-62baa57d3327", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074535Z:dc3444d0-babc-4f28-9dcb-d2fac0d81468" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fd767181f948740f4e63898ce27cd06c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ca4a8c85-f7a7-43f4-9a72-c9115b6b6147", + "x-ms-client-request-id": "fd767181f948740f4e63898ce27cd06c", + "x-ms-correlation-request-id": "f3c499fe-fdac-4480-9cfc-f6022ec1c575", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "afccf08e-09b9-4cfb-bae5-fee9485a1b5b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074536Z:f3c499fe-fdac-4480-9cfc-f6022ec1c575" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e35a1db39975643bf7e18b69c545a40d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "479bd5ea-bee1-4d29-9301-715c1ddaf98e", + "x-ms-client-request-id": "e35a1db39975643bf7e18b69c545a40d", + "x-ms-correlation-request-id": "3bf9354e-a9e4-4e51-94e4-4ca09b80e23b", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "e23eb8cc-5e01-4205-bd3d-9adb1ffae894", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074538Z:3bf9354e-a9e4-4e51-94e4-4ca09b80e23b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8f1566de607e6fbff7b2484ea0a1a1ac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4d057d90-9b40-410d-8ac3-35cede2bf218", + "x-ms-client-request-id": "8f1566de607e6fbff7b2484ea0a1a1ac", + "x-ms-correlation-request-id": "287bf59a-2e04-4ddb-8ddd-56d9a95e7058", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "5a0d2afa-b6e6-40ec-a313-da34d5be7afb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074539Z:287bf59a-2e04-4ddb-8ddd-56d9a95e7058" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3fb5b09990cae7af351105676ea6ae08", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8100e646-ab41-4a1f-ad28-c60a44a721a5", + "x-ms-client-request-id": "3fb5b09990cae7af351105676ea6ae08", + "x-ms-correlation-request-id": "c9c3c577-e34b-413c-86e3-ed88d21110e3", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "f02e5af8-674b-46ba-8817-9b93161fd3d7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074540Z:c9c3c577-e34b-413c-86e3-ed88d21110e3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7bad7bbe416752ed5eeaebc351ecc356", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "197b72fb-7403-4dcc-ae74-d650adac7c20", + "x-ms-client-request-id": "7bad7bbe416752ed5eeaebc351ecc356", + "x-ms-correlation-request-id": "c9e31533-2650-4f13-8a70-bc994fad4e2c", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "5ae56b63-287d-4932-9fda-b07882795366", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074542Z:c9e31533-2650-4f13-8a70-bc994fad4e2c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "15cfde4065904e43b72d596d5b570151", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "3c9279dd-bfa9-423f-a89b-6e8b239be04d", + "x-ms-client-request-id": "15cfde4065904e43b72d596d5b570151", + "x-ms-correlation-request-id": "d4217347-060d-4cee-9bc2-a27492807027", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "83e8d63f-349c-474c-8dc0-f8feebe951a0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074543Z:d4217347-060d-4cee-9bc2-a27492807027" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "258f3f0425f45845c262e0e0a4ec9649", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7ad41829-e725-4671-a2cc-a36f7be03c2d", + "x-ms-client-request-id": "258f3f0425f45845c262e0e0a4ec9649", + "x-ms-correlation-request-id": "c94cc3ee-559b-4e1f-84da-ee3f913b8a11", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "fb656e03-d6eb-4086-ad25-4c6a435393e3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074544Z:c94cc3ee-559b-4e1f-84da-ee3f913b8a11" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8f26af4e99d65978375ec439e780f706", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a977b087-80bd-4d1c-b727-f53fa55070f5", + "x-ms-client-request-id": "8f26af4e99d65978375ec439e780f706", + "x-ms-correlation-request-id": "a26eb48d-9aaf-4048-bfa5-f252fc6acefc", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "80cd6613-843e-436e-9f84-dd23f919d556", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074545Z:a26eb48d-9aaf-4048-bfa5-f252fc6acefc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "11bf9ae89d5d1b629977522d8463aacb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "a821604d-c6dc-4664-86a2-69b8c8da21a5", + "x-ms-client-request-id": "11bf9ae89d5d1b629977522d8463aacb", + "x-ms-correlation-request-id": "2b538b30-11df-41e6-9bec-6ef7fb9b4d33", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "b353315f-affc-48c7-9d67-5fc33f813d2e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074547Z:2b538b30-11df-41e6-9bec-6ef7fb9b4d33" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ac1f109771316b7bc736ed95600b7141", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "474fb8aa-5c22-4c98-90bd-4edd7a1eb3af", + "x-ms-client-request-id": "ac1f109771316b7bc736ed95600b7141", + "x-ms-correlation-request-id": "845bd40f-fc78-47f8-947c-e35d14fd693c", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "e7be5c70-3b52-4058-abb0-282cb0d0c2eb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074548Z:845bd40f-fc78-47f8-947c-e35d14fd693c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "09f7da6a852db0eb4c0af65f464ad4d4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "eb2b71bb-d23c-4189-9522-cbbd456ededc", + "x-ms-client-request-id": "09f7da6a852db0eb4c0af65f464ad4d4", + "x-ms-correlation-request-id": "a6d7c2b0-0456-48be-9d07-abef3380fafb", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "f16f9efb-e3e4-4190-9dbc-d2bc13cfb654", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074549Z:a6d7c2b0-0456-48be-9d07-abef3380fafb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d6a2f9b44b6177d41f544926b0ccba8d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "fe66d49c-3e43-4144-a36a-405db3b908b7", + "x-ms-client-request-id": "d6a2f9b44b6177d41f544926b0ccba8d", + "x-ms-correlation-request-id": "fad21a68-39b7-4be9-a0a0-14b49e6d007e", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "44cf8a76-07cc-48cf-a94e-33066d104652", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074551Z:fad21a68-39b7-4be9-a0a0-14b49e6d007e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aac21105a06b119e246e5f267a1c257d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f8eba632-d5f4-4745-9b0f-3825df6bd820", + "x-ms-client-request-id": "aac21105a06b119e246e5f267a1c257d", + "x-ms-correlation-request-id": "92c45fe7-41ed-477f-bea2-c713ecf1ebc7", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "224d9418-8f4d-4f8b-9706-1b283e8d3388", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074552Z:92c45fe7-41ed-477f-bea2-c713ecf1ebc7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "67e119619a681fe00580ead83bc5007f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "64b8d4e0-8588-4cfc-b03b-592889740d03", + "x-ms-client-request-id": "67e119619a681fe00580ead83bc5007f", + "x-ms-correlation-request-id": "226edd70-a7c8-4c4f-a192-ee715e962976", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "f0ef4355-31a9-49b3-b389-c4acf51f7c52", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074553Z:226edd70-a7c8-4c4f-a192-ee715e962976" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "34596950298713685b91b1f2ecaefc02", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e082d130-8cac-430e-93a4-3a9259277525", + "x-ms-client-request-id": "34596950298713685b91b1f2ecaefc02", + "x-ms-correlation-request-id": "8fad5f2a-fe96-4a02-ae98-6b595f77eeee", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "7f1ccea3-b84d-47e7-9c17-36b7d64851ab", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074554Z:8fad5f2a-fe96-4a02-ae98-6b595f77eeee" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "97c4cc2f53eb6b2430a3a5ebb6c5d55f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "cca2b106-8e76-48ef-bda2-e23f9bf9f85a", + "x-ms-client-request-id": "97c4cc2f53eb6b2430a3a5ebb6c5d55f", + "x-ms-correlation-request-id": "152de3f1-feba-4f3d-8667-7295c6185005", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "86d3c4f0-3c5f-4919-917e-1470fc2dfe41", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074556Z:152de3f1-feba-4f3d-8667-7295c6185005" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "11d6df6ef0c337f5b0ce0bd7e9ed3357", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0ea35874-0ce2-4e47-87db-f7aeab22c2a7", + "x-ms-client-request-id": "11d6df6ef0c337f5b0ce0bd7e9ed3357", + "x-ms-correlation-request-id": "a8365b98-752e-4569-92d1-2b1058f8b119", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "9462424e-1e6e-4ec3-9ff7-ebae927e389c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074557Z:a8365b98-752e-4569-92d1-2b1058f8b119" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6fa9e7836900fc9445ed04e4847d5c96", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7614a217-aed3-44d1-8858-a49353b7de3c", + "x-ms-client-request-id": "6fa9e7836900fc9445ed04e4847d5c96", + "x-ms-correlation-request-id": "68011490-d5e4-4101-a5eb-004d9f857771", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "6fdbef3e-5d61-4cf0-9992-9e2b9cc354d7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074558Z:68011490-d5e4-4101-a5eb-004d9f857771" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0c8352bbebd73e3fd68ce71d474c8142", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "fbd1dc42-a300-4381-a67a-90d0d3ab1de2", + "x-ms-client-request-id": "0c8352bbebd73e3fd68ce71d474c8142", + "x-ms-correlation-request-id": "9666c696-66ed-45f2-a4e7-ffb39b51cb2f", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "07a6495d-94ab-4dd5-a6f1-7ce2675fa75d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074600Z:9666c696-66ed-45f2-a4e7-ffb39b51cb2f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ce684d70651b055e4bd9ccd5eb11b232", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d5664fdb-2273-4b7c-836a-baeb57a0cc5a", + "x-ms-client-request-id": "ce684d70651b055e4bd9ccd5eb11b232", + "x-ms-correlation-request-id": "728777ab-2b91-4eeb-ac08-3446dd0129da", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "bb9d01d4-ef35-4f13-b53e-757cd6549f2f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074601Z:728777ab-2b91-4eeb-ac08-3446dd0129da" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "971c7571266a987fa76a99738276b5f8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "dbcf60a2-b294-4c0a-93a1-01bf6ece2083", + "x-ms-client-request-id": "971c7571266a987fa76a99738276b5f8", + "x-ms-correlation-request-id": "a905c389-b3eb-4c75-a2e5-6ffe460e0f27", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "99da873c-e225-4502-afda-e72981be640e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074602Z:a905c389-b3eb-4c75-a2e5-6ffe460e0f27" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3773c16c8d14557bf37dc0fe1f6a53c4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8013cd87-6e6a-43ae-b2d6-3d252b31aeb2", + "x-ms-client-request-id": "3773c16c8d14557bf37dc0fe1f6a53c4", + "x-ms-correlation-request-id": "e2347ff3-0182-4fe4-b104-bb84c99a57eb", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "2a4afa4c-e1b2-40d4-a656-106b2c499415", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074604Z:e2347ff3-0182-4fe4-b104-bb84c99a57eb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d2acb4d9ea2f49d8cecf27b0cceb83d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "737842e1-c755-42d4-a441-0f4eb34e584d", + "x-ms-client-request-id": "d2acb4d9ea2f49d8cecf27b0cceb83d5", + "x-ms-correlation-request-id": "241635bb-8a13-46df-8fcb-c5b863868b8f", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "52072538-2090-42d3-85d3-add25a992b99", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074605Z:241635bb-8a13-46df-8fcb-c5b863868b8f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2a69d3247b9de31dfac6a3ec6581793d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "cb78a3cb-b689-4876-a2e3-a6d6b2cd6f93", + "x-ms-client-request-id": "2a69d3247b9de31dfac6a3ec6581793d", + "x-ms-correlation-request-id": "cecfdcc8-3de2-43ec-99fb-06eb6f4e7a24", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "940ad9d3-a495-4beb-b580-8041963218df", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074606Z:cecfdcc8-3de2-43ec-99fb-06eb6f4e7a24" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cd99d417e2c981c8e82a684466cb8908", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ed37f83a-3f87-4f1a-bf9d-fa6cbb66552a", + "x-ms-client-request-id": "cd99d417e2c981c8e82a684466cb8908", + "x-ms-correlation-request-id": "e7cf6441-9a0f-4c11-8325-c226940c2159", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "76157219-ef09-4fbb-992f-b1680bb5815f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074607Z:e7cf6441-9a0f-4c11-8325-c226940c2159" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4bd9ebfa29015d2796c8d86846ece34c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "30172102-d810-4da4-805f-210b6dedad0d", + "x-ms-client-request-id": "4bd9ebfa29015d2796c8d86846ece34c", + "x-ms-correlation-request-id": "6dc91c6d-096c-406a-9b4c-dc69507d812b", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "3ad45a06-b21b-428c-9c98-549ef9feb1dd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074609Z:6dc91c6d-096c-406a-9b4c-dc69507d812b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f798ea56b551410b0ae7417312d87c2f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:46: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": "36bf5147-7432-427f-aed0-be2b30df142d", + "x-ms-client-request-id": "f798ea56b551410b0ae7417312d87c2f", + "x-ms-correlation-request-id": "9aa6133b-cf46-4707-a077-2dc58d4cbb93", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "030ba5d7-ed7f-4b5c-bed2-a64001192734", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074610Z:9aa6133b-cf46-4707-a077-2dc58d4cbb93" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "79f19b3d2da8ee3bad3b37000a5f3afc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5c4a50ce-51ed-4022-9474-08f1be29a7ff", + "x-ms-client-request-id": "79f19b3d2da8ee3bad3b37000a5f3afc", + "x-ms-correlation-request-id": "7a0dd8c5-5941-40ba-be67-a3b0a76420b0", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "3f7779bf-43b1-4644-9976-e6ee4ba62004", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074611Z:7a0dd8c5-5941-40ba-be67-a3b0a76420b0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7cee1c46913244b6e0974119e7b44bbd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "25a47ae8-3073-422b-832f-a9975b670acf", + "x-ms-client-request-id": "7cee1c46913244b6e0974119e7b44bbd", + "x-ms-correlation-request-id": "f2283bad-9d6a-4f69-aec3-6d5fb7bdbc64", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "58b84a07-3ec3-449f-a5ca-faf0c4075252", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074613Z:f2283bad-9d6a-4f69-aec3-6d5fb7bdbc64" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aa2ba94c6afa29a4aea94a157e0a37aa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8528e0b6-d83e-475a-b2ae-90b4c4129d7f", + "x-ms-client-request-id": "aa2ba94c6afa29a4aea94a157e0a37aa", + "x-ms-correlation-request-id": "ca005e19-cd13-4f1c-8991-7e240aeff72e", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "ec650d9e-192d-4c01-b239-ae05ab3fc3b7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074614Z:ca005e19-cd13-4f1c-8991-7e240aeff72e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f62c45ad00eaacfce5ad9910ec2207f8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "cedcc254-c14a-4770-bdfc-2b0cce233fcf", + "x-ms-client-request-id": "f62c45ad00eaacfce5ad9910ec2207f8", + "x-ms-correlation-request-id": "8deef82c-9e5b-47f1-980e-adfd98d5076a", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "099334bf-6cdd-467f-b745-6fcd54eea1b6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074616Z:8deef82c-9e5b-47f1-980e-adfd98d5076a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "61b47af08f34dc0177c4cd8846a1c6d6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "83d9f5cd-8500-47b9-bab8-a7568df1c7de", + "x-ms-client-request-id": "61b47af08f34dc0177c4cd8846a1c6d6", + "x-ms-correlation-request-id": "7f08f638-52e8-4f8b-ac6b-02355397ff00", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "1133dbb3-8b41-431d-8baa-4d743491c26c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074618Z:7f08f638-52e8-4f8b-ac6b-02355397ff00" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a26b965f54874bd2ac7ec54dd0943d8c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0bc9af9b-ca4f-4c4c-8c9f-ff5d30ff92c4", + "x-ms-client-request-id": "a26b965f54874bd2ac7ec54dd0943d8c", + "x-ms-correlation-request-id": "0b1e5acc-63f1-4613-8780-4e145c0eb728", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "a2dfb49b-faf3-4dde-841a-483e2b3bed67", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074619Z:0b1e5acc-63f1-4613-8780-4e145c0eb728" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "042451a2d6551e7543507f2532736643", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "76b88124-ca13-4d64-90fc-1023c0f7a6be", + "x-ms-client-request-id": "042451a2d6551e7543507f2532736643", + "x-ms-correlation-request-id": "9ddafb4d-6df8-4000-8acb-1be392b8a280", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "4ec01578-0220-4edd-b13d-2c82d6499825", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074620Z:9ddafb4d-6df8-4000-8acb-1be392b8a280" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "55b0c3e764b69c71a768b4b6c9b40be2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f30f71ed-62ee-4f4a-accd-e343df309c39", + "x-ms-client-request-id": "55b0c3e764b69c71a768b4b6c9b40be2", + "x-ms-correlation-request-id": "b35a1cf9-f7d7-48e9-b8c2-a6ede78f737e", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "19473fa3-08cb-4a0c-a933-195f05c07475", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074621Z:b35a1cf9-f7d7-48e9-b8c2-a6ede78f737e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f4e54187c27d8980204d5f36d4ac1938", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "49597b22-e681-4829-b153-c432f6521724", + "x-ms-client-request-id": "f4e54187c27d8980204d5f36d4ac1938", + "x-ms-correlation-request-id": "8ee7b886-d3d0-4bdb-9395-81e03708a2e2", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "d9062123-7e6d-405d-be2d-c62f2732f8d6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074623Z:8ee7b886-d3d0-4bdb-9395-81e03708a2e2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0d668218e7e33ed5e0875dec21bf548e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d0b72b7a-0002-43e9-a467-2af21e5de897", + "x-ms-client-request-id": "0d668218e7e33ed5e0875dec21bf548e", + "x-ms-correlation-request-id": "5356dbd9-e8d9-4e6a-a531-8f3d9e647f00", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "84bf3794-99ea-4a90-ae09-f980f01dc3fd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074624Z:5356dbd9-e8d9-4e6a-a531-8f3d9e647f00" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f09e9c44718e25c543273568053ac8fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "575cb28a-2ff7-47f0-a5da-5c2358241b0e", + "x-ms-client-request-id": "f09e9c44718e25c543273568053ac8fa", + "x-ms-correlation-request-id": "eb4dac41-08b1-4dc0-b861-bad9ccb7d3d5", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "c5d2bee8-1eca-47ce-877f-14dd0d06b00a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074625Z:eb4dac41-08b1-4dc0-b861-bad9ccb7d3d5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "469e7b4ffe4ea0ff6ba714f664936761", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "508f8333-6465-4cf3-9dc3-37e62ed459b7", + "x-ms-client-request-id": "469e7b4ffe4ea0ff6ba714f664936761", + "x-ms-correlation-request-id": "349473c8-ecd8-428b-88f8-2fb53fb523e7", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "5e2866d3-38ad-4d14-99aa-a05a9d59790c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074627Z:349473c8-ecd8-428b-88f8-2fb53fb523e7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "37f2d0f8280ea6aabc41cabcb26c39a5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "89bd0532-ac1b-4aae-8899-dfff9a75482d", + "x-ms-client-request-id": "37f2d0f8280ea6aabc41cabcb26c39a5", + "x-ms-correlation-request-id": "354faf3d-5038-487f-af37-f7717d0a8684", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "9664baa3-c739-4d9b-b4b2-e320616515a7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074628Z:354faf3d-5038-487f-af37-f7717d0a8684" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a59d62bf0d2045409dfd84e65dcfc0af", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "64feffc3-172b-4d49-b04f-48a3d76950e9", + "x-ms-client-request-id": "a59d62bf0d2045409dfd84e65dcfc0af", + "x-ms-correlation-request-id": "1f024213-b5a1-4f29-86b7-bab8d7bf9967", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "41fa3ffa-974d-4391-9247-f40c4620ceec", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074629Z:1f024213-b5a1-4f29-86b7-bab8d7bf9967" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3470d3bf904826ebd1f8890d3443eefe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "165b310a-f819-4c58-9bd8-f98b2ee8d326", + "x-ms-client-request-id": "3470d3bf904826ebd1f8890d3443eefe", + "x-ms-correlation-request-id": "e1e04348-eac8-4581-8fff-34471c545116", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "3f0a31ba-f720-4f58-b519-9f9d6232935b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074631Z:e1e04348-eac8-4581-8fff-34471c545116" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "02366e6ec1f6eb408fac9a11a4c348ed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3ac69f7f-aea1-42e8-aa2f-44946db63281", + "x-ms-client-request-id": "02366e6ec1f6eb408fac9a11a4c348ed", + "x-ms-correlation-request-id": "da0bb0dd-9a71-458c-8334-6b3d54378d47", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "14ce4d10-643b-498d-b23b-d0b18a22e345", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074632Z:da0bb0dd-9a71-458c-8334-6b3d54378d47" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "defd1a8104fc2e5d7776d4288333105a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2063043f-9c1e-412e-aece-ccd140a65281", + "x-ms-client-request-id": "defd1a8104fc2e5d7776d4288333105a", + "x-ms-correlation-request-id": "e50de487-4a2b-4658-92a3-e33073412565", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "02375b07-3f06-4575-a5dc-7fd82e362e52", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074633Z:e50de487-4a2b-4658-92a3-e33073412565" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ee78850fbd98fdb89384a49bf5da820d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b8c5101f-67eb-4fc0-95e5-fe6c0cc1aec0", + "x-ms-client-request-id": "ee78850fbd98fdb89384a49bf5da820d", + "x-ms-correlation-request-id": "fd66aa08-4d7b-4c21-a85c-7a9b431d0b65", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "2a0b0c7b-a790-4a40-ab95-c7aae253bfa3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074634Z:fd66aa08-4d7b-4c21-a85c-7a9b431d0b65" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1a8c9caf0f46690211088a7fed17675c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c1526ac3-dee5-4730-86ae-5a8d2f1d6cf4", + "x-ms-client-request-id": "1a8c9caf0f46690211088a7fed17675c", + "x-ms-correlation-request-id": "650acfc4-a922-4fb8-968c-8f433877ea1b", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "3d652b5f-b0b1-4dcb-abcb-8e2733b35237", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074636Z:650acfc4-a922-4fb8-968c-8f433877ea1b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1e01409b594ac35461ff4b7760c1389d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e876b879-cb15-4d5e-af61-a60626352d34", + "x-ms-client-request-id": "1e01409b594ac35461ff4b7760c1389d", + "x-ms-correlation-request-id": "1d287c6c-f055-4b36-ad75-dda605125d8c", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "a989fb39-9c3d-4231-bccd-4b5efb5b5e94", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074637Z:1d287c6c-f055-4b36-ad75-dda605125d8c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e779c6f4f6a7ff14830fdd903338107b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0f7b0cba-641d-4da6-b56c-99beb14b7516", + "x-ms-client-request-id": "e779c6f4f6a7ff14830fdd903338107b", + "x-ms-correlation-request-id": "49117144-6ca5-4e81-8947-9f1ede8125a2", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "3198bbe9-e520-4631-96ec-1f7c12b92a51", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074638Z:49117144-6ca5-4e81-8947-9f1ede8125a2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b5ff481d64d856c348c8b846c48a0950", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "9e4630a9-7ef4-4d8b-a693-2dc7d337088c", + "x-ms-client-request-id": "b5ff481d64d856c348c8b846c48a0950", + "x-ms-correlation-request-id": "f26056f8-e474-4d4a-8167-8a4af511b845", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "0e88dbe7-4a2f-4fdf-8226-17e18cded9f0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074640Z:f26056f8-e474-4d4a-8167-8a4af511b845" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "268bedcf809ea5b52c019a3b7cc49029", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "bd30d429-6086-4513-a4fb-8f8ffa1c9553", + "x-ms-client-request-id": "268bedcf809ea5b52c019a3b7cc49029", + "x-ms-correlation-request-id": "a600648b-4a89-4ac5-ab05-51040a7df6a2", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "1469b799-28b4-4d7f-9d71-96f566a9775a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074641Z:a600648b-4a89-4ac5-ab05-51040a7df6a2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "185acfef83c190c403239fde3ecd3bf9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "dd03c725-308b-41ab-aafb-eec0c48e262e", + "x-ms-client-request-id": "185acfef83c190c403239fde3ecd3bf9", + "x-ms-correlation-request-id": "c87bcf86-c964-4147-aad8-de734d333035", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "483eb754-941b-48b9-99c3-fc42eb2b3f08", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074642Z:c87bcf86-c964-4147-aad8-de734d333035" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "45c08c06e9ad9ddd925a89d6c987d983", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "ecc92463-34c5-41de-a1fa-746aa2e9e159", + "x-ms-client-request-id": "45c08c06e9ad9ddd925a89d6c987d983", + "x-ms-correlation-request-id": "5079d106-a558-41d7-b09f-59f5f873fac2", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "26cae0a7-6dd5-4859-bde4-4e71eabe3002", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074644Z:5079d106-a558-41d7-b09f-59f5f873fac2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f4578f38f12f4c8e29fb227be1d6665e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3bd2e533-9642-4178-8be1-6f37e7f2aa32", + "x-ms-client-request-id": "f4578f38f12f4c8e29fb227be1d6665e", + "x-ms-correlation-request-id": "137de3bc-509e-4e4c-a6b9-078b6cc5798e", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "2c9af9a6-6f50-4067-80e4-79cb9998c0f8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074645Z:137de3bc-509e-4e4c-a6b9-078b6cc5798e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ef34a1c64a03057bf2bc8567f9eec67b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f47e5a5a-e53a-4819-9c7d-320370bfcc6c", + "x-ms-client-request-id": "ef34a1c64a03057bf2bc8567f9eec67b", + "x-ms-correlation-request-id": "b8b5f540-d300-42b6-9f5f-a23b8400960d", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "9148d855-3558-4538-93f9-fb3374e98be4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074646Z:b8b5f540-d300-42b6-9f5f-a23b8400960d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "afa51b49467614c9fe731cb1c761bcbb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "81afde18-6ff6-41ac-afec-e1cff39f25c6", + "x-ms-client-request-id": "afa51b49467614c9fe731cb1c761bcbb", + "x-ms-correlation-request-id": "12c8129a-958b-455d-ab53-0fc9f906767a", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "d982716c-87a6-4b4a-8657-508bc59c9ea5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074648Z:12c8129a-958b-455d-ab53-0fc9f906767a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "280f2af3e952ed7f135202736c27523a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "07c9a3b1-712c-4009-a7b1-8cc01505f5b0", + "x-ms-client-request-id": "280f2af3e952ed7f135202736c27523a", + "x-ms-correlation-request-id": "581d08fa-562d-44c7-a717-84c0112ef21d", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "ce411bda-49f3-403d-a65d-b28dfb8104f9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074649Z:581d08fa-562d-44c7-a717-84c0112ef21d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c531a635b73180e8d720f18f2eca3d90", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "52865581-c1e2-4007-8e49-8d6535ca3420", + "x-ms-client-request-id": "c531a635b73180e8d720f18f2eca3d90", + "x-ms-correlation-request-id": "dcf80bba-e9d6-4232-b7c2-c6305d2a16ed", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "34da507d-b66a-4515-9b41-4af231b11fe5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074651Z:dcf80bba-e9d6-4232-b7c2-c6305d2a16ed" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cf73c9ff9ede5f289bb79c244456a8d7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a8bfe4e6-a3ca-4539-9800-6fff9632a199", + "x-ms-client-request-id": "cf73c9ff9ede5f289bb79c244456a8d7", + "x-ms-correlation-request-id": "a3db583f-933a-49cb-a63e-1c0958a7913b", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "61daa4e6-7fc7-4d5d-95d9-9c2f1777c41a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074652Z:a3db583f-933a-49cb-a63e-1c0958a7913b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "207ce121f62f3c8a418f5032f8efbf48", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e6d4a671-e265-4f3d-a9b0-58a64c28248f", + "x-ms-client-request-id": "207ce121f62f3c8a418f5032f8efbf48", + "x-ms-correlation-request-id": "0ca92365-c01e-496b-94ce-2ecefc16b62f", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "75e0f062-5ba4-4966-afbe-5aa7e297ddc0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074653Z:0ca92365-c01e-496b-94ce-2ecefc16b62f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a273711483b3965c7dd22a791ac43b80", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e6278381-5dc7-4619-9401-f0d8c797deb6", + "x-ms-client-request-id": "a273711483b3965c7dd22a791ac43b80", + "x-ms-correlation-request-id": "229ca379-e405-417a-b52c-23005c48a40b", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "9de789af-2274-4c74-9170-799545b0ec20", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074654Z:229ca379-e405-417a-b52c-23005c48a40b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4c6e19771d4e09613e368d4e4df666ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "ae655de3-9b66-4de3-8d9e-b8d85f694a73", + "x-ms-client-request-id": "4c6e19771d4e09613e368d4e4df666ab", + "x-ms-correlation-request-id": "35892f4c-3568-4409-89cc-85b4b3caaeaa", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "02e4c94c-ec25-4384-98ed-eb57c2ac93d9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074656Z:35892f4c-3568-4409-89cc-85b4b3caaeaa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d30f53f806e39e2384e5a25dcc11227d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "34ee5cd0-910b-44b1-971b-f2e76764ea60", + "x-ms-client-request-id": "d30f53f806e39e2384e5a25dcc11227d", + "x-ms-correlation-request-id": "abbd90fe-c6ac-4221-b164-b0ea28f272de", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "7d4e0ef9-e971-4087-a14c-e7503929a3f1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074657Z:abbd90fe-c6ac-4221-b164-b0ea28f272de" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "debbd0547281f7fa0f6a637df50e4987", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ee844d32-9b1b-429c-bf70-46e0b84d0eb9", + "x-ms-client-request-id": "debbd0547281f7fa0f6a637df50e4987", + "x-ms-correlation-request-id": "39f4fcde-cff2-4c3a-86a7-63db137374c1", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "a88a7405-e389-4cda-8858-bf1e8ee0a9ee", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074658Z:39f4fcde-cff2-4c3a-86a7-63db137374c1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c6807e6b68b4719df6d0c8687a033c2d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "420c35b1-53c7-4f77-8413-7f2bc1559cce", + "x-ms-client-request-id": "c6807e6b68b4719df6d0c8687a033c2d", + "x-ms-correlation-request-id": "4f36b941-cff7-42e1-93bb-587cc59e547b", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "15395607-f7ca-4a68-b60f-5de9eb9b5a92", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074700Z:4f36b941-cff7-42e1-93bb-587cc59e547b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7dfa1014873a862a5918c379a2a6a876", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "222385d8-6801-4968-a625-1da17d296d40", + "x-ms-client-request-id": "7dfa1014873a862a5918c379a2a6a876", + "x-ms-correlation-request-id": "74c27430-854b-4c27-ae47-0ca1f1816363", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "bf68337a-d0b2-4e98-bd99-35f31e0f35ca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074701Z:74c27430-854b-4c27-ae47-0ca1f1816363" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4ef21b9b5b91ebc9324ae8b0aa917c0c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0d6cb404-288d-446c-baf6-f01fa6130791", + "x-ms-client-request-id": "4ef21b9b5b91ebc9324ae8b0aa917c0c", + "x-ms-correlation-request-id": "6936bf24-2cd2-447a-a6ce-7974c1b8b655", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "8c34138a-f94e-4ad1-9251-856023aa5618", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074702Z:6936bf24-2cd2-447a-a6ce-7974c1b8b655" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e569362ecc13e34c54fa6d9ba524ce50", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b7d07776-633b-4b1a-ac7b-e69a9586ca06", + "x-ms-client-request-id": "e569362ecc13e34c54fa6d9ba524ce50", + "x-ms-correlation-request-id": "85565e07-4006-479e-96b3-00ecfed5cdc5", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "e8db85c8-642a-451f-96b9-480e37869f7c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074704Z:85565e07-4006-479e-96b3-00ecfed5cdc5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5fcc5127ed11b89b460e4af09f79dcc7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "dd82ac07-781e-47fa-b854-ada21c2ba10f", + "x-ms-client-request-id": "5fcc5127ed11b89b460e4af09f79dcc7", + "x-ms-correlation-request-id": "9550d417-6ffc-4d64-bc5e-091e0fe35abc", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "7d37829c-0d75-47c5-95d4-39e0367a86fe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074706Z:9550d417-6ffc-4d64-bc5e-091e0fe35abc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6c4bb79cc33ccf62ce0ef996ee2d460e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f2859207-2219-470f-92ed-a041aa0b4231", + "x-ms-client-request-id": "6c4bb79cc33ccf62ce0ef996ee2d460e", + "x-ms-correlation-request-id": "5c316fe3-06e2-4b37-8180-a7424afb918a", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "dd43bf67-75ff-4c35-9a9c-5036251a2ca2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074707Z:5c316fe3-06e2-4b37-8180-a7424afb918a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5889987c1dc440fa9ab09e05815c43db", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "c2442e52-bedd-4c77-8e00-4ef61a28a487", + "x-ms-client-request-id": "5889987c1dc440fa9ab09e05815c43db", + "x-ms-correlation-request-id": "57162c19-ec64-4185-98e2-00da7da9905c", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "b6fb8659-2014-49cc-b6a5-986510ef0e6b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074708Z:57162c19-ec64-4185-98e2-00da7da9905c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "edffa51e62d96313effd9002f404c918", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ed21af28-1b59-4ec7-9f7b-324da23cf5e0", + "x-ms-client-request-id": "edffa51e62d96313effd9002f404c918", + "x-ms-correlation-request-id": "e66c8b5f-7591-41a2-bf13-b1508f44543a", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "76c847a9-94f8-4ba8-8117-e7c97f324692", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074709Z:e66c8b5f-7591-41a2-bf13-b1508f44543a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "07743cc883ef7e03bc0ad18c255d4d71", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8a3f0080-5953-434b-8fa4-fcc185a6e518", + "x-ms-client-request-id": "07743cc883ef7e03bc0ad18c255d4d71", + "x-ms-correlation-request-id": "9ba2b411-b88a-4068-9f8d-85404591d8b3", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "d9b109a6-3f96-4380-a65d-f98bc2f6ba9f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074711Z:9ba2b411-b88a-4068-9f8d-85404591d8b3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "49781eca582e1934842569c78df74b95", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0e527884-6d2f-4b3b-bfb5-d2fc299859b0", + "x-ms-client-request-id": "49781eca582e1934842569c78df74b95", + "x-ms-correlation-request-id": "de247b5e-92f0-4bc4-a5cb-ae471086c912", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "89c29cba-919c-4fea-8af2-1f57eeb7af9e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074712Z:de247b5e-92f0-4bc4-a5cb-ae471086c912" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "453d85e73ce89aeba28131ce90873e92", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3bb6f03d-93a0-4998-9b2d-1c96430292fb", + "x-ms-client-request-id": "453d85e73ce89aeba28131ce90873e92", + "x-ms-correlation-request-id": "23f50c3a-1f8e-4e08-9377-355dc3be9de3", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "65e25672-866d-482c-87d0-1866c5e8b103", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074713Z:23f50c3a-1f8e-4e08-9377-355dc3be9de3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d5381eaf808c6fea075a83c91a3bf1c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "65c358e2-006b-4857-8f9c-13912ecfbd85", + "x-ms-client-request-id": "d5381eaf808c6fea075a83c91a3bf1c5", + "x-ms-correlation-request-id": "daff0500-4f1f-4def-977d-48e00bb7e40c", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "d108cf3e-255d-4d57-a9ea-7cef8742f2ad", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074715Z:daff0500-4f1f-4def-977d-48e00bb7e40c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9fa53bbf08208e8933dea7ad276689fc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "49a64006-b07c-4edd-a493-d373bdfe3e9a", + "x-ms-client-request-id": "9fa53bbf08208e8933dea7ad276689fc", + "x-ms-correlation-request-id": "b76602b3-09b1-4faa-8970-977bf305fb3d", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "2a98eaee-5204-41a4-9c48-9e9405bf8e46", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074716Z:b76602b3-09b1-4faa-8970-977bf305fb3d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6e17d6e676bf66099bcd3d8db9217f66", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8b2babc3-08ad-4e68-9a17-27efcd875042", + "x-ms-client-request-id": "6e17d6e676bf66099bcd3d8db9217f66", + "x-ms-correlation-request-id": "8194b76a-04a6-422e-bcb5-b9072b02e9fb", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "170dfc08-40c7-4b12-8463-1256382101e3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074717Z:8194b76a-04a6-422e-bcb5-b9072b02e9fb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "550f6b909fe2a77295a9a2add83d48a1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9c72e09e-16dd-46bb-b808-a4ed408e3993", + "x-ms-client-request-id": "550f6b909fe2a77295a9a2add83d48a1", + "x-ms-correlation-request-id": "69762779-dc42-4c7e-83e7-1a8d116f21ab", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "9a6961d7-a892-4e77-af1b-f419c5e4a570", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074718Z:69762779-dc42-4c7e-83e7-1a8d116f21ab" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "43e286d183244805313e0452cafcd511", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4bee82eb-1e7e-48ed-b896-79192e751de7", + "x-ms-client-request-id": "43e286d183244805313e0452cafcd511", + "x-ms-correlation-request-id": "ead1cebe-b38e-463a-9714-52e5dc1c2ae9", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "35f2b8a9-a6d4-4b5b-9e20-fc8b857f2627", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074720Z:ead1cebe-b38e-463a-9714-52e5dc1c2ae9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bb1d415e3456471a646fd815d45b8e5d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "ac9633a0-e2f7-4bb7-88a4-2582c3267aae", + "x-ms-client-request-id": "bb1d415e3456471a646fd815d45b8e5d", + "x-ms-correlation-request-id": "314dc236-0b0e-49b1-bd42-ecd77022dc6b", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "693052a7-0690-4084-a234-c7d06da4a12f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074721Z:314dc236-0b0e-49b1-bd42-ecd77022dc6b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "33bc9b843c3e0d4165c623a49b1fdc99", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ab777a84-fd25-4eb7-a05d-799022809f01", + "x-ms-client-request-id": "33bc9b843c3e0d4165c623a49b1fdc99", + "x-ms-correlation-request-id": "f28eda29-6a8b-46b0-9c33-b30f0a7e257e", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "1df7070c-747e-4374-934f-04fb099b8133", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074722Z:f28eda29-6a8b-46b0-9c33-b30f0a7e257e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "974f90d48c209d4b6b9bdfb4aaf074d6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5c193cf1-79fa-4606-81e0-523873eb6336", + "x-ms-client-request-id": "974f90d48c209d4b6b9bdfb4aaf074d6", + "x-ms-correlation-request-id": "bfb27d1a-77e3-45d2-962a-b35258e57640", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "b627b870-ea8e-4e0b-af59-b3fda72416c7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074724Z:bfb27d1a-77e3-45d2-962a-b35258e57640" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2fcda6b0a23f22d3ff10558f1076ac45", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "1d9ca525-3264-4ea7-8dc5-04dafd6d8c20", + "x-ms-client-request-id": "2fcda6b0a23f22d3ff10558f1076ac45", + "x-ms-correlation-request-id": "71983b54-2f65-414b-adb1-c4317fedb3e4", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "cecf4939-7396-4abf-b65c-a209b8b4f55a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074725Z:71983b54-2f65-414b-adb1-c4317fedb3e4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "44413f92f60bf83d501ec7a35c8d6275", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "8f0942d3-4e3b-4683-b4f3-76ff7c389af5", + "x-ms-client-request-id": "44413f92f60bf83d501ec7a35c8d6275", + "x-ms-correlation-request-id": "5ad1c2cd-7e8c-4756-ae60-6c8fdedba884", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "c099c853-3459-40e2-b1c9-574166ab0265", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074727Z:5ad1c2cd-7e8c-4756-ae60-6c8fdedba884" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f5f34d52ad513259bd2d971036bb8cf4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "836ecf48-cdca-4396-a3cd-a2ab92ba224c", + "x-ms-client-request-id": "f5f34d52ad513259bd2d971036bb8cf4", + "x-ms-correlation-request-id": "055cb015-4d26-40a8-9e17-121423320f94", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "e6b12cbe-da9f-4328-b245-33645e3fbb9a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074728Z:055cb015-4d26-40a8-9e17-121423320f94" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6a219aef2faeb9ca68d5df20da30c572", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "fc913131-896a-4b89-b41b-1383e758c2d3", + "x-ms-client-request-id": "6a219aef2faeb9ca68d5df20da30c572", + "x-ms-correlation-request-id": "9f33f993-f2c1-436a-bf0e-8347717d42b7", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "3f9570f8-f8ef-4345-b36e-cc2df47ed815", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074730Z:9f33f993-f2c1-436a-bf0e-8347717d42b7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c33de0adb782e5f3e50f87de5e2dc194", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "839c4e9a-9088-4fb9-bf8f-f494b236b1dd", + "x-ms-client-request-id": "c33de0adb782e5f3e50f87de5e2dc194", + "x-ms-correlation-request-id": "d354ac31-b12f-4b0e-8c11-1295dd1fd8fb", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "ce881b08-3713-4c29-9c42-7a142e9c45a3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074731Z:d354ac31-b12f-4b0e-8c11-1295dd1fd8fb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c2b3d292f76b22c7823a8c7cce38578c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0c62fbb6-c031-407a-8eac-0ec50914cc48", + "x-ms-client-request-id": "c2b3d292f76b22c7823a8c7cce38578c", + "x-ms-correlation-request-id": "a6a6a199-b93d-4649-8586-723e1887af1f", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "7a61d880-6f3d-40f4-b6ee-132e16552ae4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074732Z:a6a6a199-b93d-4649-8586-723e1887af1f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "56622568c87e3872a63c849ea8eb5a3b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5a539566-268e-40de-bd6a-82ef43eee406", + "x-ms-client-request-id": "56622568c87e3872a63c849ea8eb5a3b", + "x-ms-correlation-request-id": "03233c1c-04e3-447b-8a69-4ec35c0ff03e", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "ec19da24-694d-4c26-86db-9f1f8f2c31d7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074733Z:03233c1c-04e3-447b-8a69-4ec35c0ff03e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "078e4a13027cb507181a41482a7616ad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "2f0d883d-bb9f-43d0-9df7-302c5a96fae4", + "x-ms-client-request-id": "078e4a13027cb507181a41482a7616ad", + "x-ms-correlation-request-id": "4fd96092-d304-41f0-a83a-695446250247", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "5a9cb6a8-e199-44a0-8884-5861747e86a8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074735Z:4fd96092-d304-41f0-a83a-695446250247" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3975fab76bcac916607b1c2e73287996", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "410c3559-7227-49ca-a6ec-641c2c2c0c53", + "x-ms-client-request-id": "3975fab76bcac916607b1c2e73287996", + "x-ms-correlation-request-id": "6e7bc6e3-d4ba-49f4-99bb-b7fb357570aa", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "473283ff-82da-4dd2-8c71-796874cfc737", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074736Z:6e7bc6e3-d4ba-49f4-99bb-b7fb357570aa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "836851df50a966101dad3d64872a0d2f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6d05957a-a71c-48a4-baf3-be5d68f65145", + "x-ms-client-request-id": "836851df50a966101dad3d64872a0d2f", + "x-ms-correlation-request-id": "23c0aaa4-c2ab-4218-82a8-5e5e74c1e22d", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "ee2f9c63-58b7-4d52-985f-d38f05fc53b1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074737Z:23c0aaa4-c2ab-4218-82a8-5e5e74c1e22d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aee7d7262076a87034c5a700e6d942f0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "9ae19b36-a8ec-4e5c-8bee-1ab2da36125e", + "x-ms-client-request-id": "aee7d7262076a87034c5a700e6d942f0", + "x-ms-correlation-request-id": "6a4178db-0105-46dc-bb80-163d8d04dea1", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "221d37b0-6b92-49a1-b653-5074ed3f0956", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074739Z:6a4178db-0105-46dc-bb80-163d8d04dea1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d968aaa0930e6703e90f1b1c2db14136", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "dc07a8ac-019c-4189-a2a5-a0af743a59b6", + "x-ms-client-request-id": "d968aaa0930e6703e90f1b1c2db14136", + "x-ms-correlation-request-id": "7be0eef0-6ddd-4952-9bfd-0d483a07439d", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "f524bbcd-bab9-4629-97f9-e0f9519cf9a4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074740Z:7be0eef0-6ddd-4952-9bfd-0d483a07439d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9b08ec6dcb41be20e0bf4fe4a90f8044", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "14b10ac1-f378-41f4-a40b-0a95124aca35", + "x-ms-client-request-id": "9b08ec6dcb41be20e0bf4fe4a90f8044", + "x-ms-correlation-request-id": "72d1e816-16e3-4cf2-aa1f-061c6b1f529e", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "3ec0c11e-db64-41f6-b787-8a24f2849dc8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074741Z:72d1e816-16e3-4cf2-aa1f-061c6b1f529e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ddc34d6b33c19221d47fc56605537b82", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7fce5003-03f2-4ed7-ba97-436eaa0e87c9", + "x-ms-client-request-id": "ddc34d6b33c19221d47fc56605537b82", + "x-ms-correlation-request-id": "b610c5d4-1100-4743-9e42-80de1732f518", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "b6a0648a-e2ae-4397-8fb7-3b2022c9fbdb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074743Z:b610c5d4-1100-4743-9e42-80de1732f518" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f9937083a6d1d5ae89a9f94e431ebeda", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6cf43360-2792-482e-a615-5d1628b31d24", + "x-ms-client-request-id": "f9937083a6d1d5ae89a9f94e431ebeda", + "x-ms-correlation-request-id": "336bbb29-5104-46e8-886e-3acdb826c057", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "1b2f5d49-3f45-4942-a0fc-f5f18d23eb86", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074744Z:336bbb29-5104-46e8-886e-3acdb826c057" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e0b1d78f64ee3974cb75c7c106bab98c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6c6ba982-a0f4-4cc2-9d30-b14f17820d15", + "x-ms-client-request-id": "e0b1d78f64ee3974cb75c7c106bab98c", + "x-ms-correlation-request-id": "43613a6a-b2b6-415e-995c-9dd22d7cc8ec", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "45df9f8b-51b6-4233-90e2-62ba4489769e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074746Z:43613a6a-b2b6-415e-995c-9dd22d7cc8ec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3861cc44867cc4739eee54173ad24fb5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "544a20ed-a426-435c-8575-de3cc912ab7c", + "x-ms-client-request-id": "3861cc44867cc4739eee54173ad24fb5", + "x-ms-correlation-request-id": "49b0336c-ebfd-4739-aa53-ed69ae142277", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "cd72ef35-9362-46d4-a116-b0e89a461987", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074748Z:49b0336c-ebfd-4739-aa53-ed69ae142277" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2dd7eac19aa21f94fb592e5bdeedcfcf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "525e5752-9702-497b-8400-f69f4da66fcb", + "x-ms-client-request-id": "2dd7eac19aa21f94fb592e5bdeedcfcf", + "x-ms-correlation-request-id": "6b186aa1-a448-4d6d-bc08-2d01fca8a5d6", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "22fe9543-72c8-4b0a-935d-a93f0ca2950b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074749Z:6b186aa1-a448-4d6d-bc08-2d01fca8a5d6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "770a6df085bd085d63ec42ff0f5dfff8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "44de49a2-a45e-4675-ac92-6437c0ae7b50", + "x-ms-client-request-id": "770a6df085bd085d63ec42ff0f5dfff8", + "x-ms-correlation-request-id": "c89bc509-b2c5-482c-a421-f2341a279ac0", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "284fa7b1-813b-40bf-96a9-bb4ed4e28589", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074751Z:c89bc509-b2c5-482c-a421-f2341a279ac0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1b0012268be3a9e937423c235817e6b1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "dccfd7d9-e631-43cb-b5a6-9e2c3460e5c5", + "x-ms-client-request-id": "1b0012268be3a9e937423c235817e6b1", + "x-ms-correlation-request-id": "2d1419be-12da-45c4-8cf2-ed6b7ec6bc5c", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-request-id": "b477ae90-0ae9-4572-8a96-e7bee2c1b90d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074752Z:2d1419be-12da-45c4-8cf2-ed6b7ec6bc5c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cd27851ed7c83bf88dcecab558940f9e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4d045ef5-4486-42fc-ad07-62233e4940dc", + "x-ms-client-request-id": "cd27851ed7c83bf88dcecab558940f9e", + "x-ms-correlation-request-id": "4627787e-0cd0-4ae6-8507-cea48f0d19d9", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "d0703a70-b50d-40a3-b090-e8283111b941", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074753Z:4627787e-0cd0-4ae6-8507-cea48f0d19d9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cc353559b4ec64eb83603f7a483ab04c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "47f5ecf3-e42f-40e6-876b-46e3cc4bf8a2", + "x-ms-client-request-id": "cc353559b4ec64eb83603f7a483ab04c", + "x-ms-correlation-request-id": "1a8bd842-ec78-44a6-8ae7-bc1d9bd99a6c", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "91ef4b28-8fab-4226-afc3-37aec3f3c791", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074754Z:1a8bd842-ec78-44a6-8ae7-bc1d9bd99a6c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8ae0900632354e3019c48d14c13351a2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3118a16e-3676-4c2c-9bc8-ee5d1f3ab570", + "x-ms-client-request-id": "8ae0900632354e3019c48d14c13351a2", + "x-ms-correlation-request-id": "cd51aa0d-1a93-4fbc-8b17-e000a346c48c", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "53d1cef1-3bec-441f-806f-d3b303e46c51", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074756Z:cd51aa0d-1a93-4fbc-8b17-e000a346c48c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "22c99e3219e16ac499c24968977df352", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a8341898-1db4-4b61-ba2a-366df31466c2", + "x-ms-client-request-id": "22c99e3219e16ac499c24968977df352", + "x-ms-correlation-request-id": "39986093-ed5e-4d47-94af-7aba4840fb5e", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "2994bfc7-acb2-4457-9e22-ae2c2ab66558", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074757Z:39986093-ed5e-4d47-94af-7aba4840fb5e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c7af7e1e84b4276805e6b22826d7a34f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3a4c1e8d-4bb5-4972-9fa9-30a451e11316", + "x-ms-client-request-id": "c7af7e1e84b4276805e6b22826d7a34f", + "x-ms-correlation-request-id": "d929ec48-9bf4-4238-a483-70a9d8933d15", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "c6ba3a1b-06ae-4bb0-8381-0bbc9750ce1f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074759Z:d929ec48-9bf4-4238-a483-70a9d8933d15" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aa489d0e8d70ec6acc76f172e9c7b79c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "a4969d4c-b720-4608-9a23-34d96db0999c", + "x-ms-client-request-id": "aa489d0e8d70ec6acc76f172e9c7b79c", + "x-ms-correlation-request-id": "9746ad47-ccca-4bbc-a23a-fffeecfe8957", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "93c22126-f1fb-4247-bca5-f23fb9fa04ff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074800Z:9746ad47-ccca-4bbc-a23a-fffeecfe8957" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "43f53ad18984adee35a21dfb669b44c1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "651f1d76-84d8-4b1b-931c-0e50457cab45", + "x-ms-client-request-id": "43f53ad18984adee35a21dfb669b44c1", + "x-ms-correlation-request-id": "b58b4388-12cd-424a-a165-067bc598c67e", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "717f13ad-2bc8-4dee-9785-921296de4aa2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074801Z:b58b4388-12cd-424a-a165-067bc598c67e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fa59f91f483591e214c2fb3d93f53e3d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2bc6aacd-b0b2-4922-8c92-45853b4db196", + "x-ms-client-request-id": "fa59f91f483591e214c2fb3d93f53e3d", + "x-ms-correlation-request-id": "51c92f0b-60b2-483b-9f52-89c5e841952b", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "5e14703e-8599-40cf-89b8-f94e71ecbf89", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074803Z:51c92f0b-60b2-483b-9f52-89c5e841952b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eb57162f60e185cbae9a74ce6f6f8630", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d81eadb8-ca6a-44de-bd1c-34f200079d64", + "x-ms-client-request-id": "eb57162f60e185cbae9a74ce6f6f8630", + "x-ms-correlation-request-id": "81b81892-256c-49e2-806a-07dfc2477598", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "db88c927-d1c0-41c3-af05-0270e0596662", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074804Z:81b81892-256c-49e2-806a-07dfc2477598" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ef532f32bc6e886758642fc18db01a3f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b5f8feb2-0bd3-41ee-902e-0b7730665dfc", + "x-ms-client-request-id": "ef532f32bc6e886758642fc18db01a3f", + "x-ms-correlation-request-id": "738dcfbc-ff8d-4c8e-9541-788c3a47862b", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "914d8a40-691a-4079-bc6b-4d62863eb8ac", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074805Z:738dcfbc-ff8d-4c8e-9541-788c3a47862b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "50cbdf645843bfdf2dd44c9ad41321a5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "fc908c36-705b-469c-a30a-fbdb30b09d73", + "x-ms-client-request-id": "50cbdf645843bfdf2dd44c9ad41321a5", + "x-ms-correlation-request-id": "c7884d44-7717-4ca1-8b7e-359d210361f4", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "6d87f119-be3c-4ef3-ae8d-3767f4f2bc44", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074807Z:c7884d44-7717-4ca1-8b7e-359d210361f4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "640bca3c4ea272cfafcf937d300af7fd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "64e098bd-5add-46c7-a754-8e35c06e9229", + "x-ms-client-request-id": "640bca3c4ea272cfafcf937d300af7fd", + "x-ms-correlation-request-id": "49c21aa9-1608-44ca-b59c-7bb8792c1f58", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "0ab35363-d42c-49b4-8c04-c718422024bf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074808Z:49c21aa9-1608-44ca-b59c-7bb8792c1f58" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8f6a348035a3d9ed4f93c19970ccb344", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b5d5cf1d-9e0f-41e6-bbf9-48fd4c983936", + "x-ms-client-request-id": "8f6a348035a3d9ed4f93c19970ccb344", + "x-ms-correlation-request-id": "d3742355-b6bc-4d9e-a02a-a8c19745f730", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "22ab5b1f-4b5e-4688-944a-f6cbb44a2850", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074809Z:d3742355-b6bc-4d9e-a02a-a8c19745f730" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c3848a42b5a5159c1058a174c5628e23", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "04ee9abf-bfbb-4815-86f5-afb12d905120", + "x-ms-client-request-id": "c3848a42b5a5159c1058a174c5628e23", + "x-ms-correlation-request-id": "cc8e5c68-8003-4af2-b4ae-3921742072d0", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "6df70cfd-1033-42cb-8dd2-7ed5f9f156b9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074811Z:cc8e5c68-8003-4af2-b4ae-3921742072d0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9f1a4fdc91a90601dd32140f8c3502e2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3e8bbee9-4551-47ec-a939-07d4fc926d8e", + "x-ms-client-request-id": "9f1a4fdc91a90601dd32140f8c3502e2", + "x-ms-correlation-request-id": "b10e1f38-a213-4681-b822-53e1af2b8476", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "f589c71f-d822-49e5-81e0-2db15b5e8ad9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074812Z:b10e1f38-a213-4681-b822-53e1af2b8476" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a63b4e1c3485ca5897547f4a947814ed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9d419e61-ff5c-4d05-afd7-e0082a806826", + "x-ms-client-request-id": "a63b4e1c3485ca5897547f4a947814ed", + "x-ms-correlation-request-id": "f842112c-98d7-4eb0-9e98-6537770c01b0", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "fd67b3e3-8739-46db-8ba7-3a7df4c9ba09", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074813Z:f842112c-98d7-4eb0-9e98-6537770c01b0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "21bd9e0413b1b09b887ee572a18d89da", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "c6cc244c-cdec-4085-b667-d77bf2ce0c56", + "x-ms-client-request-id": "21bd9e0413b1b09b887ee572a18d89da", + "x-ms-correlation-request-id": "fe9d4015-61b9-4c6e-a8dd-b0887fe1b988", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "ca2debb7-afe6-453c-94f5-beaf7c5b7ad0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074814Z:fe9d4015-61b9-4c6e-a8dd-b0887fe1b988" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7658be56e727a89ef650085512b67164", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e5dc5c81-bbf6-4c55-b040-a7ca375df226", + "x-ms-client-request-id": "7658be56e727a89ef650085512b67164", + "x-ms-correlation-request-id": "2cfb8da1-10ee-423e-99dc-338e827b6596", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "575ed164-b483-4cb3-b5ec-3af773de29aa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074816Z:2cfb8da1-10ee-423e-99dc-338e827b6596" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ee0a271de0780830b38a1e064ee5280a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "5d0fa596-9b45-451d-ac24-292f241ea110", + "x-ms-client-request-id": "ee0a271de0780830b38a1e064ee5280a", + "x-ms-correlation-request-id": "d3d89009-b00e-47a4-9eec-3bc3d796a7b7", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "77c283a6-20e7-440a-9f04-f674139aa1e6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074817Z:d3d89009-b00e-47a4-9eec-3bc3d796a7b7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d6f4a5cb9d201cc6ff152a610b459ed1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c5416bc1-3c68-42cd-89f0-c500e1f96129", + "x-ms-client-request-id": "d6f4a5cb9d201cc6ff152a610b459ed1", + "x-ms-correlation-request-id": "4a133cd2-5b5b-40d7-8776-761de4f479a7", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "fda22896-34b0-4f2f-abf9-fc1291caccb2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074818Z:4a133cd2-5b5b-40d7-8776-761de4f479a7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7955800c9a8275628d4fc39cc9975911", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "59564a65-7f71-4ccb-90df-fca393f6a3d4", + "x-ms-client-request-id": "7955800c9a8275628d4fc39cc9975911", + "x-ms-correlation-request-id": "b4dff2a3-54e6-4a67-a30e-464744733121", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "0e19a8ac-4cba-4a1d-b21b-8b0fe432864e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074820Z:b4dff2a3-54e6-4a67-a30e-464744733121" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6c8afd279bc2804461eeee62b6cffd6d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ef7d6c4f-5a66-42bb-8cf3-afdc1a76e64a", + "x-ms-client-request-id": "6c8afd279bc2804461eeee62b6cffd6d", + "x-ms-correlation-request-id": "b7b9a3f7-9b2e-4230-904e-e2814a4d8e9b", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "9e878d31-068d-4750-96cb-2ed096037515", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074821Z:b7b9a3f7-9b2e-4230-904e-e2814a4d8e9b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cefa4cecaf903087427e48d0da295368", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "f5e36fa8-62f7-4aaf-8b93-52d037ae9741", + "x-ms-client-request-id": "cefa4cecaf903087427e48d0da295368", + "x-ms-correlation-request-id": "ea95806c-d851-41c9-b2c3-0d08eb75a069", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "518601c3-bcf6-4cec-b206-d701bad7f431", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074822Z:ea95806c-d851-41c9-b2c3-0d08eb75a069" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0d3918bc31bb700e3cd51894abffbfbd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "878c3ebd-1f8f-4b82-a61e-93ae1d16061d", + "x-ms-client-request-id": "0d3918bc31bb700e3cd51894abffbfbd", + "x-ms-correlation-request-id": "cacd2684-75c2-42f2-8c73-623678efbefe", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "7d6e4036-2e14-461f-8423-ddc03f0b821d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074824Z:cacd2684-75c2-42f2-8c73-623678efbefe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7db055528b9d788176592a445273a538", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2cad74c1-9ea7-4a87-b6d5-1284c8db945c", + "x-ms-client-request-id": "7db055528b9d788176592a445273a538", + "x-ms-correlation-request-id": "e180f0e4-2420-474b-88a1-8cd7e3977f5b", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "fc7785c9-f078-4072-b910-98de584b291d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074825Z:e180f0e4-2420-474b-88a1-8cd7e3977f5b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9da6869aef96bab23d8991bb97f38542", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "be3ae72b-924b-4ef1-9592-fe247eefafe6", + "x-ms-client-request-id": "9da6869aef96bab23d8991bb97f38542", + "x-ms-correlation-request-id": "bfbf8f45-c436-412d-98fd-acb7eb429a80", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "1e049a68-8b4c-4385-b0cb-0f29852413ca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074827Z:bfbf8f45-c436-412d-98fd-acb7eb429a80" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "847e8bbfd67831cb97c1976107ca1ec9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "1913f973-ebc4-4829-aeab-37a05da258bb", + "x-ms-client-request-id": "847e8bbfd67831cb97c1976107ca1ec9", + "x-ms-correlation-request-id": "1b2f15fa-2d11-4220-a4c3-901a3e3d2e94", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "0bb6dc6e-5629-4eca-8c34-5a3811c19339", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074828Z:1b2f15fa-2d11-4220-a4c3-901a3e3d2e94" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "24f9df2f22596327a3f63f13f9c6e082", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "95bfa519-553d-496c-8ec2-274dec2c2f11", + "x-ms-client-request-id": "24f9df2f22596327a3f63f13f9c6e082", + "x-ms-correlation-request-id": "735d4bf1-04f4-4307-aed9-0ddb05065fb9", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "86796124-b7df-43e6-a3e5-ec8a83e7adb5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074829Z:735d4bf1-04f4-4307-aed9-0ddb05065fb9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c785e7d421f5c4bfbb7505d55850b272", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "87a9cf31-91bb-415e-8c0e-4ae76da0274b", + "x-ms-client-request-id": "c785e7d421f5c4bfbb7505d55850b272", + "x-ms-correlation-request-id": "b3c58d9c-d7b5-4932-9f7f-9bc3907bd49b", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "a975afd7-f7b8-46aa-b664-21cf0ec793ee", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074830Z:b3c58d9c-d7b5-4932-9f7f-9bc3907bd49b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b78bc86b60fa9de9641ae18296b737d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:48: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": "1a0dd74a-99f4-43c6-9e61-e125e4321895", + "x-ms-client-request-id": "b78bc86b60fa9de9641ae18296b737d1", + "x-ms-correlation-request-id": "c6d6add2-982a-4a36-a2da-85bffc48dead", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "2cf4b867-134f-4b3f-be52-3d73276e1a0e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074832Z:c6d6add2-982a-4a36-a2da-85bffc48dead" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "208d14e056450dd3203469e41c510a52", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "12455f87-1d48-423e-8cf8-44296d19e801", + "x-ms-client-request-id": "208d14e056450dd3203469e41c510a52", + "x-ms-correlation-request-id": "2f40661e-b881-457a-81f8-a4b92e1ef217", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "efc0ef00-987a-4424-9dcc-a246c004ba27", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074834Z:2f40661e-b881-457a-81f8-a4b92e1ef217" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "31a7cc43293a7388fee863da403c2e03", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "78a865af-6700-4f67-ba72-6bd16cad49a9", + "x-ms-client-request-id": "31a7cc43293a7388fee863da403c2e03", + "x-ms-correlation-request-id": "2af24220-339d-41f5-9517-6f2a4e02f983", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "e0082730-0425-416d-90bd-47b046d914cc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074835Z:2af24220-339d-41f5-9517-6f2a4e02f983" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "43f4343e92c3152df47e96c5f7048012", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "a38ca29b-509a-43e8-b47c-a4db653ab8b8", + "x-ms-client-request-id": "43f4343e92c3152df47e96c5f7048012", + "x-ms-correlation-request-id": "4f3bd09e-7663-471a-bad5-403b22dcc3cd", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "ad7827af-bd93-4bfe-a056-da5751ddbbf0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074836Z:4f3bd09e-7663-471a-bad5-403b22dcc3cd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ca3f8f100510b6968c1a215df3f9cde4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c495893e-53ac-41b3-b26d-2240ef4e6efb", + "x-ms-client-request-id": "ca3f8f100510b6968c1a215df3f9cde4", + "x-ms-correlation-request-id": "da18a20b-b4c4-4e0b-8a67-4a05ffd5153c", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "4bd72453-9c38-4a9f-9e18-d0eda7c7b804", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074838Z:da18a20b-b4c4-4e0b-8a67-4a05ffd5153c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e7a66506c75cb08f9f923cbb92c27cf9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "91aa00fc-9618-4344-99b4-62bb9d284a4d", + "x-ms-client-request-id": "e7a66506c75cb08f9f923cbb92c27cf9", + "x-ms-correlation-request-id": "84ffaa32-91f9-4909-a0ac-a816cb0aec01", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "81e8af28-0a69-45dc-a455-94a368c6ae99", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074839Z:84ffaa32-91f9-4909-a0ac-a816cb0aec01" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7a8385a5-498b-49c2-9c66-34b9d8a350fc?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b1ca506764fc38f39d3eb6a970cf22fb", + "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, 08 Sep 2021 07:48: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": "0c48d3e2-528d-497f-87f1-b902b8bd90e0", + "x-ms-client-request-id": "b1ca506764fc38f39d3eb6a970cf22fb", + "x-ms-correlation-request-id": "c260fcfd-789d-41ef-920f-ee67cca130e2", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "0d885391-a7b1-4256-a89f-6c8b4d570ac1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074840Z:c260fcfd-789d-41ef-920f-ee67cca130e2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-1533?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "91bfb1b1995e48b5008f2b7dc8da24ca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1536", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:48:40 GMT", + "ETag": "W/\u002278d3f0b4-6867-445c-a936-3470f418b674\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": "1873a8d4-a04e-4630-876a-697eb959e24b", + "x-ms-client-request-id": "91bfb1b1995e48b5008f2b7dc8da24ca", + "x-ms-correlation-request-id": "a903b179-d4a9-4bf9-a06f-5d95600aa7b4", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "8c56b1e4-1eab-4fba-9cbb-1376af1dceae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074840Z:a903b179-d4a9-4bf9-a06f-5d95600aa7b4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022bastion-1533\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-1533\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002278d3f0b4-6867-445c-a936-3470f418b674\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022dnsName\u0022: \u0022bst-6b852564-a1eb-4578-88ef-f9b542e98470.bastion.azure.com\u0022,\r\n", + " \u0022scaleUnits\u0022: 2,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022bastionIPConfig-5719\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-1533/bastionHostIpConfigurations/bastionIPConfig-5719\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002278d3f0b4-6867-445c-a936-3470f418b674\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts/bastionHostIpConfigurations\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/bastionrg-7251/providers/Microsoft.Network/publicIPAddresses/ip-3184\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121/subnets/AzureBastionSubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022bastionShareableLinks\u0022: {}\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-1533?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a2f6289d1c2ea2e8716d491e10e53fcf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1536", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:48:40 GMT", + "ETag": "W/\u002278d3f0b4-6867-445c-a936-3470f418b674\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": "261a4ad7-384c-4fac-992a-7f8ca5c70e96", + "x-ms-client-request-id": "a2f6289d1c2ea2e8716d491e10e53fcf", + "x-ms-correlation-request-id": "92945f30-9f09-4e83-8abd-2644cab4b339", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "1b6f76b8-550d-466d-b191-79d1c61d585c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074841Z:92945f30-9f09-4e83-8abd-2644cab4b339" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022bastion-1533\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-1533\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002278d3f0b4-6867-445c-a936-3470f418b674\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022dnsName\u0022: \u0022bst-6b852564-a1eb-4578-88ef-f9b542e98470.bastion.azure.com\u0022,\r\n", + " \u0022scaleUnits\u0022: 2,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022bastionIPConfig-5719\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-1533/bastionHostIpConfigurations/bastionIPConfig-5719\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002278d3f0b4-6867-445c-a936-3470f418b674\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts/bastionHostIpConfigurations\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/bastionrg-7251/providers/Microsoft.Network/publicIPAddresses/ip-3184\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121/subnets/AzureBastionSubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022bastionShareableLinks\u0022: {}\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e10a4170ea02cd9a9b81b16d38766fc2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1697", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:48: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": "2fb1fd82-e47e-45a0-80fa-794aa7cb7805", + "x-ms-client-request-id": "e10a4170ea02cd9a9b81b16d38766fc2", + "x-ms-correlation-request-id": "7b11d172-ad5a-44b1-947f-82e33255cfd7", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "ee5ec9e6-a575-44a6-9f99-fd6872b63b12", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074841Z:7b11d172-ad5a-44b1-947f-82e33255cfd7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022value\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022bastion-1533\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-1533\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002278d3f0b4-6867-445c-a936-3470f418b674\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022dnsName\u0022: \u0022bst-6b852564-a1eb-4578-88ef-f9b542e98470.bastion.azure.com\u0022,\r\n", + " \u0022scaleUnits\u0022: 2,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022bastionIPConfig-5719\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-1533/bastionHostIpConfigurations/bastionIPConfig-5719\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002278d3f0b4-6867-445c-a936-3470f418b674\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/bastionHosts/bastionHostIpConfigurations\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/bastionrg-7251/providers/Microsoft.Network/publicIPAddresses/ip-3184\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/virtualNetworks/vnet-6121/subnets/AzureBastionSubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022bastionShareableLinks\u0022: {}\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022\r\n", + " }\r\n", + " }\r\n", + " ]\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bastionrg-7251/providers/Microsoft.Network/bastionHosts/bastion-1533?api-version=2021-02-01", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager.Network/1.0.0-alpha.20210908.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "480bec197fd994ccc91d20f14f96381a", + "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/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 08 Sep 2021 07:48:42 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operationResults/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?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": "95e8167f-0c18-4177-b265-5ea35f35926a", + "x-ms-client-request-id": "480bec197fd994ccc91d20f14f96381a", + "x-ms-correlation-request-id": "26c70417-b050-4652-bcb2-23082212ff9a", + "x-ms-ratelimit-remaining-subscription-deletes": "14999", + "x-ms-request-id": "caef4c6b-adbc-4ca8-af57-d7c0e469dbcb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074842Z:26c70417-b050-4652-bcb2-23082212ff9a" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "230486fef7daf0f5747617e5caa97e04", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:48:42 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": "2b331be0-67e4-40bd-b9cc-4ca98e39e13a", + "x-ms-client-request-id": "230486fef7daf0f5747617e5caa97e04", + "x-ms-correlation-request-id": "35adc993-08d4-4c8c-9723-06fc1741ba68", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "16320a72-093c-49af-8c02-7bfbe03319bc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074842Z:35adc993-08d4-4c8c-9723-06fc1741ba68" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dc1d9649e769d6f32558b9b1781f294e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:48:43 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": "b6a17ca8-f0f2-4b04-85e0-6fa7a62aed80", + "x-ms-client-request-id": "dc1d9649e769d6f32558b9b1781f294e", + "x-ms-correlation-request-id": "9a881f3a-82b6-43fc-9722-dcc76fe464ba", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "ff754dba-5f5a-4523-83b2-0ec1211a80c0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074844Z:9a881f3a-82b6-43fc-9722-dcc76fe464ba" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c8f224b41492583f661c12592be2e8e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:48:44 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": "a231b575-9fa3-4c73-8e35-e3c2542408bf", + "x-ms-client-request-id": "c8f224b41492583f661c12592be2e8e5", + "x-ms-correlation-request-id": "02f733b7-26ff-4e44-b454-ff16dbe1b672", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "0824fd40-a86e-4906-8b77-97ccbb17858a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074845Z:02f733b7-26ff-4e44-b454-ff16dbe1b672" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d46302aa8c5d1692932efd823d447754", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:48:46 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": "2f8d5a6d-53b4-4eb6-9aef-26f2fc4161b9", + "x-ms-client-request-id": "d46302aa8c5d1692932efd823d447754", + "x-ms-correlation-request-id": "021a5540-6716-46f7-9b48-647612b82b73", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "a4cf771e-cd03-46de-9d0a-240bbd72a6c6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074846Z:021a5540-6716-46f7-9b48-647612b82b73" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a631c94cb5b6357257c4764cd599ab43", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:48:47 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": "1a6b1af2-c86a-4209-8fd0-34f2ca273561", + "x-ms-client-request-id": "a631c94cb5b6357257c4764cd599ab43", + "x-ms-correlation-request-id": "ff23c0fd-c061-4c48-8b7c-0dd90dc9c98d", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "319d4932-772d-46c1-a02a-1b78a9b489a2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074847Z:ff23c0fd-c061-4c48-8b7c-0dd90dc9c98d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7607d46f55bc27f092dc346316bd1b22", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:48:48 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": "f0a50277-7772-48d1-b223-6c3465d41249", + "x-ms-client-request-id": "7607d46f55bc27f092dc346316bd1b22", + "x-ms-correlation-request-id": "ee7483c6-1e60-4fb7-8018-d2dbc447ae2c", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "0e0f24c5-075f-4f6a-bcf8-62a71b05e468", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074849Z:ee7483c6-1e60-4fb7-8018-d2dbc447ae2c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "620dbda442b0f42e902e7c99164541fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:48:49 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": "d18dcbd4-d446-4133-b4f5-2fbac85c61c4", + "x-ms-client-request-id": "620dbda442b0f42e902e7c99164541fa", + "x-ms-correlation-request-id": "4d7f36c6-9238-42c3-9e1a-d20fca21a368", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "d0947001-414c-413c-8a9b-3801f7e2d986", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074850Z:4d7f36c6-9238-42c3-9e1a-d20fca21a368" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6812ba82013cf798d80913da800e1e99", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:48:51 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": "6045a934-a87f-46b7-9fa8-ccc17bc0c33b", + "x-ms-client-request-id": "6812ba82013cf798d80913da800e1e99", + "x-ms-correlation-request-id": "45264f20-43c6-47c4-95e7-702828ba8089", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "9ebdce0f-9544-41d0-b338-5582c8f8e6df", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074851Z:45264f20-43c6-47c4-95e7-702828ba8089" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "17a853a8488c2d92a612e68ed857114c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:48:52 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": "f4dc046c-34f8-4cfe-b4f1-6812afc8e7a7", + "x-ms-client-request-id": "17a853a8488c2d92a612e68ed857114c", + "x-ms-correlation-request-id": "a9cb7fb6-5162-4c1b-bf90-c2ddc3e66cae", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "93078ced-e97c-455a-a804-a0d4b264d2be", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074853Z:a9cb7fb6-5162-4c1b-bf90-c2ddc3e66cae" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5ce13a9ab3aba3e5251589a72e547381", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9904fd6d-d123-4229-8356-5a56ecc197fe", + "x-ms-client-request-id": "5ce13a9ab3aba3e5251589a72e547381", + "x-ms-correlation-request-id": "9d7a4119-2b3f-4226-8767-d48623fbe2e1", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "869cdc49-3e0c-4403-bde3-18585f74689c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074854Z:9d7a4119-2b3f-4226-8767-d48623fbe2e1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c2f0e20f2a9d396d27e4c2291a091f81", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3ee5f9e4-51d0-412b-ba40-df8a77c5c104", + "x-ms-client-request-id": "c2f0e20f2a9d396d27e4c2291a091f81", + "x-ms-correlation-request-id": "0f6a7b1a-2ebf-4671-88d8-3ce6802ee424", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "0ecf1fef-94d5-4df5-a9c3-7e45580f70cc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074855Z:0f6a7b1a-2ebf-4671-88d8-3ce6802ee424" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "463fc7f8c12df5ee6d04f176beebff51", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1477b432-f02c-438e-84b4-6959c88fa38e", + "x-ms-client-request-id": "463fc7f8c12df5ee6d04f176beebff51", + "x-ms-correlation-request-id": "06dee18b-f8d0-48e6-ae0f-0e15d3677cc7", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "f6c08bbe-e50e-496f-9561-5868672d9d31", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074856Z:06dee18b-f8d0-48e6-ae0f-0e15d3677cc7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f57e649f4e6670afcca734c6f0bb881b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1701a682-646d-4bd7-b74b-7de006e1599e", + "x-ms-client-request-id": "f57e649f4e6670afcca734c6f0bb881b", + "x-ms-correlation-request-id": "86149877-99b1-4e6c-9a37-2987fba70176", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "0b71a121-8251-4414-8a4a-ed3e73c60afe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074858Z:86149877-99b1-4e6c-9a37-2987fba70176" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "67af08f62d144e54f4fb559938f77a3c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "95b89855-f963-4e62-ae22-5f847a3d33eb", + "x-ms-client-request-id": "67af08f62d144e54f4fb559938f77a3c", + "x-ms-correlation-request-id": "ad959038-9882-432c-863f-d442ce689da5", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "dad207c8-70b8-4dc5-baba-a930bc01c278", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074859Z:ad959038-9882-432c-863f-d442ce689da5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b68a70e5298ba91b18cf79858d2704b1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9cb75be0-de5c-491e-a946-624b714a4f0d", + "x-ms-client-request-id": "b68a70e5298ba91b18cf79858d2704b1", + "x-ms-correlation-request-id": "50d3589f-34c5-4158-b16b-6bb530890c17", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "c1f9d743-27da-4970-8f50-123c3ede73dc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074900Z:50d3589f-34c5-4158-b16b-6bb530890c17" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b680d57b973b713d0f30006af91637d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "86777336-2bd2-42c8-bdac-0660112ae346", + "x-ms-client-request-id": "b680d57b973b713d0f30006af91637d5", + "x-ms-correlation-request-id": "b7fd957c-f21b-4935-8be0-029c31dcf9be", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "9c3fa2b6-9d5f-4029-8bbd-eea06e69ce33", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074902Z:b7fd957c-f21b-4935-8be0-029c31dcf9be" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "80e1f72cd231cc90ed054f45b4cfc0cc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e93e2ae8-71cb-4b36-af72-088e258d55b1", + "x-ms-client-request-id": "80e1f72cd231cc90ed054f45b4cfc0cc", + "x-ms-correlation-request-id": "22f565cf-e229-44f7-8f8b-8bea0d6aa396", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "81bdd518-b2fa-4dee-86de-ebf7c60ce2e2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074903Z:22f565cf-e229-44f7-8f8b-8bea0d6aa396" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "621da3f7c4764d013318a65a29b0b002", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "792484a0-cc97-4b2d-9fcc-d5ddd1ed5154", + "x-ms-client-request-id": "621da3f7c4764d013318a65a29b0b002", + "x-ms-correlation-request-id": "71f2a273-5563-4b95-9456-aaa6680132c8", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "e99a2abd-b21f-40a9-bad0-472fcf4d3985", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074905Z:71f2a273-5563-4b95-9456-aaa6680132c8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9559a3978346a98045b4c93548f7bd40", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d1835a98-5034-449a-bd1d-20eb7d1b9d2f", + "x-ms-client-request-id": "9559a3978346a98045b4c93548f7bd40", + "x-ms-correlation-request-id": "4a5467b9-1eef-4f37-a257-a1c5bf74ad51", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "5483b12e-de89-49a7-86ea-d7de9a35cd7e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074906Z:4a5467b9-1eef-4f37-a257-a1c5bf74ad51" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5573346fd5f8685ff6934c182b36a33c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "bc1e89f2-9b08-4e28-b0cd-1eda9579c3c8", + "x-ms-client-request-id": "5573346fd5f8685ff6934c182b36a33c", + "x-ms-correlation-request-id": "84b967e5-7f9a-49c3-9a7b-3acb7469338c", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-request-id": "e5688487-df0d-458c-b743-f316e2184e9e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074908Z:84b967e5-7f9a-49c3-9a7b-3acb7469338c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "10ae4d552b75738623731dc2fbcb053c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9821ed53-6b2e-4243-8795-bb67da4aa42b", + "x-ms-client-request-id": "10ae4d552b75738623731dc2fbcb053c", + "x-ms-correlation-request-id": "594787c1-f75d-44c7-b92e-8751ad6fc4b2", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "374545bf-8807-4b7e-8f4b-a211edfe9517", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074909Z:594787c1-f75d-44c7-b92e-8751ad6fc4b2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f4ea665a5a3dc10944f19eb237677e0f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "cc98b500-6fda-4a56-a8c4-783a87c81e30", + "x-ms-client-request-id": "f4ea665a5a3dc10944f19eb237677e0f", + "x-ms-correlation-request-id": "08ed9fb9-66fb-4c08-b3ad-dc0c85233962", + "x-ms-ratelimit-remaining-subscription-reads": "11788", + "x-ms-request-id": "4048a301-68eb-42f6-bf71-e61ba6f013cb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074911Z:08ed9fb9-66fb-4c08-b3ad-dc0c85233962" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fbe08d10ad4944caad003285b79d6d2b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e19cdbc3-53a0-4e5d-a2c0-f6d021773c81", + "x-ms-client-request-id": "fbe08d10ad4944caad003285b79d6d2b", + "x-ms-correlation-request-id": "c77e163f-beac-4343-b90e-e8c28c818115", + "x-ms-ratelimit-remaining-subscription-reads": "11787", + "x-ms-request-id": "109c2175-05ea-4f09-8a26-ddd3ce5e9541", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074912Z:c77e163f-beac-4343-b90e-e8c28c818115" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c4bd108eae4bfafe43eccb848cd43cbb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "dcf0d439-f982-4f63-84e9-fd38cf152e21", + "x-ms-client-request-id": "c4bd108eae4bfafe43eccb848cd43cbb", + "x-ms-correlation-request-id": "18692c23-a388-4b5c-80ce-da0e947c4251", + "x-ms-ratelimit-remaining-subscription-reads": "11786", + "x-ms-request-id": "bb479457-88d3-46a8-802a-19d39ec7104a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074913Z:18692c23-a388-4b5c-80ce-da0e947c4251" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6eb10ef409eaadf29ba6473d288409a7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2f94c64c-bec5-4b20-8e9b-5359b72c0067", + "x-ms-client-request-id": "6eb10ef409eaadf29ba6473d288409a7", + "x-ms-correlation-request-id": "00280f9c-3d26-4a88-a1d9-ffb670c70f21", + "x-ms-ratelimit-remaining-subscription-reads": "11785", + "x-ms-request-id": "ba889ab3-4c74-46f9-84ce-98ead5c549b0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074915Z:00280f9c-3d26-4a88-a1d9-ffb670c70f21" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "26237384baa962c38ee6b75ce145b7d9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ee9af5c5-ad68-4528-a82d-93dce1a8eb5c", + "x-ms-client-request-id": "26237384baa962c38ee6b75ce145b7d9", + "x-ms-correlation-request-id": "7002476b-7cc2-43f7-b660-fc136210d128", + "x-ms-ratelimit-remaining-subscription-reads": "11784", + "x-ms-request-id": "58312bed-5e3c-4c4a-81cc-b1cc08da6334", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074916Z:7002476b-7cc2-43f7-b660-fc136210d128" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a99077c3ffec85411d1028a567c1d2bf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "f11d09ec-0925-462a-9197-8112a3312e7d", + "x-ms-client-request-id": "a99077c3ffec85411d1028a567c1d2bf", + "x-ms-correlation-request-id": "a82d11db-3aa0-4697-b26c-5ca9f3560b3e", + "x-ms-ratelimit-remaining-subscription-reads": "11783", + "x-ms-request-id": "5d82604e-a72e-4527-93a2-efcae7c5b281", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074917Z:a82d11db-3aa0-4697-b26c-5ca9f3560b3e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "190024e215b03a114a4edf035296cb55", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ef555004-5522-403a-9767-a2c0b314d199", + "x-ms-client-request-id": "190024e215b03a114a4edf035296cb55", + "x-ms-correlation-request-id": "baef4463-54b5-47c2-8c0d-58050c4a941d", + "x-ms-ratelimit-remaining-subscription-reads": "11782", + "x-ms-request-id": "36aa162f-3000-4d9d-84eb-14763c4e29a5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074918Z:baef4463-54b5-47c2-8c0d-58050c4a941d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b0796dee60f385bb319e0899911efacc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "633f6e30-1ab8-4127-9198-1ca06a9a4707", + "x-ms-client-request-id": "b0796dee60f385bb319e0899911efacc", + "x-ms-correlation-request-id": "304bba75-5865-4022-8bce-d6964d294c2e", + "x-ms-ratelimit-remaining-subscription-reads": "11781", + "x-ms-request-id": "e7777ba5-b434-43b3-a502-d3fbcfe5ad70", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074920Z:304bba75-5865-4022-8bce-d6964d294c2e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bc79f7139e45ae2866555f9d1f3d3387", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "63ae3570-b2ec-4c8c-b162-ba1e2971706c", + "x-ms-client-request-id": "bc79f7139e45ae2866555f9d1f3d3387", + "x-ms-correlation-request-id": "ef9aa4bc-395c-497c-8a34-2f7ef0cf950d", + "x-ms-ratelimit-remaining-subscription-reads": "11780", + "x-ms-request-id": "777d878b-cc04-45f2-a9de-baef95dde46b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074921Z:ef9aa4bc-395c-497c-8a34-2f7ef0cf950d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f9b6d244214882cb697be7120d77a92b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a9f8694c-c542-49c9-be43-6898729e5d8d", + "x-ms-client-request-id": "f9b6d244214882cb697be7120d77a92b", + "x-ms-correlation-request-id": "77bc601d-f989-4542-a040-b8bb9a108c16", + "x-ms-ratelimit-remaining-subscription-reads": "11779", + "x-ms-request-id": "8867e269-ce3e-4563-ab91-428c0d62c2cd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074922Z:77bc601d-f989-4542-a040-b8bb9a108c16" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5aef13530e1c4f1044cb4a9e011d65f4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "94a4292f-f2f0-40cb-9615-e9967d7677c4", + "x-ms-client-request-id": "5aef13530e1c4f1044cb4a9e011d65f4", + "x-ms-correlation-request-id": "d01ad979-b8e1-4a17-8ec1-8873f3f2383d", + "x-ms-ratelimit-remaining-subscription-reads": "11778", + "x-ms-request-id": "df0eb03f-eadf-41c5-a237-2914cc7c5968", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074924Z:d01ad979-b8e1-4a17-8ec1-8873f3f2383d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "be54816a0067f2842bf753c9b615a0ee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b7045ebd-6208-44c3-b4a0-066711d6ee18", + "x-ms-client-request-id": "be54816a0067f2842bf753c9b615a0ee", + "x-ms-correlation-request-id": "6119ea4d-45bf-45b6-8622-b31009399fa3", + "x-ms-ratelimit-remaining-subscription-reads": "11777", + "x-ms-request-id": "3631257a-9824-4b9e-ad31-67f487fbb36f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074925Z:6119ea4d-45bf-45b6-8622-b31009399fa3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0b4933acd94d356ac267b47cd72d814b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "685e4b9b-442c-42c7-bacf-3fd234b2d33d", + "x-ms-client-request-id": "0b4933acd94d356ac267b47cd72d814b", + "x-ms-correlation-request-id": "0a744a7c-5586-4331-8313-18f0b3c24564", + "x-ms-ratelimit-remaining-subscription-reads": "11776", + "x-ms-request-id": "aab76259-fbcb-4add-b910-610a21519bc7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074926Z:0a744a7c-5586-4331-8313-18f0b3c24564" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8ca7f315ea2252c38efd2e24bb46992f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "5b007f84-5457-4e40-9c6f-6b5f000a7097", + "x-ms-client-request-id": "8ca7f315ea2252c38efd2e24bb46992f", + "x-ms-correlation-request-id": "311cf702-3990-4fc4-9f8f-5de49c88acf9", + "x-ms-ratelimit-remaining-subscription-reads": "11775", + "x-ms-request-id": "fc519f93-e12a-450e-80dc-d166172551ed", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074927Z:311cf702-3990-4fc4-9f8f-5de49c88acf9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cdf15c2a5ad491a6161ffc004c071afe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "da3acccc-d7da-4c35-9886-ef49e3bf9cde", + "x-ms-client-request-id": "cdf15c2a5ad491a6161ffc004c071afe", + "x-ms-correlation-request-id": "43981bf8-5213-44e9-a3bd-755f29504928", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "abfaa25d-3f2d-4088-a1e4-f4d1d140153c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074929Z:43981bf8-5213-44e9-a3bd-755f29504928" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c2b40776146dc1cb6ff67d4faa467a7b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "6d7dd15b-a66a-472b-ba51-d58cf018389b", + "x-ms-client-request-id": "c2b40776146dc1cb6ff67d4faa467a7b", + "x-ms-correlation-request-id": "47d8d47d-2105-4a8d-a3d2-af0b31f326e3", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "735c120e-2086-46dc-8f2b-e14807e6c5fa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074931Z:47d8d47d-2105-4a8d-a3d2-af0b31f326e3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7b5185cdb33cbb774c167603eec30686", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "deb49e6f-d0ca-477a-b30e-50dc9eb3c31b", + "x-ms-client-request-id": "7b5185cdb33cbb774c167603eec30686", + "x-ms-correlation-request-id": "f590deb0-4fdf-44a9-b83f-00fc32fbaf10", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "ad2528f2-7c46-4340-997d-5fc8cd5c238d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074932Z:f590deb0-4fdf-44a9-b83f-00fc32fbaf10" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b3ae30e2d69216c190305edddc56e7d0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "de7446d1-a26e-45e9-891a-7bae83853177", + "x-ms-client-request-id": "b3ae30e2d69216c190305edddc56e7d0", + "x-ms-correlation-request-id": "be0adf32-3119-4087-a69f-54c18367d323", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "0b5a28e2-df19-4b43-afe9-0447bddea325", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074934Z:be0adf32-3119-4087-a69f-54c18367d323" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c63280a49fb6c2c290f875579dc7d2ac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e14b9564-c6c2-4959-a72f-952b4c0c1e07", + "x-ms-client-request-id": "c63280a49fb6c2c290f875579dc7d2ac", + "x-ms-correlation-request-id": "66681d0c-7244-450e-9639-c1ba507e0171", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "f3366638-8b82-49b2-b660-b10a4b302819", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074935Z:66681d0c-7244-450e-9639-c1ba507e0171" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7a6cf6efc697f7e9c43bea0b559adef6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "73e2e264-f9bd-4df8-a468-bc6803ffef23", + "x-ms-client-request-id": "7a6cf6efc697f7e9c43bea0b559adef6", + "x-ms-correlation-request-id": "7c2ef968-f91c-453a-ba7d-bf9690bba6e4", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "04888bd7-6cb4-4f09-92cc-b2e73102316e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074936Z:7c2ef968-f91c-453a-ba7d-bf9690bba6e4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6e5fa62f409043d06eeb2399606978c9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0c0f4639-5297-44df-9122-35d7a621bf02", + "x-ms-client-request-id": "6e5fa62f409043d06eeb2399606978c9", + "x-ms-correlation-request-id": "95baef31-bef4-474d-a070-2402ad4d799f", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "0daa05da-94be-4b9a-9556-064417e1eae3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074938Z:95baef31-bef4-474d-a070-2402ad4d799f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e6edb25d6ceadd38963b017bb4b66df6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a048c536-8dbb-4536-a412-45a8d4c2e140", + "x-ms-client-request-id": "e6edb25d6ceadd38963b017bb4b66df6", + "x-ms-correlation-request-id": "5cb74773-a6e0-43f8-8e4e-08fb4d8f9195", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "58728719-62d4-4af1-9002-315aa0049921", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074939Z:5cb74773-a6e0-43f8-8e4e-08fb4d8f9195" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f7287f196468af1b25290caca34f975a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ec7b21ab-6f8a-412a-a2ac-84dad7fafbbd", + "x-ms-client-request-id": "f7287f196468af1b25290caca34f975a", + "x-ms-correlation-request-id": "709a92e6-2e3c-4526-a442-12ff00c03041", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "c555cfff-f7e1-4ef1-9165-542830763f38", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074940Z:709a92e6-2e3c-4526-a442-12ff00c03041" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a3ae21c2f8acc20c6e81d7553e558eb7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "fe9834d0-2b2b-4c28-9c68-36f36f1c7392", + "x-ms-client-request-id": "a3ae21c2f8acc20c6e81d7553e558eb7", + "x-ms-correlation-request-id": "b1d2ad46-dfb2-4780-88e0-02d226c0c4e2", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "f9f82b5b-1d8f-4bb2-904e-dfec310eed57", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074942Z:b1d2ad46-dfb2-4780-88e0-02d226c0c4e2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e07f2c7d8141f960963dc0c05f8b3a47", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7f7c31a9-1444-4e6f-8b53-41af79fd79fc", + "x-ms-client-request-id": "e07f2c7d8141f960963dc0c05f8b3a47", + "x-ms-correlation-request-id": "53bbc879-1df6-475a-bcbd-dddb1320be59", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "1fccab19-4684-42d8-bd0b-4700dd184556", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074943Z:53bbc879-1df6-475a-bcbd-dddb1320be59" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "93b8a7a4ca072149736589e78cc670d0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8609b66b-459e-4c56-8678-98140e52c6b1", + "x-ms-client-request-id": "93b8a7a4ca072149736589e78cc670d0", + "x-ms-correlation-request-id": "4b753974-ce38-40b1-b131-f6c62a86fefc", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "eae0f5a2-007d-4d10-8a72-0cf68ad4ca33", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074944Z:4b753974-ce38-40b1-b131-f6c62a86fefc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "762e549ab6cf4119c1b50c6e374b63e2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "5681f962-93ea-4f63-a62c-21a6a28d11c0", + "x-ms-client-request-id": "762e549ab6cf4119c1b50c6e374b63e2", + "x-ms-correlation-request-id": "557b5a98-0e6a-4b9e-9af7-74eb1a7c1dd2", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "32f34c08-c83e-4d58-bac8-d23d7b8f24f6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074945Z:557b5a98-0e6a-4b9e-9af7-74eb1a7c1dd2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "97b19046fb9cb3b0e35e6cdbf7786ccf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "fef4a5e3-a287-4eb5-a135-ebeec8e751f0", + "x-ms-client-request-id": "97b19046fb9cb3b0e35e6cdbf7786ccf", + "x-ms-correlation-request-id": "365914a7-90ad-4be2-af10-b19c774b83b1", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "046ef6f9-2ee5-49dd-9920-3b0454402a25", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074947Z:365914a7-90ad-4be2-af10-b19c774b83b1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0a26efcdc35ced778d77d251bddbe928", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e5323599-4f8e-41c3-bd57-c42d6941332c", + "x-ms-client-request-id": "0a26efcdc35ced778d77d251bddbe928", + "x-ms-correlation-request-id": "84e74306-4de0-4127-9020-f0da625454b7", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "e19e25ce-b822-4619-969e-b05d9a749c0b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074948Z:84e74306-4de0-4127-9020-f0da625454b7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fba0a702d9159f34a47b9371493e4948", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8cfb32f6-6c5e-42ce-82cc-b0aade69e7a9", + "x-ms-client-request-id": "fba0a702d9159f34a47b9371493e4948", + "x-ms-correlation-request-id": "e7cdd168-fb78-400f-a5cd-f826a93e2c5c", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "4be81b59-2654-4841-9b15-e3a20968c0c5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074949Z:e7cdd168-fb78-400f-a5cd-f826a93e2c5c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "48a13d485825838519c30924295ef507", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ea6acd5d-000d-42d0-b4fa-30c5af728a10", + "x-ms-client-request-id": "48a13d485825838519c30924295ef507", + "x-ms-correlation-request-id": "def72fce-a848-4eec-809b-b3dd89c3c144", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "3ed450d9-009a-4507-b3ee-83b24a15626f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074950Z:def72fce-a848-4eec-809b-b3dd89c3c144" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "50d8447470d8f3babb8666e12f06a34f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6dfaf331-b3e0-4d7a-a310-c12bcf1e2b29", + "x-ms-client-request-id": "50d8447470d8f3babb8666e12f06a34f", + "x-ms-correlation-request-id": "1491f696-b3a1-483d-8da0-e7cfe940a60a", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "b9826b46-6902-4b25-8407-75f76f4e0bdf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074952Z:1491f696-b3a1-483d-8da0-e7cfe940a60a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8009892da139a903211de251d00f7545", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "97aec8a0-ed0b-4495-a72e-abc4b2be9458", + "x-ms-client-request-id": "8009892da139a903211de251d00f7545", + "x-ms-correlation-request-id": "8c2be7b4-0afd-4a58-8fd9-aa1736eb6502", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "fd12d3e0-ea2b-428c-a7be-83be293894d8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074953Z:8c2be7b4-0afd-4a58-8fd9-aa1736eb6502" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "05fc8b86f965d77082ae8d9ef2a45313", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "7b6162fe-44cd-40e6-8472-f0d90490495f", + "x-ms-client-request-id": "05fc8b86f965d77082ae8d9ef2a45313", + "x-ms-correlation-request-id": "3d6c2b81-7927-45de-8684-49461b918ff4", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "8eaa3829-6d6a-4f80-9486-9a30ea814b55", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074955Z:3d6c2b81-7927-45de-8684-49461b918ff4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9ff7b9207455d3ce412f2ebb8e6822ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "11e51226-89aa-431e-8cf4-bda55a25b49e", + "x-ms-client-request-id": "9ff7b9207455d3ce412f2ebb8e6822ab", + "x-ms-correlation-request-id": "61b6ac86-2f75-4100-a435-504c2bad9ec3", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "e65eb194-68f1-4039-9a69-92a075e6e58e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074957Z:61b6ac86-2f75-4100-a435-504c2bad9ec3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a35a20119e0933ea1931fd8b1464b77d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e38d7127-e88a-4a4c-b175-661c26cc7ff4", + "x-ms-client-request-id": "a35a20119e0933ea1931fd8b1464b77d", + "x-ms-correlation-request-id": "e779025a-75d5-4271-8f0f-acdcb314293d", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "4d5d2300-18b6-44ea-ba74-d4cf6f68cf30", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T074958Z:e779025a-75d5-4271-8f0f-acdcb314293d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1631cfc9d51811f0bd29c335cbb4491a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "969f5885-bba1-4e7d-826d-846707266391", + "x-ms-client-request-id": "1631cfc9d51811f0bd29c335cbb4491a", + "x-ms-correlation-request-id": "784f87cd-65ad-4510-8efe-f7b9b6fd455b", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "deb48cce-61ec-49de-a1fd-519ceddb1732", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075000Z:784f87cd-65ad-4510-8efe-f7b9b6fd455b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d18de18baf498109cfc386247643bedc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "02434c0c-2dbd-465b-95d4-bd1012d98517", + "x-ms-client-request-id": "d18de18baf498109cfc386247643bedc", + "x-ms-correlation-request-id": "c980910b-2a06-468e-947a-c2f24e4f1ab2", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "70355e87-d791-48e2-868a-3b578f263962", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075001Z:c980910b-2a06-468e-947a-c2f24e4f1ab2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bef2b0780b363b923049e6e0dab46764", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "bc880bea-0133-4b3c-8757-8a34c66a0d64", + "x-ms-client-request-id": "bef2b0780b363b923049e6e0dab46764", + "x-ms-correlation-request-id": "a0c8000b-350c-46d2-807a-e01f392ab7ff", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "0226e9eb-3986-4bec-8c79-e18348435531", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075002Z:a0c8000b-350c-46d2-807a-e01f392ab7ff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "32ffe3e7e5d71934c6af47554fcb9a79", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0a2c6118-aeab-4eca-909a-e0f3a0e9f3eb", + "x-ms-client-request-id": "32ffe3e7e5d71934c6af47554fcb9a79", + "x-ms-correlation-request-id": "c710a00c-f798-40e6-9a01-ef8b7f514789", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "ef18df5f-c3d5-46d3-a6ca-b9bd69f1a753", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075004Z:c710a00c-f798-40e6-9a01-ef8b7f514789" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1bbde76a8bc280e34f51a1ffc929a71a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "78379b79-4948-40b0-a006-f9e946ce4154", + "x-ms-client-request-id": "1bbde76a8bc280e34f51a1ffc929a71a", + "x-ms-correlation-request-id": "9e3f2447-d91f-48ed-b6b3-90b7708eaa20", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "a4d634be-02cd-4ab9-8775-fd5194a02b8c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075005Z:9e3f2447-d91f-48ed-b6b3-90b7708eaa20" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "933d215b8c4492047cd8f886c33deb64", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "abb97083-5506-4498-9492-1fc3949f623d", + "x-ms-client-request-id": "933d215b8c4492047cd8f886c33deb64", + "x-ms-correlation-request-id": "0a89b686-1af1-44c2-b2b3-4bcf9f99c9e9", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "f5fa00cb-3da5-49c2-beab-f795c0dd9a10", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075006Z:0a89b686-1af1-44c2-b2b3-4bcf9f99c9e9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f2756caf4cf75ca1ff7fe3854434509c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "2e238616-d1ba-4ac9-aa91-17808cc6d793", + "x-ms-client-request-id": "f2756caf4cf75ca1ff7fe3854434509c", + "x-ms-correlation-request-id": "1d5a760c-f617-43de-bda0-96eca5dd2969", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "27d8491d-12b3-4ea7-85c7-854545099d04", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075008Z:1d5a760c-f617-43de-bda0-96eca5dd2969" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2ef92d08068ede35e22a9eea925dbc11", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8a1fdc93-dc31-43cb-a432-6abfb7231668", + "x-ms-client-request-id": "2ef92d08068ede35e22a9eea925dbc11", + "x-ms-correlation-request-id": "f73eaff5-1dbe-48a8-9c5f-716bca3d0ca8", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "05c6b861-984b-415d-9bac-66dfdf567403", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075009Z:f73eaff5-1dbe-48a8-9c5f-716bca3d0ca8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5c503c66b4b30e227fe093c4a87f4e47", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3278d9c2-f7d0-4c09-aa12-3ba2c852061f", + "x-ms-client-request-id": "5c503c66b4b30e227fe093c4a87f4e47", + "x-ms-correlation-request-id": "5c3b7607-be1a-496f-9749-f6e9ee0c0724", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "e830eceb-edaf-4c7b-be57-0739bfafa1fe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075010Z:5c3b7607-be1a-496f-9749-f6e9ee0c0724" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "957e5b88bd43a8d5379710ccadb7c9a2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "fc603877-3495-4ed3-96b2-06b373058280", + "x-ms-client-request-id": "957e5b88bd43a8d5379710ccadb7c9a2", + "x-ms-correlation-request-id": "a559e940-0cc8-4b07-bf73-a46f93b124fc", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "9665a496-6f88-44dc-937b-2b049e468228", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075011Z:a559e940-0cc8-4b07-bf73-a46f93b124fc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "071fd1c2f3e353e90aebaead73703563", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "c362d5ea-adda-43fa-ba62-e05894acd7f2", + "x-ms-client-request-id": "071fd1c2f3e353e90aebaead73703563", + "x-ms-correlation-request-id": "c4ecc9cd-2554-45e1-b09b-4093d07e8b0e", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "cd35e671-b21a-40bd-a72d-a08733d12855", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075013Z:c4ecc9cd-2554-45e1-b09b-4093d07e8b0e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "366156dc26dfa8ce66a8251ba45660c7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "59a2b9ce-ec3b-4345-a2c8-2f816d13d9cf", + "x-ms-client-request-id": "366156dc26dfa8ce66a8251ba45660c7", + "x-ms-correlation-request-id": "6ce36e63-98e0-43e1-95bf-972dc5963a3a", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "54adb7c9-2553-4050-9a9d-d0651ed84767", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075015Z:6ce36e63-98e0-43e1-95bf-972dc5963a3a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d602f117475f9464722a8b580e2735c6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8f05673c-29fa-485c-8d3e-03691a8e4e65", + "x-ms-client-request-id": "d602f117475f9464722a8b580e2735c6", + "x-ms-correlation-request-id": "5ef3b212-7aae-458f-a19d-a8bb7a199678", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "15cd5d25-0275-45dd-b6f3-21d75a849226", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075016Z:5ef3b212-7aae-458f-a19d-a8bb7a199678" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "56f0ac6292569cc30376a03bceceaeb4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "14002c17-f3d9-4e12-be55-583ebb45dc8b", + "x-ms-client-request-id": "56f0ac6292569cc30376a03bceceaeb4", + "x-ms-correlation-request-id": "b8fa5e99-7bf7-4317-80b4-d9cf3abc4e98", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "cd3667f8-f4da-4e02-b566-e6b6e57819b6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075017Z:b8fa5e99-7bf7-4317-80b4-d9cf3abc4e98" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8196e68a5e6e9403f2ccc4b49b76993e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b6623d41-a94b-4a22-9186-c5b8f2203a32", + "x-ms-client-request-id": "8196e68a5e6e9403f2ccc4b49b76993e", + "x-ms-correlation-request-id": "14b7e57c-575b-494e-aec7-08ace96fa95f", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "59362e95-1bf4-4e0c-8deb-cfd18e2d6405", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075019Z:14b7e57c-575b-494e-aec7-08ace96fa95f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f7b85e73096584712e65d3e8a628c5a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "de405091-bbb2-434c-8304-7cbe4727fd36", + "x-ms-client-request-id": "f7b85e73096584712e65d3e8a628c5a4", + "x-ms-correlation-request-id": "d475a261-d70f-40f3-8d42-6867d4a9ad0b", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "fea5ea51-15c2-4728-baf0-e36684028b6d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075020Z:d475a261-d70f-40f3-8d42-6867d4a9ad0b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "28ced67cb3910457a85b6489ce0f018d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b71b076c-3426-46f3-98e0-de082c01056a", + "x-ms-client-request-id": "28ced67cb3910457a85b6489ce0f018d", + "x-ms-correlation-request-id": "f5cc8395-525b-46a5-8fdf-4fa0b5dbd171", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "a702544f-98e4-4292-81b9-5a423b9f788f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075021Z:f5cc8395-525b-46a5-8fdf-4fa0b5dbd171" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6fc761dcb615804e751252098a1beeca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "01998c0d-6a91-4924-8952-3ded142c0a52", + "x-ms-client-request-id": "6fc761dcb615804e751252098a1beeca", + "x-ms-correlation-request-id": "868c7387-74ea-4311-bc1e-70a87ac601c3", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "0d4b593e-a491-4f32-b82a-ec19d227cb0a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075022Z:868c7387-74ea-4311-bc1e-70a87ac601c3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c4381f0771a7bfad07b44e09a5e8b51f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1de63614-20f8-49ab-80c4-29e49bc71fa4", + "x-ms-client-request-id": "c4381f0771a7bfad07b44e09a5e8b51f", + "x-ms-correlation-request-id": "201d70de-a7d1-40ba-be2d-8d7dfa16b73a", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "0673187f-1f2f-43dd-aecb-b21ffeac467c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075024Z:201d70de-a7d1-40ba-be2d-8d7dfa16b73a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "440b46645661c58f874db27e604e798d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d4cce411-cc76-490e-934c-7bdb22542237", + "x-ms-client-request-id": "440b46645661c58f874db27e604e798d", + "x-ms-correlation-request-id": "2e9da09f-6d92-45a6-98f5-7f65b39c7a01", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "7d6ab709-e850-4c14-bc6d-f991abe0d61f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075025Z:2e9da09f-6d92-45a6-98f5-7f65b39c7a01" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ae829a6d3cd76ae5b30768606845da8d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "31a66c65-3997-4268-9b2e-886dd1f49769", + "x-ms-client-request-id": "ae829a6d3cd76ae5b30768606845da8d", + "x-ms-correlation-request-id": "bafbbe53-7065-4647-83ad-9c181ad7d609", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "0e9a9eba-8771-483c-a247-3ff8ace8cd8d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075027Z:bafbbe53-7065-4647-83ad-9c181ad7d609" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "44a5335caa0fb06890723c5abf2f5fb9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "05c90750-5d12-4a2c-8267-4f78278f057c", + "x-ms-client-request-id": "44a5335caa0fb06890723c5abf2f5fb9", + "x-ms-correlation-request-id": "3e7e9168-74cf-4974-a9f6-6cc52ea116a1", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "edc90d15-8fa8-4a7b-b328-7c6c46aa00c1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075028Z:3e7e9168-74cf-4974-a9f6-6cc52ea116a1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0b9cc13b0666274860a09059ed2e5d42", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "bc92880c-b4e4-4a47-af53-2f109b7a62a0", + "x-ms-client-request-id": "0b9cc13b0666274860a09059ed2e5d42", + "x-ms-correlation-request-id": "5997dfe3-be0f-4320-a0df-70b8674d8c02", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "c5e033eb-eaf2-473b-9374-fbc20a4a67ab", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075029Z:5997dfe3-be0f-4320-a0df-70b8674d8c02" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2d21257334a8c27e31d11e64ff8bab84", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "fe796371-b0fd-4d96-816a-3b3a71dba8b7", + "x-ms-client-request-id": "2d21257334a8c27e31d11e64ff8bab84", + "x-ms-correlation-request-id": "9a65ce96-155b-48c4-8f97-dd9bc0239470", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "43c15f21-36c7-436b-a2cc-9a6b940021c8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075031Z:9a65ce96-155b-48c4-8f97-dd9bc0239470" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a625afa8cea85627ea7de36e190fc362", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "34958db6-730e-4455-be40-e418a55f7db4", + "x-ms-client-request-id": "a625afa8cea85627ea7de36e190fc362", + "x-ms-correlation-request-id": "3e28889e-ab0e-4ecd-ad22-a6217e38bb33", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "15b553c5-4c50-4cb9-8a4f-64254283dbe3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075032Z:3e28889e-ab0e-4ecd-ad22-a6217e38bb33" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "99e6fa15310d061043dada94e8e427d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "57cede74-7de5-4cda-b4c5-18b3b1e27732", + "x-ms-client-request-id": "99e6fa15310d061043dada94e8e427d5", + "x-ms-correlation-request-id": "f80b1394-df73-414d-9640-3a79b1312288", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "3b3d9201-3194-4566-b110-690a9173501c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075034Z:f80b1394-df73-414d-9640-3a79b1312288" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3eb10bf5b608a49afecb422b500fa921", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "05611663-3ee8-48b0-b5b8-22e3df59eaf7", + "x-ms-client-request-id": "3eb10bf5b608a49afecb422b500fa921", + "x-ms-correlation-request-id": "df5dfade-2fb1-483a-ae5e-6b24c404f639", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "d520e58d-43a3-4f11-9c01-88775eb606d9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075035Z:df5dfade-2fb1-483a-ae5e-6b24c404f639" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "054ebc0e12a476779f1f63cef4926e06", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f3ec3a2c-137d-465a-9fcb-915679daf90f", + "x-ms-client-request-id": "054ebc0e12a476779f1f63cef4926e06", + "x-ms-correlation-request-id": "578b612b-9a06-4f8d-8878-eb5184819f2f", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "3abfe812-29fa-4e7b-ac36-4fbcfe508952", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075036Z:578b612b-9a06-4f8d-8878-eb5184819f2f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0d790e56855e5f5960429a41efe5b533", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "a8ee5473-aca8-4549-b92a-01ab2f098188", + "x-ms-client-request-id": "0d790e56855e5f5960429a41efe5b533", + "x-ms-correlation-request-id": "3ffe76c6-1e81-41cc-8a85-57d2906be6e5", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "44c4d6ee-0ea4-4570-854f-461c3470d017", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075037Z:3ffe76c6-1e81-41cc-8a85-57d2906be6e5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2c86b8302295e230943a9fe953ccb06c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "86921418-d261-4537-9774-f3e9c3e871bd", + "x-ms-client-request-id": "2c86b8302295e230943a9fe953ccb06c", + "x-ms-correlation-request-id": "2bc67d79-0b86-44c7-ac69-0358893287ca", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "ba4dfec1-3045-4d8f-9bf7-365978023ff0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075039Z:2bc67d79-0b86-44c7-ac69-0358893287ca" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "42d43b5d9b9689c362efa562773586ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0bd8247f-4aac-4243-9b17-36057e460eca", + "x-ms-client-request-id": "42d43b5d9b9689c362efa562773586ba", + "x-ms-correlation-request-id": "bb3ab50f-9860-47f4-bb6a-9ab237a049c2", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "9e21f416-bd41-4b8e-ad55-a64351cddd19", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075041Z:bb3ab50f-9860-47f4-bb6a-9ab237a049c2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3b9d2f69420b3470de967823e56f0c93", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ef2446eb-ad9a-4536-91e3-e028e03e11f7", + "x-ms-client-request-id": "3b9d2f69420b3470de967823e56f0c93", + "x-ms-correlation-request-id": "4f48821b-d554-45a5-bea9-dd70a9fdeb8e", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "5f311c63-6a20-46d6-8b49-2f4295f9d321", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075042Z:4f48821b-d554-45a5-bea9-dd70a9fdeb8e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b4e42e927310949df5fdc9a67dce6a5f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4d49e5d4-2ac4-445e-b1e8-5fbcbe6895b8", + "x-ms-client-request-id": "b4e42e927310949df5fdc9a67dce6a5f", + "x-ms-correlation-request-id": "a1975966-21c1-4f88-88c7-64f456b1be85", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "269fd5a7-9882-44f2-bb5f-8b023ac41e97", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075043Z:a1975966-21c1-4f88-88c7-64f456b1be85" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2380e5b3742e1b60caa063ff22a0a3f3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "455f2bad-70bf-43f4-b93e-12ab6bdde3aa", + "x-ms-client-request-id": "2380e5b3742e1b60caa063ff22a0a3f3", + "x-ms-correlation-request-id": "710a318d-9f11-412a-9d0c-965f697b0e7d", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "e08b906e-f8a9-4de0-bbd1-05675e7303ba", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075045Z:710a318d-9f11-412a-9d0c-965f697b0e7d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "49cf11e2d250f6a99108460e78c9b70f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6557465a-7a17-445d-8016-f949386282ad", + "x-ms-client-request-id": "49cf11e2d250f6a99108460e78c9b70f", + "x-ms-correlation-request-id": "27f3c887-f1e0-43a8-bab6-5bb339185c97", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "25cce6f1-8f01-49ed-adc4-5b7fd963693c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075046Z:27f3c887-f1e0-43a8-bab6-5bb339185c97" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "006f192ce8ef1e65cdc9e96f0f9e7154", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c137bc56-e41c-4e43-9dfc-0f569324a479", + "x-ms-client-request-id": "006f192ce8ef1e65cdc9e96f0f9e7154", + "x-ms-correlation-request-id": "fff948bb-252c-4477-ab16-78fb3f061dde", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "779bfe98-5c19-473d-ba58-b6684e12e8fd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075047Z:fff948bb-252c-4477-ab16-78fb3f061dde" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6bc3d55a21fee10e3b8991252d52a201", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "ce6a769c-e1fa-4fd5-a538-779899f830ca", + "x-ms-client-request-id": "6bc3d55a21fee10e3b8991252d52a201", + "x-ms-correlation-request-id": "68465880-dda9-4cfd-a4b6-204c8cd0e73f", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "df7c9aaf-8a66-4110-b5ea-b7e1fabcc2c0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075049Z:68465880-dda9-4cfd-a4b6-204c8cd0e73f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "09d254e9a230fa04acb17b87e939e6f3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2c191669-e945-4551-bc6d-9d790bb24f14", + "x-ms-client-request-id": "09d254e9a230fa04acb17b87e939e6f3", + "x-ms-correlation-request-id": "518d44a6-98ad-46b7-8645-5fccf19b79dc", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "e18381b7-e5d4-4bb3-92d7-5094d97fdd4e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075050Z:518d44a6-98ad-46b7-8645-5fccf19b79dc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a3b4f1974b050b110b8ec565563ff07b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "54e3da43-07b8-4378-9560-dc46f25e9599", + "x-ms-client-request-id": "a3b4f1974b050b110b8ec565563ff07b", + "x-ms-correlation-request-id": "a7c79f54-7829-4a85-b742-b21ba577945a", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "931e4c9a-8a61-4633-9b89-f00eafb08078", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075051Z:a7c79f54-7829-4a85-b742-b21ba577945a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bb86e82768cbb824d1c9bf4ca587f701", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4b46f7d5-3e45-41f2-bf3a-74d6a6f855d2", + "x-ms-client-request-id": "bb86e82768cbb824d1c9bf4ca587f701", + "x-ms-correlation-request-id": "04aa28e8-8e07-4a4d-8942-cc6519ac4782", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "ddaad3a4-a7a1-43e7-9785-d0fa039e79ca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075053Z:04aa28e8-8e07-4a4d-8942-cc6519ac4782" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3c8e9ea3ff9d9efb42c7fda2dc9ea36c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "4f0e36d9-bb43-4e69-b637-399264c9a682", + "x-ms-client-request-id": "3c8e9ea3ff9d9efb42c7fda2dc9ea36c", + "x-ms-correlation-request-id": "1c7a36a8-2b05-46a7-abc4-72317d082d78", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "605af22a-ba6d-4c19-9b85-1b1d38f0d35e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075054Z:1c7a36a8-2b05-46a7-abc4-72317d082d78" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "016000c12bb32e27cdfcd13c8bc46584", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "86fd0897-7320-41d7-b796-c1fde27791fa", + "x-ms-client-request-id": "016000c12bb32e27cdfcd13c8bc46584", + "x-ms-correlation-request-id": "32c0f1a7-0ec6-4da5-a04f-3bffa3a3e3c6", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "971a9b2b-a6ba-4486-8d24-fff42d358833", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075055Z:32c0f1a7-0ec6-4da5-a04f-3bffa3a3e3c6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b7c2c496b4b028ddece778036b82db32", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8691e87e-0c98-45a6-94c3-b1a0355a9327", + "x-ms-client-request-id": "b7c2c496b4b028ddece778036b82db32", + "x-ms-correlation-request-id": "e9314f69-6afb-41f0-a7af-851c933cbd6e", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "6a3eaca6-db61-44a1-8893-1710062f1e83", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075057Z:e9314f69-6afb-41f0-a7af-851c933cbd6e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a58b5225f627774d77606ea12dbe127d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "e80d988b-d16c-48df-9997-74e95bbdd2f0", + "x-ms-client-request-id": "a58b5225f627774d77606ea12dbe127d", + "x-ms-correlation-request-id": "ec0a6f5b-2334-49d5-996a-83bc714ad3cb", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "372d87e7-9134-462f-a3f8-777ffbefab3f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075058Z:ec0a6f5b-2334-49d5-996a-83bc714ad3cb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "180b7862ebdc0dbc223714cbb223c24b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e1ec01b3-0584-4d3f-a902-88d0b902efe4", + "x-ms-client-request-id": "180b7862ebdc0dbc223714cbb223c24b", + "x-ms-correlation-request-id": "f143fcf4-4d92-4117-8598-df441b3f4855", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "80f8d526-ff9a-4d8d-a999-d5f34d98b52d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075100Z:f143fcf4-4d92-4117-8598-df441b3f4855" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "39169e20c0399f5d764a404f453cfa2d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ac1d94b2-f152-4c71-b4a3-15fa88a42970", + "x-ms-client-request-id": "39169e20c0399f5d764a404f453cfa2d", + "x-ms-correlation-request-id": "43bf4bf6-9acb-41ca-88b9-a261b8db94b8", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "d9b60e28-ea2d-40dd-8b6a-8b85382a2742", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075102Z:43bf4bf6-9acb-41ca-88b9-a261b8db94b8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f2a1fad5c2763a56967d82efe181c453", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "7569b196-0d94-4d62-97c7-abafd0a4e920", + "x-ms-client-request-id": "f2a1fad5c2763a56967d82efe181c453", + "x-ms-correlation-request-id": "f171ac41-2768-4b34-9f22-27591a8ef5ad", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "bee35c8c-4f78-48bc-a8c4-6eabf299bb86", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075103Z:f171ac41-2768-4b34-9f22-27591a8ef5ad" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8e80239dd9a8a1441b6ba291aa6cc7e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "58339d6e-425b-4b2d-ab85-7c168bf33929", + "x-ms-client-request-id": "8e80239dd9a8a1441b6ba291aa6cc7e5", + "x-ms-correlation-request-id": "eb2cee0e-6a94-4ddd-9abc-1eca85488571", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "8e006c84-4843-4775-81d8-d7475e39a7b3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075104Z:eb2cee0e-6a94-4ddd-9abc-1eca85488571" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b8f6e63dd0815dd448dca2bb3d6ebef4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b72bd6da-b0fc-466f-b29a-439cb1868345", + "x-ms-client-request-id": "b8f6e63dd0815dd448dca2bb3d6ebef4", + "x-ms-correlation-request-id": "f2b814c1-3447-4eaa-bea8-f524c88e89a1", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "92cf39d4-2e97-4888-9ba7-87ab6ba698c2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075106Z:f2b814c1-3447-4eaa-bea8-f524c88e89a1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "21b2ec866bbbfb85b600d60a20c58f29", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "be022637-cc7a-456c-8a8e-0f782c381de9", + "x-ms-client-request-id": "21b2ec866bbbfb85b600d60a20c58f29", + "x-ms-correlation-request-id": "9f3127e8-bae7-4c7a-b503-ba1df0b0323f", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "3d1216c1-bab0-4e7a-8770-0c3db74a5b4f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075107Z:9f3127e8-bae7-4c7a-b503-ba1df0b0323f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fbb19db60c8acdd24f2246cc368863ad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "06822175-359d-472b-a314-bbe1c63509fa", + "x-ms-client-request-id": "fbb19db60c8acdd24f2246cc368863ad", + "x-ms-correlation-request-id": "76023f31-d131-43a9-aaca-cd85801a75f7", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "fb77c734-bc51-4f4b-b16d-5efd9f2fe96b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075108Z:76023f31-d131-43a9-aaca-cd85801a75f7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "be0aadada5bad22a61fb0181f9ca3d83", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1f1419ac-5b7d-4b74-b6d0-916e6f96eb53", + "x-ms-client-request-id": "be0aadada5bad22a61fb0181f9ca3d83", + "x-ms-correlation-request-id": "4395f659-86cd-4a70-85bc-7f433cb1a5a5", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "eb3d3905-675d-4b1b-a0b0-b9fbb7872c71", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075109Z:4395f659-86cd-4a70-85bc-7f433cb1a5a5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a005794cc2bc7a691ae4d29824b8c42e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ddf3a6fd-f358-4513-ae0c-ed0590ddad22", + "x-ms-client-request-id": "a005794cc2bc7a691ae4d29824b8c42e", + "x-ms-correlation-request-id": "c50a7f34-7ddc-43a6-9b37-f8ac953d31c6", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "a85dff08-4284-4ab1-a2bb-8274f9b1f4cf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075111Z:c50a7f34-7ddc-43a6-9b37-f8ac953d31c6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "735c299dd1ba106e73df998f0a51d385", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "42ef9e49-be0b-4d64-a234-47923324ccf6", + "x-ms-client-request-id": "735c299dd1ba106e73df998f0a51d385", + "x-ms-correlation-request-id": "3b408ef2-9a44-4221-aada-dffe0e6f75b6", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "4b5d2276-c1b2-48f5-8d1c-cc8dcc72c525", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075112Z:3b408ef2-9a44-4221-aada-dffe0e6f75b6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bd80c3e5c382eaf04390a3d5d391ada8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "c00ce7d6-d49c-4237-8cbf-389e2aca3182", + "x-ms-client-request-id": "bd80c3e5c382eaf04390a3d5d391ada8", + "x-ms-correlation-request-id": "ab5db7ec-ee74-4d54-81f0-6078bf114423", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "ea8c524c-f933-4e3b-b8c8-7273302371c6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075113Z:ab5db7ec-ee74-4d54-81f0-6078bf114423" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d0e3d236ca6d7bc90af52ddd29d96fc9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "127bee40-538e-4b1d-a77a-9860b7a2c85f", + "x-ms-client-request-id": "d0e3d236ca6d7bc90af52ddd29d96fc9", + "x-ms-correlation-request-id": "9205b05f-d38f-4bc9-96ea-f4b7b093455b", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "173e5114-33c2-4888-899f-1cacea5c2380", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075114Z:9205b05f-d38f-4bc9-96ea-f4b7b093455b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "61b34d110738d9ac39712f292d983de2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d4ec5919-6dda-45e9-a1d3-22683b5404b7", + "x-ms-client-request-id": "61b34d110738d9ac39712f292d983de2", + "x-ms-correlation-request-id": "140c13db-4bd9-48b6-b9bd-6f93ff8cb010", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "eb6d214f-712e-492b-91db-7ff4d6de75ef", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075116Z:140c13db-4bd9-48b6-b9bd-6f93ff8cb010" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3759f032036d1b17fa04b28c9513c169", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "b54116fb-86cc-430c-a857-0009d10d025c", + "x-ms-client-request-id": "3759f032036d1b17fa04b28c9513c169", + "x-ms-correlation-request-id": "a2ab0087-3616-46bf-b98c-47b7181ba363", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "a41c44b9-2439-4e05-9cb0-c576418926cf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075117Z:a2ab0087-3616-46bf-b98c-47b7181ba363" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "85c4da214cdd2e70260a96fb9a9f4d72", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5680c0d5-e6bc-4ae0-bcdb-f47306544ce8", + "x-ms-client-request-id": "85c4da214cdd2e70260a96fb9a9f4d72", + "x-ms-correlation-request-id": "c345c1ca-1bab-44c1-9add-2808e235d141", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "fab6c841-ed00-493b-86ed-453ebd767f9f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075118Z:c345c1ca-1bab-44c1-9add-2808e235d141" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "38ab4bb837800d5c35986733551f4426", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "82383be4-baa6-424b-8fda-2d0a9f955b30", + "x-ms-client-request-id": "38ab4bb837800d5c35986733551f4426", + "x-ms-correlation-request-id": "82f11077-9abf-4ce6-8949-5372a2391f70", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "c28c3a35-64f8-4f19-9b7b-4ec6b95b47ed", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075120Z:82f11077-9abf-4ce6-8949-5372a2391f70" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5308c5b0b7d4e504802a11636c1c805a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4b1ea53e-a4cf-4018-94f8-de5376143549", + "x-ms-client-request-id": "5308c5b0b7d4e504802a11636c1c805a", + "x-ms-correlation-request-id": "6fe1ccd5-e2fc-467c-b588-e8692b64c63e", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "30e2b844-3cf5-4fb0-bf76-ccee929adb91", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075121Z:6fe1ccd5-e2fc-467c-b588-e8692b64c63e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4ad33fb68967e9e97db64f45e43cd906", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "c5700caf-2a9e-4907-bbcb-e980291aac3b", + "x-ms-client-request-id": "4ad33fb68967e9e97db64f45e43cd906", + "x-ms-correlation-request-id": "6eeb9800-bf8b-4f21-b464-2a369ab8c3b9", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "03412ca8-1249-44b6-b16b-3e885c925948", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075122Z:6eeb9800-bf8b-4f21-b464-2a369ab8c3b9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d54a70c5f997019e46c5b85626f9a119", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3484a7fc-9e9f-464b-8953-e820947fdfc3", + "x-ms-client-request-id": "d54a70c5f997019e46c5b85626f9a119", + "x-ms-correlation-request-id": "fa71e920-6ed0-47be-b1db-5bf8b371fe20", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "3709dd38-6366-4544-bde6-7cbb970a57e3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075123Z:fa71e920-6ed0-47be-b1db-5bf8b371fe20" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "157c0c17f94c27bedc1ed61d68be0143", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "28aafb98-fa69-48ce-8203-bc572821897a", + "x-ms-client-request-id": "157c0c17f94c27bedc1ed61d68be0143", + "x-ms-correlation-request-id": "50bd8090-29df-4c77-a8bf-d601d363b52a", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "9b0f6c3a-58bd-47d0-ae6c-5fd6f35b77c2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075125Z:50bd8090-29df-4c77-a8bf-d601d363b52a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fb9d0a51aad1bdc2a1d203a2d092c384", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7785589d-44bb-477d-abb7-6691a4f7d203", + "x-ms-client-request-id": "fb9d0a51aad1bdc2a1d203a2d092c384", + "x-ms-correlation-request-id": "601d975d-a9ff-40ac-9620-cd8e5307be0e", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "cdba1551-f4de-4bff-be2b-091bd1c0fe13", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075126Z:601d975d-a9ff-40ac-9620-cd8e5307be0e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d82d3615c3bfcbbab223f97923809987", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "a476babf-597b-4482-9b29-db040c41ad79", + "x-ms-client-request-id": "d82d3615c3bfcbbab223f97923809987", + "x-ms-correlation-request-id": "67e96ee1-aaa9-4020-aa8d-4abbe93901cc", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "2ef83c41-df50-4264-8d56-386402879cc9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075127Z:67e96ee1-aaa9-4020-aa8d-4abbe93901cc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1b0574c4a55b6c4749bf7379f61c5649", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3a0b1f21-54e5-4b6b-a26f-7cb6ac6455ac", + "x-ms-client-request-id": "1b0574c4a55b6c4749bf7379f61c5649", + "x-ms-correlation-request-id": "bf5ba337-58c1-4bca-9ebd-cc2573686223", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "3bdaf543-89a8-4887-acf6-9eff626a59e9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075129Z:bf5ba337-58c1-4bca-9ebd-cc2573686223" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3107515b28918d8450d149adb1499920", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "413f69b9-f549-4f62-9f3b-33b0fbf87da7", + "x-ms-client-request-id": "3107515b28918d8450d149adb1499920", + "x-ms-correlation-request-id": "6b7888e6-6299-490f-bab6-f9aa99e9a4f9", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "ff151934-13eb-4bbe-9ca6-16d73d295a31", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075130Z:6b7888e6-6299-490f-bab6-f9aa99e9a4f9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5cdd7b39a78d7029eec08eff4f40d595", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "f6192f77-9948-4513-b030-dc0ac28dc6fc", + "x-ms-client-request-id": "5cdd7b39a78d7029eec08eff4f40d595", + "x-ms-correlation-request-id": "d10ae9fa-adc2-474f-8b6c-ec2b16b72a6f", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "dc76ce37-0f81-42c9-9a1d-7ceb2ff446be", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075132Z:d10ae9fa-adc2-474f-8b6c-ec2b16b72a6f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d21db0cd67799bf6f078cb895b99bb00", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1854dc87-5308-4d06-8942-a23dbd0ac90f", + "x-ms-client-request-id": "d21db0cd67799bf6f078cb895b99bb00", + "x-ms-correlation-request-id": "f85955de-4b0c-491d-8363-b85fd8de19dc", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "c269edde-a499-4ae0-83a5-f2a8699ab6ef", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075133Z:f85955de-4b0c-491d-8363-b85fd8de19dc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7a405226fa3eb4bc279643d09a843d10", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "632e1437-e905-483c-901a-59cfbff97da8", + "x-ms-client-request-id": "7a405226fa3eb4bc279643d09a843d10", + "x-ms-correlation-request-id": "c30409ea-2dd8-43ab-9385-609af3e4d63e", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "750f0df4-a5bd-405e-b235-a98ddf9e2415", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075134Z:c30409ea-2dd8-43ab-9385-609af3e4d63e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "01e0b3fcc62bd2a784426c14db9f1554", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f893d7c8-1012-41a6-87bc-8dc208cdb2ec", + "x-ms-client-request-id": "01e0b3fcc62bd2a784426c14db9f1554", + "x-ms-correlation-request-id": "a1456c43-852b-4d8d-8f44-bf9ade65d021", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "0dc4d9bf-a012-4767-80fc-5caa66f8ac53", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075136Z:a1456c43-852b-4d8d-8f44-bf9ade65d021" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fdd98d055affd357f369aae32326016b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "d0d9a257-59a6-4ce6-8f64-68ed1f597a79", + "x-ms-client-request-id": "fdd98d055affd357f369aae32326016b", + "x-ms-correlation-request-id": "f6a50c92-e407-4cda-bbd2-477c662eedf8", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "64a46c62-51ff-4416-8a6b-05d6b3ef521d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075137Z:f6a50c92-e407-4cda-bbd2-477c662eedf8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a78dbb3abab95fd4ab6ef6fc8da7d888", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "625d6998-ada9-4d27-8518-e3525b9c17bd", + "x-ms-client-request-id": "a78dbb3abab95fd4ab6ef6fc8da7d888", + "x-ms-correlation-request-id": "d9ea8e6e-6568-457f-a45f-45e8b735ab26", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "bc209dc8-bb86-4691-b50e-0c3cae4e165d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075138Z:d9ea8e6e-6568-457f-a45f-45e8b735ab26" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0ccaef8140aba2105c0d0dc21cc4ae5e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4c949441-c352-46eb-a86c-a1b977eae5a9", + "x-ms-client-request-id": "0ccaef8140aba2105c0d0dc21cc4ae5e", + "x-ms-correlation-request-id": "cecc2dae-619c-4855-9481-c30d935bdb67", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "aec10be0-f809-44e9-b645-ea3ef66d56a4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075140Z:cecc2dae-619c-4855-9481-c30d935bdb67" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "20da00416d124a9bb9795191645b454c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f4f08b46-f191-4c08-a9d1-b9b96920f458", + "x-ms-client-request-id": "20da00416d124a9bb9795191645b454c", + "x-ms-correlation-request-id": "d4441329-c319-4874-a2fa-a1f114de3633", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "7e9500df-a932-4286-9b66-4e893a801d7f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075141Z:d4441329-c319-4874-a2fa-a1f114de3633" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "34622291f45bfabfabeb4babad1243e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:51: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": "936d737a-10bf-4c26-9b26-aeef769ae835", + "x-ms-client-request-id": "34622291f45bfabfabeb4babad1243e7", + "x-ms-correlation-request-id": "c3a2793f-c26b-4d89-afe6-bb9523ed3ca8", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "fe12f3a2-7ed7-45c7-8c90-e01b0dec9015", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075142Z:c3a2793f-c26b-4d89-afe6-bb9523ed3ca8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8dba98c0b8cd137654805332ee7f3e00", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8a324da3-e1f2-43fa-b83f-800447a888f4", + "x-ms-client-request-id": "8dba98c0b8cd137654805332ee7f3e00", + "x-ms-correlation-request-id": "fd43323b-9d39-44aa-a890-11382c3f7ce7", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "8b30e0e8-60fd-4316-95d2-c17517ea94c9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075143Z:fd43323b-9d39-44aa-a890-11382c3f7ce7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fa30c1c87a624c0240df742722ef9da6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6818e840-addf-4cf2-8f0a-55efd8f4818e", + "x-ms-client-request-id": "fa30c1c87a624c0240df742722ef9da6", + "x-ms-correlation-request-id": "a927e9a7-54c8-4111-a2fa-c9f7e294728e", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "4e9d97f8-2375-4dcb-9a48-f626decc0ed1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075145Z:a927e9a7-54c8-4111-a2fa-c9f7e294728e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cbd16a35b8a0d97eab4ee0dba18d0c2c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "e4953672-93dc-475e-91e2-0f2ef34884d3", + "x-ms-client-request-id": "cbd16a35b8a0d97eab4ee0dba18d0c2c", + "x-ms-correlation-request-id": "57093d35-d2f4-4ffb-850e-c529d92fb979", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "1f5eca46-d0e6-4454-8482-b929c9187225", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075146Z:57093d35-d2f4-4ffb-850e-c529d92fb979" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ebe34aac49e14585956d4cee434ff164", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f531c905-fdd9-4ac6-b891-ad2416a9a16f", + "x-ms-client-request-id": "ebe34aac49e14585956d4cee434ff164", + "x-ms-correlation-request-id": "f7d6c5a5-66a2-4da7-b066-5b3b208b4cbf", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "457372a8-d92f-403f-9510-cf373e4d48b6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075148Z:f7d6c5a5-66a2-4da7-b066-5b3b208b4cbf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "83fcace272ad105f42574e139926abb3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "c63e14ee-10f8-4375-b725-623bee5839ab", + "x-ms-client-request-id": "83fcace272ad105f42574e139926abb3", + "x-ms-correlation-request-id": "7991ee42-ee7d-408f-8bb6-0b9e627365fc", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "92872db3-e272-4a80-8a42-5cf8bb29cc97", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075150Z:7991ee42-ee7d-408f-8bb6-0b9e627365fc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d77a48d2b10cecc4e58b35336b90965c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:51: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": "c6ca90a3-3c15-4816-b68a-c473fc1c7411", + "x-ms-client-request-id": "d77a48d2b10cecc4e58b35336b90965c", + "x-ms-correlation-request-id": "de6f7fdc-857a-4b94-ade1-df35443a5516", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "dcd9fc24-43cb-4d44-aa4d-282815757a74", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075151Z:de6f7fdc-857a-4b94-ade1-df35443a5516" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f4f87b5c88913a7eead2a88afb71ac6f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "55a6385e-5709-43d3-98aa-831dafe5eed6", + "x-ms-client-request-id": "f4f87b5c88913a7eead2a88afb71ac6f", + "x-ms-correlation-request-id": "e5f03f70-c9a4-4557-a73d-6c95a25ce6d9", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "c0e80ce9-eb74-4bf7-b889-58a738fa415f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075152Z:e5f03f70-c9a4-4557-a73d-6c95a25ce6d9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fa1b99c21ad43158e7109e223c2ca4b2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0f56ea30-4472-4d72-bbda-af1ac4914132", + "x-ms-client-request-id": "fa1b99c21ad43158e7109e223c2ca4b2", + "x-ms-correlation-request-id": "25b017f0-fb56-4f54-a52c-08c42d0a86ad", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "7f41606f-da7f-4a50-a297-40255272dafe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075154Z:25b017f0-fb56-4f54-a52c-08c42d0a86ad" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1db6f1c1b62d4922ca3fec39083af173", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:51: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": "59af9714-2b29-4e81-8c0a-a29efc687519", + "x-ms-client-request-id": "1db6f1c1b62d4922ca3fec39083af173", + "x-ms-correlation-request-id": "72363c87-d550-461a-9794-614457e9dee1", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "67608c3a-1fb1-4dd9-8a18-a1178225e171", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075155Z:72363c87-d550-461a-9794-614457e9dee1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d270c6df9b74428723c70d81ea5bfebe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "effb656a-653d-4300-bac3-eb8f3eebfc27", + "x-ms-client-request-id": "d270c6df9b74428723c70d81ea5bfebe", + "x-ms-correlation-request-id": "477b5213-2d06-40cd-b7c3-2c36a460eba0", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "bf8e5ab0-cce7-4568-9963-3c8d1d234269", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075156Z:477b5213-2d06-40cd-b7c3-2c36a460eba0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "09c9f62e8eba0b4176d12f942e1e28ac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "dce3f925-7875-4b34-a486-82970a24e4b0", + "x-ms-client-request-id": "09c9f62e8eba0b4176d12f942e1e28ac", + "x-ms-correlation-request-id": "3b5380ec-483f-4eb8-b06e-0f12b93d07e9", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "45abdf70-94f9-42bb-a94e-470e88f7a8c1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075157Z:3b5380ec-483f-4eb8-b06e-0f12b93d07e9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "75432a1fd1bc253e6974fa65a9a15f6f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "cc9d0a4f-e54f-468c-9e2f-67193543e8bb", + "x-ms-client-request-id": "75432a1fd1bc253e6974fa65a9a15f6f", + "x-ms-correlation-request-id": "6bcc6af1-7cee-477e-8733-ada6d394574d", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "c2023da8-419d-49e8-8457-012d9509a581", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075159Z:6bcc6af1-7cee-477e-8733-ada6d394574d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "120b2e41e77151b984655ba26cf31404", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5bf950fe-8b61-46a8-8f14-422dbc45b25f", + "x-ms-client-request-id": "120b2e41e77151b984655ba26cf31404", + "x-ms-correlation-request-id": "0b0e236a-ee06-45c9-b870-e80a82376627", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "4557f7f7-bc23-4395-b296-711a401b7381", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075201Z:0b0e236a-ee06-45c9-b870-e80a82376627" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bf61609e88185c02b7a39f4593db62d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7e20b624-924d-478b-94f6-af0ae1200372", + "x-ms-client-request-id": "bf61609e88185c02b7a39f4593db62d5", + "x-ms-correlation-request-id": "de531a7d-fe83-4976-a2d5-3c47f2a5c12f", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "950a25fa-9441-41fc-aaf7-08aef52b320e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075202Z:de531a7d-fe83-4976-a2d5-3c47f2a5c12f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0053c0721613373b71f2f156769bb976", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1e67bec4-d42a-409a-8e6e-0cacb65f94ff", + "x-ms-client-request-id": "0053c0721613373b71f2f156769bb976", + "x-ms-correlation-request-id": "68e966fd-e08e-4cf0-83e1-51351ddacaf9", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "3bfe4599-d2c4-476a-969b-255a230e025a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075203Z:68e966fd-e08e-4cf0-83e1-51351ddacaf9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "48c6f5609f3fb9572bae5ace4773bda8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "d82ee79c-f31e-4c8c-b607-8296dd70e655", + "x-ms-client-request-id": "48c6f5609f3fb9572bae5ace4773bda8", + "x-ms-correlation-request-id": "b2cb688b-0748-49fe-8399-d74e7b6a8f83", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "22ce8094-8888-4013-890a-3bdc8ba0a2d7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075204Z:b2cb688b-0748-49fe-8399-d74e7b6a8f83" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ab30850313a088f1252a4e2597abe61c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5e5e7cbd-3715-446d-8574-5011cb03b041", + "x-ms-client-request-id": "ab30850313a088f1252a4e2597abe61c", + "x-ms-correlation-request-id": "b270264e-b2ec-4b05-bd9d-ef83f4a5c8e2", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "f661876c-e6c1-4d9d-8f9e-a5b67336d912", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075206Z:b270264e-b2ec-4b05-bd9d-ef83f4a5c8e2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9ee529e91915d2966999d464bb6deffd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:52: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": "e810aa19-2ea3-4ccd-a505-c6b380e87b31", + "x-ms-client-request-id": "9ee529e91915d2966999d464bb6deffd", + "x-ms-correlation-request-id": "e06ad434-8a72-4943-bf07-09bbf9be9105", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "f5d97513-749a-42cb-83e1-01484c7c4ae1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075208Z:e06ad434-8a72-4943-bf07-09bbf9be9105" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f05348340d6a4cd6033e231450312280", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1f0e0bf7-e4ab-402e-a1d1-efa85254b75c", + "x-ms-client-request-id": "f05348340d6a4cd6033e231450312280", + "x-ms-correlation-request-id": "686af134-03f6-4387-a0bc-625a01907c83", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "4c13071c-2a9d-44bc-9e46-18abd6e33f10", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075209Z:686af134-03f6-4387-a0bc-625a01907c83" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1ee43ec81e8de993ef5e42063f8ccdb8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6e5a1435-cddf-408b-a167-a06b6947d2fd", + "x-ms-client-request-id": "1ee43ec81e8de993ef5e42063f8ccdb8", + "x-ms-correlation-request-id": "6b089b74-96d5-4479-baaf-1db761ae309d", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "6cfba741-1cfd-47ed-b7df-1d2314f5a8bd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075210Z:6b089b74-96d5-4479-baaf-1db761ae309d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4ef1513bf557dbb153989ad6f6828138", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "0fbcb9d4-a9c5-40d3-99e5-e0b92de85770", + "x-ms-client-request-id": "4ef1513bf557dbb153989ad6f6828138", + "x-ms-correlation-request-id": "a9b02693-fff0-4896-8bc6-2f7ecc115b7c", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "218fd871-7476-4c1c-b7bb-c7578c20e04c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075211Z:a9b02693-fff0-4896-8bc6-2f7ecc115b7c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7c9b5377d188156fb56a010ccbcf0d76", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "80a92ac7-ce4c-4cdf-bdf8-247f4efc54a4", + "x-ms-client-request-id": "7c9b5377d188156fb56a010ccbcf0d76", + "x-ms-correlation-request-id": "ed853872-3a63-490c-b17d-d6a92f41ce5d", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "352d96c1-5d9d-4acb-b3dc-26892e9dd52f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075213Z:ed853872-3a63-490c-b17d-d6a92f41ce5d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ffd96a70d340d3288d08cbf584bcf26c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "dc0b2757-8a39-49a7-99bc-dd748b7c54c0", + "x-ms-client-request-id": "ffd96a70d340d3288d08cbf584bcf26c", + "x-ms-correlation-request-id": "7fa0d52b-4d32-4d02-87bf-8f563f64b260", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "3ea805ca-16de-4393-bb68-30e82d68112a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075214Z:7fa0d52b-4d32-4d02-87bf-8f563f64b260" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eb8e0add50f16a2fe1db99edf4a41083", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "ad5a5381-4ae9-4cc9-9f17-d682835f9d74", + "x-ms-client-request-id": "eb8e0add50f16a2fe1db99edf4a41083", + "x-ms-correlation-request-id": "d7f1aaa6-0cae-4ef6-92ae-4bc45ed3dc06", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "f81c7493-4266-4568-bc7c-3510ef003855", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075215Z:d7f1aaa6-0cae-4ef6-92ae-4bc45ed3dc06" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8b66238b81a9a3f82ac8ee80057a91f8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "ea7d5459-d14b-4893-b3e8-0269c365ce43", + "x-ms-client-request-id": "8b66238b81a9a3f82ac8ee80057a91f8", + "x-ms-correlation-request-id": "1271567c-bf73-44c4-b1ac-3587d1feca88", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "ebc6cd5b-9e38-49a3-ad8f-dd2ae6c31df3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075217Z:1271567c-bf73-44c4-b1ac-3587d1feca88" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c12f947721411f853b6f1e643a3bdfe8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "9f04440c-f9eb-44e0-a29a-b1bed1fe8304", + "x-ms-client-request-id": "c12f947721411f853b6f1e643a3bdfe8", + "x-ms-correlation-request-id": "8c664f49-a655-4835-a37a-01056dd55a0b", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "fa523a7a-73db-4816-9fbd-5fdba7a77b89", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075219Z:8c664f49-a655-4835-a37a-01056dd55a0b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "606948f866565bc312ebc12962af6466", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "ee5d111b-396c-4a8b-8887-a30d06fcc66d", + "x-ms-client-request-id": "606948f866565bc312ebc12962af6466", + "x-ms-correlation-request-id": "2e19a2c0-559c-4f62-8d7b-b6ffd47139a2", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "f58cea16-b52e-485a-ad49-294f2837edd4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075220Z:2e19a2c0-559c-4f62-8d7b-b6ffd47139a2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5f75a1494e756a429e46503a629369ef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "2aaab0d4-cfa3-4efb-a9b5-bd034778f471", + "x-ms-client-request-id": "5f75a1494e756a429e46503a629369ef", + "x-ms-correlation-request-id": "08d79444-fb89-45d4-9d59-3756741c0852", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "17fef27b-16b9-4734-9af2-946d67c19f00", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075222Z:08d79444-fb89-45d4-9d59-3756741c0852" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bd8806e9301111a1d1d3af55605cbd8c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "56946c50-1293-4105-a8c5-34a03408a528", + "x-ms-client-request-id": "bd8806e9301111a1d1d3af55605cbd8c", + "x-ms-correlation-request-id": "bb6361f8-8cdc-4c04-9255-af32d501e444", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "041ba6f8-7074-4624-9022-06baa9a94341", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075223Z:bb6361f8-8cdc-4c04-9255-af32d501e444" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "991bb80a7fc6a97306ffc2101689f97e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "7a09ce03-fcc4-42c9-99e9-e2753e9c1232", + "x-ms-client-request-id": "991bb80a7fc6a97306ffc2101689f97e", + "x-ms-correlation-request-id": "6402be4a-5061-4423-962b-6b56c57aa33e", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "dee448c2-b42b-4dd3-a5e8-3d0d35d5ea2e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075224Z:6402be4a-5061-4423-962b-6b56c57aa33e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5c40d181a7261854ff648ea29fec0941", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1719f7cd-1a5c-49d4-b480-229e1ac47d3e", + "x-ms-client-request-id": "5c40d181a7261854ff648ea29fec0941", + "x-ms-correlation-request-id": "c06a12d4-e033-4d6d-840d-b80f6a84256b", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "7998fb27-557a-45ed-89fb-e3652591b881", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075226Z:c06a12d4-e033-4d6d-840d-b80f6a84256b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a92fc388d077692892dfb6126d91fa47", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "59cc1c15-b3b1-42d3-9c50-5d421a7c350b", + "x-ms-client-request-id": "a92fc388d077692892dfb6126d91fa47", + "x-ms-correlation-request-id": "9d5b246b-6da0-49be-9221-3bb40bba3fbe", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "a6fd9ffa-89f5-4d96-8614-3dc542b9c9e3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075227Z:9d5b246b-6da0-49be-9221-3bb40bba3fbe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8ed330d9611c626563029962f1d0091a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "806c0b6b-46a5-46ec-b6a6-74d4a8ea07cf", + "x-ms-client-request-id": "8ed330d9611c626563029962f1d0091a", + "x-ms-correlation-request-id": "eec42689-9cd6-4e4a-b29f-983278d45957", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "c691e01b-2dc6-4c0f-b294-488d855a9a8e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075228Z:eec42689-9cd6-4e4a-b29f-983278d45957" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "538880f54f59b107a9d6c947f042ab6e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "f02f4a9d-cb9a-40d6-8bcc-61527b0dcc99", + "x-ms-client-request-id": "538880f54f59b107a9d6c947f042ab6e", + "x-ms-correlation-request-id": "fb21e4b9-59a3-4998-a6e5-c838faff6081", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "726e6e99-267d-4ddd-8724-20f5278ccae0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075230Z:fb21e4b9-59a3-4998-a6e5-c838faff6081" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6ec846697b1826255dcc467536c678c2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "709f8c8d-3e23-40de-b162-e3b70e5c14b7", + "x-ms-client-request-id": "6ec846697b1826255dcc467536c678c2", + "x-ms-correlation-request-id": "eb482cea-6b84-4677-bedb-1c844a167120", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "6f1ac08e-d5e8-4709-b95e-e4be89126c33", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075231Z:eb482cea-6b84-4677-bedb-1c844a167120" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ec1c9cd5a6098aee2922e545981e7220", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "af2eb961-0ae9-4c22-87d1-d6cd71d93d6a", + "x-ms-client-request-id": "ec1c9cd5a6098aee2922e545981e7220", + "x-ms-correlation-request-id": "51ce2710-58f7-4330-9949-150ab34e50ca", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "82f480f6-d731-4ae1-8fdb-9568b57f31b9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075232Z:51ce2710-58f7-4330-9949-150ab34e50ca" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "abf82b579a0879025b61f58c09917ae2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "0c86a886-7633-44fb-bfac-4547464a42a3", + "x-ms-client-request-id": "abf82b579a0879025b61f58c09917ae2", + "x-ms-correlation-request-id": "e1c82d6a-5c2d-4edd-aace-1e6830e3db40", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "80e479e1-9c30-466c-b1bd-1fdc4baa8bfd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075234Z:e1c82d6a-5c2d-4edd-aace-1e6830e3db40" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5471075ebe25c265573e45f596df8e3f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1b8a1a9f-e88a-4fd0-b0e3-a4e2a6c31282", + "x-ms-client-request-id": "5471075ebe25c265573e45f596df8e3f", + "x-ms-correlation-request-id": "1fc9c249-bea1-4d06-820a-f35e1d5967ce", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "40ec02b4-1b7d-4b23-afce-bc8197721e2d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075235Z:1fc9c249-bea1-4d06-820a-f35e1d5967ce" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0b1e255accce3bb99aa391a7b1618197", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1f8f1762-0227-48df-95ab-e952e576bb5c", + "x-ms-client-request-id": "0b1e255accce3bb99aa391a7b1618197", + "x-ms-correlation-request-id": "02144012-8eec-4eda-8c42-d9335200deb9", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "32c6cdf4-48f9-43a9-9db5-3bf0e5ca52af", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075237Z:02144012-8eec-4eda-8c42-d9335200deb9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "91e703a71eac99fbc53553c9550ce37b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:52: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": "e8d538b5-d6cd-45d2-9084-d9efa988ff71", + "x-ms-client-request-id": "91e703a71eac99fbc53553c9550ce37b", + "x-ms-correlation-request-id": "a9912d24-bc6b-4e81-b586-f47dd9e9a942", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "46970f3f-478e-4b69-bcb3-0a1d3be47812", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075238Z:a9912d24-bc6b-4e81-b586-f47dd9e9a942" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e332b6d36f7391134d36b9822cbd11f6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "4ca1ff3b-65d1-4886-a238-3287ba3757b6", + "x-ms-client-request-id": "e332b6d36f7391134d36b9822cbd11f6", + "x-ms-correlation-request-id": "c86fc6fe-5c3a-4458-bc4b-d045738a5b23", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "2a336315-b860-4a10-9345-7b72a8195ac3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075239Z:c86fc6fe-5c3a-4458-bc4b-d045738a5b23" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "924eadbdfcf73c932a85469979efe58e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d922b866-beed-46ec-a175-240b78dc4f27", + "x-ms-client-request-id": "924eadbdfcf73c932a85469979efe58e", + "x-ms-correlation-request-id": "66aefd2a-1e88-409b-9c37-8e47e6bba516", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "0ec176f6-1ed2-46a0-8d57-62034cc16764", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075240Z:66aefd2a-1e88-409b-9c37-8e47e6bba516" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fad415bf9d2e3824ef56447564786c07", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "a117d256-d8c8-43bc-9db8-d9196b920c03", + "x-ms-client-request-id": "fad415bf9d2e3824ef56447564786c07", + "x-ms-correlation-request-id": "e61df2c1-e61e-48ff-a242-7e5e0ad50e2e", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "3a12fc12-9dcf-4248-bf59-16dbf058b115", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075242Z:e61df2c1-e61e-48ff-a242-7e5e0ad50e2e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a70c5c2350bdd68323f6b8ee297a175d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "3bdb0ba7-0d91-4c65-b7d3-746dba663100", + "x-ms-client-request-id": "a70c5c2350bdd68323f6b8ee297a175d", + "x-ms-correlation-request-id": "df749c71-4710-4fb9-8e7b-18930a9c6983", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "426bed23-b289-4033-96a4-06e32067deb3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075243Z:df749c71-4710-4fb9-8e7b-18930a9c6983" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "16c22b5116e91fc78916a3a1b81dd7b1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "aae3354b-f6f2-484a-adaa-1337905c84f2", + "x-ms-client-request-id": "16c22b5116e91fc78916a3a1b81dd7b1", + "x-ms-correlation-request-id": "86f545f1-477e-4282-bb6d-e607030869b4", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "bf60ee4e-13ac-4155-840a-2dc89a3a9760", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075244Z:86f545f1-477e-4282-bb6d-e607030869b4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1c763e183ee36ed092fdd738e4360f75", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "1c0fdf5f-addb-42ca-8838-a1673b243786", + "x-ms-client-request-id": "1c763e183ee36ed092fdd738e4360f75", + "x-ms-correlation-request-id": "6078bc74-1db2-42cf-9796-746a06d7d375", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "2a0f94d7-6d3c-42a9-96f7-71baff900d44", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075245Z:6078bc74-1db2-42cf-9796-746a06d7d375" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3824e63e56b50c1e95ed1ea7ade21e05", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "660176c4-708b-445c-895a-cfbbe50ca5db", + "x-ms-client-request-id": "3824e63e56b50c1e95ed1ea7ade21e05", + "x-ms-correlation-request-id": "7f658d23-eccc-4d88-80cc-7f4b0060488e", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "4b6495ab-fa87-41ae-9b4a-99ca939f4697", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075247Z:7f658d23-eccc-4d88-80cc-7f4b0060488e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ead6061efb03127a5b5384eb3f8f3a52", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "24f3668b-5116-45f8-8d37-4e6c6b260e1f", + "x-ms-client-request-id": "ead6061efb03127a5b5384eb3f8f3a52", + "x-ms-correlation-request-id": "050ed863-5435-455c-8dcf-857b0e8d49cc", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "84f55a74-4d6b-4050-9e7a-2463f697efd2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075248Z:050ed863-5435-455c-8dcf-857b0e8d49cc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d1622d069ff9c2fc1f6987f51f28c1af", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "9e2917ef-1f77-47ef-9a79-d580c2abde86", + "x-ms-client-request-id": "d1622d069ff9c2fc1f6987f51f28c1af", + "x-ms-correlation-request-id": "4d4e120d-5cdd-4b1d-810f-8f63b648e742", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "e192ab30-76ab-4996-b5d7-c9e66153317f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075249Z:4d4e120d-5cdd-4b1d-810f-8f63b648e742" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dd1ad1df246043716c11dd61d132cd05", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d0a096eb-d5f8-4986-83dd-a5fb0e36b85b", + "x-ms-client-request-id": "dd1ad1df246043716c11dd61d132cd05", + "x-ms-correlation-request-id": "3dbd433a-44de-462f-8816-af16abdec152", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "579af6d8-4fd7-4ad5-8beb-1ea1e613f1d5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075250Z:3dbd433a-44de-462f-8816-af16abdec152" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7fa1cbb24c7f7f0c0a13cb9a7384f232", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "6f47d1ba-b033-4dc8-81f6-143f6ba72e36", + "x-ms-client-request-id": "7fa1cbb24c7f7f0c0a13cb9a7384f232", + "x-ms-correlation-request-id": "17e1c24b-c957-4528-8d9c-503841fbafba", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "5356fd92-1d97-4172-b48a-9c6b41dfc100", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075252Z:17e1c24b-c957-4528-8d9c-503841fbafba" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6d0cd4925c74e2f2bc1e65e7c19af0ed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "621d73c4-59a5-4a27-bc37-29bcea64bfc8", + "x-ms-client-request-id": "6d0cd4925c74e2f2bc1e65e7c19af0ed", + "x-ms-correlation-request-id": "44a37cf1-c53c-4ecf-9d4f-50e441117dab", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-request-id": "c6a1baaa-b642-45f7-bb43-fa9bde1d4e3b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075253Z:44a37cf1-c53c-4ecf-9d4f-50e441117dab" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5442819c4187922fc59bd34c59d7d0e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07: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": "58a7354a-3224-44e1-bdb5-28989e269f77", + "x-ms-client-request-id": "5442819c4187922fc59bd34c59d7d0e7", + "x-ms-correlation-request-id": "f8f129f8-1db6-4052-9a2d-8c59676a9104", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "3b3dedff-b66f-4c55-ba3b-5bab6d222ad4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075254Z:f8f129f8-1db6-4052-9a2d-8c59676a9104" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fdcfaa1f5f255691d8bec361e724bd70", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "5687a8ad-3dfd-42d4-8eeb-c15265695405", + "x-ms-client-request-id": "fdcfaa1f5f255691d8bec361e724bd70", + "x-ms-correlation-request-id": "5d69d286-69d0-44aa-9148-2ea5a9a953ac", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "6a791713-ab40-4f12-8e03-44a274bbd31e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075256Z:5d69d286-69d0-44aa-9148-2ea5a9a953ac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f1fddd239e4150aba479a7d989a689e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "8593ee31-c7d9-4a90-9d20-8edd62ec607b", + "x-ms-client-request-id": "f1fddd239e4150aba479a7d989a689e4", + "x-ms-correlation-request-id": "8ccfd0e8-94da-46dc-9358-1b25b6f43de1", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "a3470189-bfae-4b74-8c71-5b3b121574c2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075257Z:8ccfd0e8-94da-46dc-9358-1b25b6f43de1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "16c87d4ef3ca3dc7f0ec7bc87eceaba1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:52: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": "4c7bacee-bdff-4902-a106-7669a5fc8eaa", + "x-ms-client-request-id": "16c87d4ef3ca3dc7f0ec7bc87eceaba1", + "x-ms-correlation-request-id": "6456fe5a-0e85-4adf-901a-5747db9a1b4c", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "623badbe-c161-4da8-a334-d18322d1b2e2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075258Z:6456fe5a-0e85-4adf-901a-5747db9a1b4c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7b2962ddded980a6ff7f58abb8b7cc32", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "d16ef323-31bd-475a-b841-42151fae1090", + "x-ms-client-request-id": "7b2962ddded980a6ff7f58abb8b7cc32", + "x-ms-correlation-request-id": "90fed239-de6f-43da-981b-0493118c781d", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "39cb23d9-1623-40a8-8d35-ad9bc2bc0d4b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075300Z:90fed239-de6f-43da-981b-0493118c781d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6913de35a75b2fa516c0015422e3d1d6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "b8ba6f50-8d32-4ce6-ae65-e2427705a51a", + "x-ms-client-request-id": "6913de35a75b2fa516c0015422e3d1d6", + "x-ms-correlation-request-id": "47b142d8-3e76-49b9-b577-217958af9d02", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "d2db021e-f740-47b4-b818-0628b685ee0f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075301Z:47b142d8-3e76-49b9-b577-217958af9d02" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "26fc06ce0d7d6f0ad748164b9b1b8439", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 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": "1c8dea21-e18c-42ba-84ac-4a65948d7241", + "x-ms-client-request-id": "26fc06ce0d7d6f0ad748164b9b1b8439", + "x-ms-correlation-request-id": "913292e4-2a11-417a-a3f3-0e2200853600", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "75f4f623-4fa0-4b95-a926-0055ea272ff2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075302Z:913292e4-2a11-417a-a3f3-0e2200853600" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a092482042ba3545bdf96519dc515d1c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 08 Sep 2021 07:53: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": "8ffe46ec-d832-429e-aa4f-6e9e441c2efd", + "x-ms-client-request-id": "a092482042ba3545bdf96519dc515d1c", + "x-ms-correlation-request-id": "059d1b28-b9ca-4228-af00-7058b3fa44a2", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "e8c72ee2-c0e8-40cd-95e5-804f7ba1861d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075303Z:059d1b28-b9ca-4228-af00-7058b3fa44a2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/caef4c6b-adbc-4ca8-af57-d7c0e469dbcb?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-beta.2", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b2dd81ada5bb28b5d3a39213905994fa", + "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, 08 Sep 2021 07:53:05 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": "0e08e48e-8970-4f52-8417-9edb46577714", + "x-ms-client-request-id": "b2dd81ada5bb28b5d3a39213905994fa", + "x-ms-correlation-request-id": "88b1d35c-f4f5-4572-b2bf-e0d65e588de9", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "38d431f1-885e-4d4f-8529-fd2394cd51f3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210908T075305Z:88b1d35c-f4f5-4572-b2bf-e0d65e588de9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + } + ], + "Variables": { + "LOCATION": "westus2", + "RandomSeed": "1531711705", + "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/ApplicationGatewayTests.cs b/sdk/network/Azure.ResourceManager.Network/tests/Tests/ApplicationGatewayTests.cs index de64c1d300b8c..b58cad63897a0 100644 --- a/sdk/network/Azure.ResourceManager.Network/tests/Tests/ApplicationGatewayTests.cs +++ b/sdk/network/Azure.ResourceManager.Network/tests/Tests/ApplicationGatewayTests.cs @@ -14,7 +14,7 @@ using NUnit.Framework; using SubResource = Azure.ResourceManager.Network.Models.SubResource; -namespace Azure.ResourceManager.Network.Tests.Tests +namespace Azure.ResourceManager.Network.Tests { public class ApplicationGatewayTests : NetworkServiceClientTestBase { diff --git a/sdk/network/Azure.ResourceManager.Network/tests/Tests/ApplicationSecurityGroupTests.cs b/sdk/network/Azure.ResourceManager.Network/tests/Tests/ApplicationSecurityGroupTests.cs index cea3522019aa0..bf802f12e5827 100644 --- a/sdk/network/Azure.ResourceManager.Network/tests/Tests/ApplicationSecurityGroupTests.cs +++ b/sdk/network/Azure.ResourceManager.Network/tests/Tests/ApplicationSecurityGroupTests.cs @@ -11,7 +11,7 @@ using Azure.ResourceManager.Network.Tests.Helpers; using NUnit.Framework; -namespace Azure.ResourceManager.Network.Tests.Tests +namespace Azure.ResourceManager.Network.Tests { public class ApplicationSecurityGroupTests : NetworkServiceClientTestBase diff --git a/sdk/network/Azure.ResourceManager.Network/tests/Tests/AvailableProvidersListTests.cs b/sdk/network/Azure.ResourceManager.Network/tests/Tests/AvailableProvidersListTests.cs index 9f5788f0ba00d..3642dee37e417 100644 --- a/sdk/network/Azure.ResourceManager.Network/tests/Tests/AvailableProvidersListTests.cs +++ b/sdk/network/Azure.ResourceManager.Network/tests/Tests/AvailableProvidersListTests.cs @@ -8,7 +8,7 @@ using Azure.ResourceManager.Network.Tests.Helpers; using NUnit.Framework; -namespace Azure.ResourceManager.Network.Tests.Tests +namespace Azure.ResourceManager.Network.Tests { public class AvailableProvidersListTests : NetworkServiceClientTestBase { diff --git a/sdk/network/Azure.ResourceManager.Network/tests/Tests/AzureReachabilityReportTests.cs b/sdk/network/Azure.ResourceManager.Network/tests/Tests/AzureReachabilityReportTests.cs index 9bb78b4ca1981..20e3b8b4d6b6e 100644 --- a/sdk/network/Azure.ResourceManager.Network/tests/Tests/AzureReachabilityReportTests.cs +++ b/sdk/network/Azure.ResourceManager.Network/tests/Tests/AzureReachabilityReportTests.cs @@ -8,7 +8,7 @@ using Azure.ResourceManager.Network.Tests.Helpers; using NUnit.Framework; -namespace Azure.ResourceManager.Network.Tests.Tests +namespace Azure.ResourceManager.Network.Tests { public class AzureReachabilityReportTests : NetworkServiceClientTestBase { diff --git a/sdk/network/Azure.ResourceManager.Network/tests/Tests/BastionHostContainerTests.cs b/sdk/network/Azure.ResourceManager.Network/tests/Tests/BastionHostContainerTests.cs new file mode 100644 index 0000000000000..9214998ddc3ae --- /dev/null +++ b/sdk/network/Azure.ResourceManager.Network/tests/Tests/BastionHostContainerTests.cs @@ -0,0 +1,148 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System.Threading.Tasks; +using Azure.Core.TestFramework; +using Azure.ResourceManager.Network.Models; +using Azure.ResourceManager.Network.Tests.Helpers; +using Azure.ResourceManager.Resources; +using Azure.ResourceManager.Resources.Models; +using NUnit.Framework; +using System.Collections.Generic; + +namespace Azure.ResourceManager.Network.Tests +{ + internal class BastionHostContainerTests : NetworkServiceClientTestBase + { + private ResourceGroup _resourceGroup; + private Subnet _subnet; + private PublicIPAddress _publicIPAddress; + + private ResourceIdentifier _resourceGroupIdentifier; + private ResourceIdentifier _subnetIdentifier; + private ResourceIdentifier _publicIPAddressIdentifier; + + public BastionHostContainerTests(bool isAsync) + : base(isAsync)//, RecordedTestMode.Record) + { + } + + [OneTimeSetUp] + public async Task GlobalSetUp() + { + var rgLro = await GlobalClient.DefaultSubscription.GetResourceGroups().CreateOrUpdateAsync(SessionRecording.GenerateAssetName("bastionrg-"), new ResourceGroupData(Location.WestUS2)); + ResourceGroup rg = rgLro.Value; + _resourceGroupIdentifier = rg.Id; + VirtualNetworkData vnetData = new VirtualNetworkData(); + vnetData.Location = Location.WestUS2; + vnetData.AddressSpace = new AddressSpace(); + vnetData.AddressSpace.AddressPrefixes.Add("10.0.0.0/16"); + var vnetLro = await rg.GetVirtualNetworks().CreateOrUpdateAsync(SessionRecording.GenerateAssetName("vnet-"), vnetData); + VirtualNetwork vnet = vnetLro.Value; + SubnetData subnetData = new SubnetData(); + subnetData.AddressPrefix = "10.0.0.0/24"; + var subnetLro = await vnet.GetSubnets().CreateOrUpdateAsync("AzureBastionSubnet", subnetData); + _subnetIdentifier = subnetLro.Value.Id; + PublicIPAddressData ipData = new PublicIPAddressData(); + ipData.Location = Location.WestUS2; + ipData.PublicIPAllocationMethod = IPAllocationMethod.Static; + ipData.Sku = new PublicIPAddressSku(); + ipData.Sku.Name = PublicIPAddressSkuName.Standard; + var ipLro = await rg.GetPublicIPAddresses().CreateOrUpdateAsync(SessionRecording.GenerateAssetName("ip-"), ipData); + _publicIPAddressIdentifier = ipLro.Value.Id; + StopSessionRecording(); + } + + [SetUp] + public async Task TestSetUp() + { + var client = GetArmClient(); + _resourceGroup = await client.GetResourceGroup(_resourceGroupIdentifier).GetAsync(); + VirtualNetwork vnet = await _resourceGroup.GetVirtualNetworks().GetAsync(_subnetIdentifier.Parent.Name); + _subnet = await vnet.GetSubnets().GetAsync(_subnetIdentifier.Name); + _publicIPAddress = await _resourceGroup.GetPublicIPAddresses().GetAsync(_publicIPAddressIdentifier.Name); + } + + [TearDown] + public async Task TestTearDown() + { + List bastionList = await _resourceGroup.GetBastionHosts().GetAllAsync().ToEnumerableAsync(); + foreach (var bastion in bastionList) + { + await bastion.DeleteAsync(); + } + } + + private async Task CreateBastionHost(string bastionName) + { + BastionHostData data = new BastionHostData(); + data.Location = TestEnvironment.Location; + BastionHostIPConfiguration ipConfig = new BastionHostIPConfiguration(); + ipConfig.Name = Recording.GenerateAssetName("bastionIPConfig-"); + ipConfig.Subnet = new Models.SubResource(); + ipConfig.Subnet.Id = _subnet.Id; + ipConfig.PublicIPAddress = new Models.SubResource(); + ipConfig.PublicIPAddress.Id = _publicIPAddress.Id; + data.IpConfigurations.Add(ipConfig); + var bastionLro = await _resourceGroup.GetBastionHosts().CreateOrUpdateAsync(bastionName, data); + return bastionLro.Value; + } + + [Test] + [RecordedTest] + public async Task CreateOrUpdate() + { + string bastionName = SessionRecording.GenerateAssetName("bastion-"); + BastionHost bastionHost = await CreateBastionHost(bastionName); + Assert.IsNotNull(bastionHost.Data); + Assert.AreEqual(bastionName, bastionHost.Data.Name); + Assert.AreEqual(Location.WestUS2.ToString(), bastionHost.Data.Location); + Assert.AreEqual(0, bastionHost.Data.Tags.Count); + } + + [Test] + [RecordedTest] + public async Task Get() + { + string bastionName = SessionRecording.GenerateAssetName("bastion-"); + BastionHost bastionHost = await CreateBastionHost(bastionName); + var bastion = await _resourceGroup.GetBastionHosts().GetAsync(bastionName); + Assert.IsNotNull(bastion.Value.Data); + Assert.AreEqual(bastionName, bastion.Value.Data.Name); + Assert.AreEqual(Location.WestUS2.ToString(), bastion.Value.Data.Location); + Assert.AreEqual(0, bastion.Value.Data.Tags.Count); + } + + [Test] + [RecordedTest] + public async Task GetAll() + { + string bastionName = SessionRecording.GenerateAssetName("bastion-"); + BastionHost bastionHost = await CreateBastionHost(bastionName); + List BastionList = await _resourceGroup.GetBastionHosts().GetAllAsync().ToEnumerableAsync(); + Has.One.EqualTo(BastionList); + Assert.AreEqual(bastionName, BastionList[0].Data.Name); + } + + [Test] + [RecordedTest] + public async Task CheckIfExists() + { + string bastionName = SessionRecording.GenerateAssetName("bastion-"); + BastionHost bastionHost = await CreateBastionHost(bastionName); + Assert.IsTrue(_resourceGroup.GetBastionHosts().CheckIfExists(bastionName)); + Assert.IsFalse(_resourceGroup.GetBastionHosts().CheckIfExists(bastionName + "1")); + } + + [Test] + [RecordedTest] + public async Task Delete() + { + string bastionName = SessionRecording.GenerateAssetName("bastion-"); + BastionHost bastionHost = await CreateBastionHost(bastionName); + await bastionHost.DeleteAsync(); + List bastionList = await _resourceGroup.GetBastionHosts().GetAllAsync().ToEnumerableAsync(); + Assert.IsEmpty(bastionList); + } + } +} diff --git a/sdk/network/Azure.ResourceManager.Network/tests/Tests/CheckConnectivityTests.cs b/sdk/network/Azure.ResourceManager.Network/tests/Tests/CheckConnectivityTests.cs index a7eafd3064069..bcf5d4cee2d25 100644 --- a/sdk/network/Azure.ResourceManager.Network/tests/Tests/CheckConnectivityTests.cs +++ b/sdk/network/Azure.ResourceManager.Network/tests/Tests/CheckConnectivityTests.cs @@ -10,7 +10,7 @@ using Azure.ResourceManager.Network.Tests.Helpers; using NUnit.Framework; -namespace Azure.ResourceManager.Network.Tests.Tests +namespace Azure.ResourceManager.Network.Tests { public class CheckConnectivityTests : NetworkServiceClientTestBase { diff --git a/sdk/network/Azure.ResourceManager.Network/tests/Tests/CheckDnsAvailabilityTests.cs b/sdk/network/Azure.ResourceManager.Network/tests/Tests/CheckDnsAvailabilityTests.cs index 405ee6f036fba..402c375df3ee4 100644 --- a/sdk/network/Azure.ResourceManager.Network/tests/Tests/CheckDnsAvailabilityTests.cs +++ b/sdk/network/Azure.ResourceManager.Network/tests/Tests/CheckDnsAvailabilityTests.cs @@ -7,7 +7,7 @@ using Azure.ResourceManager.Network.Tests.Helpers; using NUnit.Framework; -namespace Azure.ResourceManager.Network.Tests.Tests +namespace Azure.ResourceManager.Network.Tests { public class CheckDnsAvailabilityTests : NetworkServiceClientTestBase { diff --git a/sdk/network/Azure.ResourceManager.Network/tests/Tests/ConnectionMonitorTests.cs b/sdk/network/Azure.ResourceManager.Network/tests/Tests/ConnectionMonitorTests.cs index 7ca8bdf320929..a08a80ad76956 100644 --- a/sdk/network/Azure.ResourceManager.Network/tests/Tests/ConnectionMonitorTests.cs +++ b/sdk/network/Azure.ResourceManager.Network/tests/Tests/ConnectionMonitorTests.cs @@ -10,7 +10,7 @@ using Azure.ResourceManager.Network.Tests.Helpers; using NUnit.Framework; -namespace Azure.ResourceManager.Network.Tests.Tests +namespace Azure.ResourceManager.Network.Tests { public class ConnectionMonitorTests : NetworkServiceClientTestBase { diff --git a/sdk/network/Azure.ResourceManager.Network/tests/Tests/DdosProtectionPlanTests.cs b/sdk/network/Azure.ResourceManager.Network/tests/Tests/DdosProtectionPlanTests.cs index 40e47b0eca65f..26e97d8f5a22b 100644 --- a/sdk/network/Azure.ResourceManager.Network/tests/Tests/DdosProtectionPlanTests.cs +++ b/sdk/network/Azure.ResourceManager.Network/tests/Tests/DdosProtectionPlanTests.cs @@ -11,7 +11,7 @@ using Azure.ResourceManager.Network.Tests.Helpers; using NUnit.Framework; -namespace Azure.ResourceManager.Network.Tests.Tests +namespace Azure.ResourceManager.Network.Tests { public class DdosProtectionPlanTests : NetworkServiceClientTestBase diff --git a/sdk/network/Azure.ResourceManager.Network/tests/Tests/ExpandResourceTests.cs b/sdk/network/Azure.ResourceManager.Network/tests/Tests/ExpandResourceTests.cs index d3eaf0d643754..d4cd2d35124f2 100644 --- a/sdk/network/Azure.ResourceManager.Network/tests/Tests/ExpandResourceTests.cs +++ b/sdk/network/Azure.ResourceManager.Network/tests/Tests/ExpandResourceTests.cs @@ -12,7 +12,7 @@ using NUnit.Framework; using SubResource = Azure.ResourceManager.Network.Models.SubResource; -namespace Azure.ResourceManager.Network.Tests.Tests +namespace Azure.ResourceManager.Network.Tests { public class ExpandResourceTests : NetworkServiceClientTestBase { diff --git a/sdk/network/Azure.ResourceManager.Network/tests/Tests/ExpressRouteTests.cs b/sdk/network/Azure.ResourceManager.Network/tests/Tests/ExpressRouteTests.cs index db0ea29047419..88a8d66a205c6 100644 --- a/sdk/network/Azure.ResourceManager.Network/tests/Tests/ExpressRouteTests.cs +++ b/sdk/network/Azure.ResourceManager.Network/tests/Tests/ExpressRouteTests.cs @@ -13,7 +13,7 @@ using Azure.ResourceManager.Network.Tests.Helpers; using NUnit.Framework; -namespace Azure.ResourceManager.Network.Tests.Tests +namespace Azure.ResourceManager.Network.Tests { public class ExpressRouteTests : NetworkServiceClientTestBase { diff --git a/sdk/network/Azure.ResourceManager.Network/tests/Tests/FirewallPolicyRuleGroupTestResource.cs b/sdk/network/Azure.ResourceManager.Network/tests/Tests/FirewallPolicyRuleGroupTestResource.cs index c85a47f0a8097..7623554c043f8 100644 --- a/sdk/network/Azure.ResourceManager.Network/tests/Tests/FirewallPolicyRuleGroupTestResource.cs +++ b/sdk/network/Azure.ResourceManager.Network/tests/Tests/FirewallPolicyRuleGroupTestResource.cs @@ -5,7 +5,7 @@ using System.Reflection; using System.Text.Json; -namespace Azure.ResourceManager.Network.Tests.Tests +namespace Azure.ResourceManager.Network.Tests { internal static class FirewallPolicyRuleGroupTestResource { diff --git a/sdk/network/Azure.ResourceManager.Network/tests/Tests/FirewallPolicyTests.cs b/sdk/network/Azure.ResourceManager.Network/tests/Tests/FirewallPolicyTests.cs index 7fecfd33de3f3..2a036ca80d205 100644 --- a/sdk/network/Azure.ResourceManager.Network/tests/Tests/FirewallPolicyTests.cs +++ b/sdk/network/Azure.ResourceManager.Network/tests/Tests/FirewallPolicyTests.cs @@ -6,7 +6,7 @@ using Azure.ResourceManager.Network.Tests.Helpers; using NUnit.Framework; -namespace Azure.ResourceManager.Network.Tests.Tests +namespace Azure.ResourceManager.Network.Tests { public class FirewallPolicyTests : NetworkServiceClientTestBase { diff --git a/sdk/network/Azure.ResourceManager.Network/tests/Tests/FlowLogTests.cs b/sdk/network/Azure.ResourceManager.Network/tests/Tests/FlowLogTests.cs index 450ed87a7ef29..beeb0b3cdcd7d 100644 --- a/sdk/network/Azure.ResourceManager.Network/tests/Tests/FlowLogTests.cs +++ b/sdk/network/Azure.ResourceManager.Network/tests/Tests/FlowLogTests.cs @@ -12,7 +12,7 @@ using NUnit.Framework; //using Sku = Azure.ResourceManager.Storage.Models.Sku; -namespace Azure.ResourceManager.Network.Tests.Tests +namespace Azure.ResourceManager.Network.Tests { public class FlowLogTests : NetworkServiceClientTestBase { diff --git a/sdk/network/Azure.ResourceManager.Network/tests/Tests/GatewayOperationsTests.cs b/sdk/network/Azure.ResourceManager.Network/tests/Tests/GatewayOperationsTests.cs index 00774731d7c39..bab75fc1f63fa 100644 --- a/sdk/network/Azure.ResourceManager.Network/tests/Tests/GatewayOperationsTests.cs +++ b/sdk/network/Azure.ResourceManager.Network/tests/Tests/GatewayOperationsTests.cs @@ -15,7 +15,7 @@ using NUnit.Framework; using SubResource = Azure.ResourceManager.Network.Models.SubResource; -namespace Azure.ResourceManager.Network.Tests.Tests +namespace Azure.ResourceManager.Network.Tests { public class GatewayOperationsTests : NetworkServiceClientTestBase { diff --git a/sdk/network/Azure.ResourceManager.Network/tests/Tests/LoadBalancerTests.cs b/sdk/network/Azure.ResourceManager.Network/tests/Tests/LoadBalancerTests.cs index 5b80af1a93cb2..e77b7377c73c8 100644 --- a/sdk/network/Azure.ResourceManager.Network/tests/Tests/LoadBalancerTests.cs +++ b/sdk/network/Azure.ResourceManager.Network/tests/Tests/LoadBalancerTests.cs @@ -12,7 +12,7 @@ using NUnit.Framework; using SubResource = Azure.ResourceManager.Network.Models.SubResource; -namespace Azure.ResourceManager.Network.Tests.Tests +namespace Azure.ResourceManager.Network.Tests { public class LoadBalancerTests : NetworkServiceClientTestBase { diff --git a/sdk/network/Azure.ResourceManager.Network/tests/Tests/NetworkInterfaceTests.cs b/sdk/network/Azure.ResourceManager.Network/tests/Tests/NetworkInterfaceTests.cs index ddb8a3964b44b..b379de30a1c32 100644 --- a/sdk/network/Azure.ResourceManager.Network/tests/Tests/NetworkInterfaceTests.cs +++ b/sdk/network/Azure.ResourceManager.Network/tests/Tests/NetworkInterfaceTests.cs @@ -12,7 +12,7 @@ using Azure.ResourceManager.Network.Tests.Helpers; using NUnit.Framework; -namespace Azure.ResourceManager.Network.Tests.Tests +namespace Azure.ResourceManager.Network.Tests { public class NetworkInterfaceTests : NetworkServiceClientTestBase { diff --git a/sdk/network/Azure.ResourceManager.Network/tests/Tests/NetworkSecurityGroupTests.cs b/sdk/network/Azure.ResourceManager.Network/tests/Tests/NetworkSecurityGroupTests.cs index 9b0733222dd3b..d290d2e8046c2 100644 --- a/sdk/network/Azure.ResourceManager.Network/tests/Tests/NetworkSecurityGroupTests.cs +++ b/sdk/network/Azure.ResourceManager.Network/tests/Tests/NetworkSecurityGroupTests.cs @@ -11,7 +11,7 @@ using Azure.ResourceManager.Network.Tests.Helpers; using NUnit.Framework; -namespace Azure.ResourceManager.Network.Tests.Tests +namespace Azure.ResourceManager.Network.Tests { public class NetworkSecurityGroupTests : NetworkServiceClientTestBase { diff --git a/sdk/network/Azure.ResourceManager.Network/tests/Tests/NetworkWatcherTests.cs b/sdk/network/Azure.ResourceManager.Network/tests/Tests/NetworkWatcherTests.cs index ba42e07fcd05b..6a44847135a4a 100644 --- a/sdk/network/Azure.ResourceManager.Network/tests/Tests/NetworkWatcherTests.cs +++ b/sdk/network/Azure.ResourceManager.Network/tests/Tests/NetworkWatcherTests.cs @@ -11,7 +11,7 @@ using Azure.ResourceManager.Network.Tests.Helpers; using NUnit.Framework; -namespace Azure.ResourceManager.Network.Tests.Tests +namespace Azure.ResourceManager.Network.Tests { public class NetworkWatcherTests : NetworkServiceClientTestBase { diff --git a/sdk/network/Azure.ResourceManager.Network/tests/Tests/NextHopTests.cs b/sdk/network/Azure.ResourceManager.Network/tests/Tests/NextHopTests.cs index 57f9c920eeab0..fa8c1f9272a47 100644 --- a/sdk/network/Azure.ResourceManager.Network/tests/Tests/NextHopTests.cs +++ b/sdk/network/Azure.ResourceManager.Network/tests/Tests/NextHopTests.cs @@ -10,7 +10,7 @@ using Azure.ResourceManager.Network.Tests.Helpers; using NUnit.Framework; -namespace Azure.ResourceManager.Network.Tests.Tests +namespace Azure.ResourceManager.Network.Tests { public class NextHopTests : NetworkServiceClientTestBase { diff --git a/sdk/network/Azure.ResourceManager.Network/tests/Tests/PacketCaptureTests.cs b/sdk/network/Azure.ResourceManager.Network/tests/Tests/PacketCaptureTests.cs index 91f2a9f84a239..3a1f8bb223238 100644 --- a/sdk/network/Azure.ResourceManager.Network/tests/Tests/PacketCaptureTests.cs +++ b/sdk/network/Azure.ResourceManager.Network/tests/Tests/PacketCaptureTests.cs @@ -9,7 +9,7 @@ using Azure.ResourceManager.Network.Tests.Helpers; using NUnit.Framework; -namespace Azure.ResourceManager.Network.Tests.Tests +namespace Azure.ResourceManager.Network.Tests { public class PacketCaptureTests : NetworkServiceClientTestBase { diff --git a/sdk/network/Azure.ResourceManager.Network/tests/Tests/PrivateEndpointTests.cs b/sdk/network/Azure.ResourceManager.Network/tests/Tests/PrivateEndpointTests.cs index 7ea2b2e0d3fca..06d422c3ebf7d 100644 --- a/sdk/network/Azure.ResourceManager.Network/tests/Tests/PrivateEndpointTests.cs +++ b/sdk/network/Azure.ResourceManager.Network/tests/Tests/PrivateEndpointTests.cs @@ -11,7 +11,7 @@ using Azure.ResourceManager.Storage; using Azure.ResourceManager.Network.Models; -namespace Azure.ResourceManager.Network.Tests.Tests +namespace Azure.ResourceManager.Network.Tests { public class PrivateEndpointTests : NetworkServiceClientTestBase { diff --git a/sdk/network/Azure.ResourceManager.Network/tests/Tests/PrivateLinkServicesTest.cs b/sdk/network/Azure.ResourceManager.Network/tests/Tests/PrivateLinkServicesTest.cs index ef945564cc926..0e55c76171cf4 100644 --- a/sdk/network/Azure.ResourceManager.Network/tests/Tests/PrivateLinkServicesTest.cs +++ b/sdk/network/Azure.ResourceManager.Network/tests/Tests/PrivateLinkServicesTest.cs @@ -9,7 +9,7 @@ using NUnit.Framework; using Azure.ResourceManager.Resources; -namespace Azure.ResourceManager.Network.Tests.Tests +namespace Azure.ResourceManager.Network.Tests { public class PrivateLinkServicesTest : NetworkServiceClientTestBase { diff --git a/sdk/network/Azure.ResourceManager.Network/tests/Tests/PublicIpAddressTests.cs b/sdk/network/Azure.ResourceManager.Network/tests/Tests/PublicIpAddressTests.cs index 0f874342c2bf4..dc9a42eee7aeb 100644 --- a/sdk/network/Azure.ResourceManager.Network/tests/Tests/PublicIpAddressTests.cs +++ b/sdk/network/Azure.ResourceManager.Network/tests/Tests/PublicIpAddressTests.cs @@ -11,7 +11,7 @@ using Azure.ResourceManager.Network.Tests.Helpers; using NUnit.Framework; -namespace Azure.ResourceManager.Network.Tests.Tests +namespace Azure.ResourceManager.Network.Tests { public class PublicIpAddressTests : NetworkServiceClientTestBase { diff --git a/sdk/network/Azure.ResourceManager.Network/tests/Tests/PublicIpPrefixTests.cs b/sdk/network/Azure.ResourceManager.Network/tests/Tests/PublicIpPrefixTests.cs index 773948ee9a923..c44736f5321ca 100644 --- a/sdk/network/Azure.ResourceManager.Network/tests/Tests/PublicIpPrefixTests.cs +++ b/sdk/network/Azure.ResourceManager.Network/tests/Tests/PublicIpPrefixTests.cs @@ -11,7 +11,7 @@ using Azure.ResourceManager.Network.Tests.Helpers; using NUnit.Framework; -namespace Azure.ResourceManager.Network.Tests.Tests +namespace Azure.ResourceManager.Network.Tests { public class PublicIpPrefixTests : NetworkServiceClientTestBase diff --git a/sdk/network/Azure.ResourceManager.Network/tests/Tests/RouteFilterTests.cs b/sdk/network/Azure.ResourceManager.Network/tests/Tests/RouteFilterTests.cs index 145f0ad8c55bf..d8029141be518 100644 --- a/sdk/network/Azure.ResourceManager.Network/tests/Tests/RouteFilterTests.cs +++ b/sdk/network/Azure.ResourceManager.Network/tests/Tests/RouteFilterTests.cs @@ -13,7 +13,7 @@ using Azure.ResourceManager.Network.Tests.Helpers; using NUnit.Framework; -namespace Azure.ResourceManager.Network.Tests.Tests +namespace Azure.ResourceManager.Network.Tests { public class RouteFilterTests : NetworkServiceClientTestBase { diff --git a/sdk/network/Azure.ResourceManager.Network/tests/Tests/RouteTableTests.cs b/sdk/network/Azure.ResourceManager.Network/tests/Tests/RouteTableTests.cs index 0e8b41d977af2..12829cda55a0d 100644 --- a/sdk/network/Azure.ResourceManager.Network/tests/Tests/RouteTableTests.cs +++ b/sdk/network/Azure.ResourceManager.Network/tests/Tests/RouteTableTests.cs @@ -10,7 +10,7 @@ using Azure.ResourceManager.Network.Tests.Helpers; using NUnit.Framework; -namespace Azure.ResourceManager.Network.Tests.Tests +namespace Azure.ResourceManager.Network.Tests { public class RouteTableTests : NetworkServiceClientTestBase { diff --git a/sdk/network/Azure.ResourceManager.Network/tests/Tests/RouteTests.cs b/sdk/network/Azure.ResourceManager.Network/tests/Tests/RouteTests.cs index b28cfb424347b..5308e93f0d156 100644 --- a/sdk/network/Azure.ResourceManager.Network/tests/Tests/RouteTests.cs +++ b/sdk/network/Azure.ResourceManager.Network/tests/Tests/RouteTests.cs @@ -10,7 +10,7 @@ using Azure.ResourceManager.Network.Tests.Helpers; using NUnit.Framework; -namespace Azure.ResourceManager.Network.Tests.Tests +namespace Azure.ResourceManager.Network.Tests { public class RouteTests : NetworkServiceClientTestBase { diff --git a/sdk/network/Azure.ResourceManager.Network/tests/Tests/SecurityRuleTests.cs b/sdk/network/Azure.ResourceManager.Network/tests/Tests/SecurityRuleTests.cs index 21c29ea4cee10..cb0486071fcd8 100644 --- a/sdk/network/Azure.ResourceManager.Network/tests/Tests/SecurityRuleTests.cs +++ b/sdk/network/Azure.ResourceManager.Network/tests/Tests/SecurityRuleTests.cs @@ -10,7 +10,7 @@ using Azure.ResourceManager.Network.Tests.Helpers; using NUnit.Framework; -namespace Azure.ResourceManager.Network.Tests.Tests +namespace Azure.ResourceManager.Network.Tests { public class SecurityRuleTests : NetworkServiceClientTestBase { diff --git a/sdk/network/Azure.ResourceManager.Network/tests/Tests/SubnetTests.cs b/sdk/network/Azure.ResourceManager.Network/tests/Tests/SubnetTests.cs index a92c86ae8b991..1cd8e8a4b3201 100644 --- a/sdk/network/Azure.ResourceManager.Network/tests/Tests/SubnetTests.cs +++ b/sdk/network/Azure.ResourceManager.Network/tests/Tests/SubnetTests.cs @@ -10,7 +10,7 @@ using Azure.ResourceManager.Network.Tests.Helpers; using NUnit.Framework; -namespace Azure.ResourceManager.Network.Tests.Tests +namespace Azure.ResourceManager.Network.Tests { public class SubnetTests : NetworkServiceClientTestBase { diff --git a/sdk/network/Azure.ResourceManager.Network/tests/Tests/TopologyTests.cs b/sdk/network/Azure.ResourceManager.Network/tests/Tests/TopologyTests.cs index 21d04042f5533..46418018fc2b1 100644 --- a/sdk/network/Azure.ResourceManager.Network/tests/Tests/TopologyTests.cs +++ b/sdk/network/Azure.ResourceManager.Network/tests/Tests/TopologyTests.cs @@ -10,7 +10,7 @@ using Azure.ResourceManager.Network.Tests.Helpers; using NUnit.Framework; -namespace Azure.ResourceManager.Network.Tests.Tests +namespace Azure.ResourceManager.Network.Tests { public class TopologyTests : NetworkServiceClientTestBase { diff --git a/sdk/network/Azure.ResourceManager.Network/tests/Tests/TroubleshootTests.cs b/sdk/network/Azure.ResourceManager.Network/tests/Tests/TroubleshootTests.cs index b3cf8b9301fc3..6c086bcbf5ea8 100644 --- a/sdk/network/Azure.ResourceManager.Network/tests/Tests/TroubleshootTests.cs +++ b/sdk/network/Azure.ResourceManager.Network/tests/Tests/TroubleshootTests.cs @@ -14,7 +14,7 @@ //using Sku = Azure.ResourceManager.Storage.Models.Sku; using SubResource = Azure.ResourceManager.Network.Models.SubResource; -namespace Azure.ResourceManager.Network.Tests.Tests +namespace Azure.ResourceManager.Network.Tests { public class TroubleshootTests : NetworkServiceClientTestBase { diff --git a/sdk/network/Azure.ResourceManager.Network/tests/Tests/UsageTests.cs b/sdk/network/Azure.ResourceManager.Network/tests/Tests/UsageTests.cs index 082ba2b408e46..63ae225bb05a9 100644 --- a/sdk/network/Azure.ResourceManager.Network/tests/Tests/UsageTests.cs +++ b/sdk/network/Azure.ResourceManager.Network/tests/Tests/UsageTests.cs @@ -10,7 +10,7 @@ using Azure.ResourceManager.Network.Tests.Helpers; using NUnit.Framework; -namespace Azure.ResourceManager.Network.Tests.Tests +namespace Azure.ResourceManager.Network.Tests { public class UsageTests : NetworkServiceClientTestBase { diff --git a/sdk/network/Azure.ResourceManager.Network/tests/Tests/VerifyIpFlowTests.cs b/sdk/network/Azure.ResourceManager.Network/tests/Tests/VerifyIpFlowTests.cs index b99ce52b242f3..4239521e8f407 100644 --- a/sdk/network/Azure.ResourceManager.Network/tests/Tests/VerifyIpFlowTests.cs +++ b/sdk/network/Azure.ResourceManager.Network/tests/Tests/VerifyIpFlowTests.cs @@ -10,7 +10,7 @@ using Azure.ResourceManager.Network.Tests.Helpers; using NUnit.Framework; -namespace Azure.ResourceManager.Network.Tests.Tests +namespace Azure.ResourceManager.Network.Tests { public class VerifyIpFlowTests : NetworkServiceClientTestBase { diff --git a/sdk/network/Azure.ResourceManager.Network/tests/Tests/ViewNsgRuleTests.cs b/sdk/network/Azure.ResourceManager.Network/tests/Tests/ViewNsgRuleTests.cs index 68e2549294e3c..737b551c6a934 100644 --- a/sdk/network/Azure.ResourceManager.Network/tests/Tests/ViewNsgRuleTests.cs +++ b/sdk/network/Azure.ResourceManager.Network/tests/Tests/ViewNsgRuleTests.cs @@ -11,7 +11,7 @@ using Azure.ResourceManager.Network.Tests.Helpers; using NUnit.Framework; -namespace Azure.ResourceManager.Network.Tests.Tests +namespace Azure.ResourceManager.Network.Tests { public class ViewNsgRuleTests : NetworkServiceClientTestBase { diff --git a/sdk/network/Azure.ResourceManager.Network/tests/Tests/VirtualNetworkPeeringTests.cs b/sdk/network/Azure.ResourceManager.Network/tests/Tests/VirtualNetworkPeeringTests.cs index e8fe63241e30c..7dc5055692a20 100644 --- a/sdk/network/Azure.ResourceManager.Network/tests/Tests/VirtualNetworkPeeringTests.cs +++ b/sdk/network/Azure.ResourceManager.Network/tests/Tests/VirtualNetworkPeeringTests.cs @@ -11,7 +11,7 @@ using NUnit.Framework; using SubResource = Azure.ResourceManager.Network.Models.SubResource; -namespace Azure.ResourceManager.Network.Tests.Tests +namespace Azure.ResourceManager.Network.Tests { public class VirtualNetworkPeeringTests : NetworkServiceClientTestBase { diff --git a/sdk/network/Azure.ResourceManager.Network/tests/Tests/VirtualNetworkTests.cs b/sdk/network/Azure.ResourceManager.Network/tests/Tests/VirtualNetworkTests.cs index 3e8125c96f571..cb62ac56cc061 100644 --- a/sdk/network/Azure.ResourceManager.Network/tests/Tests/VirtualNetworkTests.cs +++ b/sdk/network/Azure.ResourceManager.Network/tests/Tests/VirtualNetworkTests.cs @@ -11,7 +11,7 @@ using NUnit.Framework; using SubResource = Azure.ResourceManager.Network.Models.SubResource; -namespace Azure.ResourceManager.Network.Tests.Tests +namespace Azure.ResourceManager.Network.Tests { public class VirtualNetworkTests : NetworkServiceClientTestBase { diff --git a/sdk/network/Azure.ResourceManager.Network/tests/Tests/VmssNetworkInterfaceTests.cs b/sdk/network/Azure.ResourceManager.Network/tests/Tests/VmssNetworkInterfaceTests.cs index 69752d4502521..eb4ce6693d12e 100644 --- a/sdk/network/Azure.ResourceManager.Network/tests/Tests/VmssNetworkInterfaceTests.cs +++ b/sdk/network/Azure.ResourceManager.Network/tests/Tests/VmssNetworkInterfaceTests.cs @@ -11,7 +11,7 @@ using Azure.ResourceManager.Network.Tests.Helpers; using NUnit.Framework; -namespace Azure.ResourceManager.Network.Tests.Tests +namespace Azure.ResourceManager.Network.Tests { public class VmssNetworkInterfaceTests : NetworkTestsManagementClientBase { diff --git a/sdk/network/Azure.ResourceManager.Network/tests/Tests/VmssPublicIpAddressTests.cs b/sdk/network/Azure.ResourceManager.Network/tests/Tests/VmssPublicIpAddressTests.cs index 26cab20cc7ae1..f87ae1490c4f8 100644 --- a/sdk/network/Azure.ResourceManager.Network/tests/Tests/VmssPublicIpAddressTests.cs +++ b/sdk/network/Azure.ResourceManager.Network/tests/Tests/VmssPublicIpAddressTests.cs @@ -12,7 +12,7 @@ using Azure.ResourceManager.Network.Tests.Helpers; using NUnit.Framework; -namespace Azure.ResourceManager.Network.Tests.Tests +namespace Azure.ResourceManager.Network.Tests { public class VmssPublicIpAddressTests : NetworkTestsManagementClientBase {