diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupContainer.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupContainer.cs index 50ad5b6295c51..556a653348de8 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupContainer.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupContainer.cs @@ -45,6 +45,39 @@ private ResourceGroupsRestOperations RestClient } } + /// + public override bool DoesExist(string resourceName, CancellationToken cancellationToken = default) + { + using var scope = Diagnostics.CreateScope("ResourceGroupContainer.DoesExist"); + scope.Start(); + try + { + return RestClient.CheckExistence(resourceName, cancellationToken).Value; + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// + public override async Task DoesExistAsync(string resourceName, CancellationToken cancellationToken = default) + { + using var scope = Diagnostics.CreateScope("ResourceGroupContainer.DoesExist"); + scope.Start(); + try + { + var response = await RestClient.CheckExistenceAsync(resourceName, cancellationToken).ConfigureAwait(false); + return response.Value; + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + /// /// Constructs an object used to create a resource group. /// diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ContainerTryGetTest.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ContainerTryGetTest.cs index aa30cede470fe..a3719c4e5eca3 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ContainerTryGetTest.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ContainerTryGetTest.cs @@ -39,14 +39,5 @@ public async Task TryGetTest() result = await _container.TryGetAsync("FakeName"); Assert.IsNull(result); } - - [TestCase] - [RecordedTest] - [SyncOnly] - public void DoesExistTest() - { - Assert.IsTrue(_container.DoesExist(_rgName)); - Assert.IsFalse(_container.DoesExist("FakeName")); - } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupContainerTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupContainerTests.cs index 8c55d370fecd9..01f2d963bcc60 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupContainerTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupContainerTests.cs @@ -85,6 +85,20 @@ public async Task Get() Assert.AreEqual(rg.Data.Location, rg2.Data.Location); Assert.AreEqual(rg.Data.ManagedBy, rg2.Data.ManagedBy); Assert.AreEqual(rg.Data.Tags, rg2.Data.Tags); + + Assert.ThrowsAsync(async () => _ = await Client.DefaultSubscription.GetResourceGroups().GetAsync(null)); + } + + [TestCase] + [RecordedTest] + public async Task DoesExist() + { + var rgName = Recording.GenerateAssetName("testRg-"); + ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).CreateOrUpdateAsync(rgName); + Assert.IsTrue(await Client.DefaultSubscription.GetResourceGroups().DoesExistAsync(rgName)); + Assert.IsFalse(await Client.DefaultSubscription.GetResourceGroups().DoesExistAsync(rgName + "1")); + + Assert.ThrowsAsync(async () => _ = await Client.DefaultSubscription.GetResourceGroups().DoesExistAsync(null)); } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupOperationsTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupOperationsTests.cs index 818d1ccdc6fa5..5721e461c9d12 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupOperationsTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupOperationsTests.cs @@ -36,6 +36,11 @@ public async Task StartDeleteRg() await deleteOp.UpdateStatusAsync(); await deleteOp.WaitForCompletionResponseAsync(); await deleteOp.WaitForCompletionResponseAsync(TimeSpan.FromSeconds(2)); + + var rgOp2 = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).StartCreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); + ResourceGroup rg2 = await rgOp.WaitForCompletionAsync(); + rg2.Id.Name = null; + Assert.ThrowsAsync(async () => _ = await rg2.StartDeleteAsync()); } [TestCase] @@ -61,6 +66,9 @@ public async Task Get() Assert.AreEqual(rg1.Data.Location, rg2.Data.Location); Assert.AreEqual(rg1.Data.ManagedBy, rg2.Data.ManagedBy); Assert.AreEqual(rg1.Data.Tags, rg2.Data.Tags); + + rg1.Id.Name = null; + Assert.ThrowsAsync(async () => _ = await rg1.GetAsync()); } [TestCase] @@ -83,6 +91,9 @@ public async Task Update() Assert.AreEqual(rg1.Data.Tags, rg2.Data.Tags); Assert.ThrowsAsync(async () => _ = await rg1.UpdateAsync(null)); + + rg1.Id.Name = null; + Assert.ThrowsAsync(async () => _ = await rg1.UpdateAsync(parameters)); } [TestCase] @@ -100,6 +111,9 @@ public async Task StartExportTemplate() var expOp = await rg.StartExportTemplateAsync(null); _ = await expOp.WaitForCompletionAsync(); }); + + rg.Id.Name = null; + Assert.ThrowsAsync(async () => _ = await rg.StartExportTemplateAsync(parameters)); } [TestCase] diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/DoesExistTest().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/DoesExistTest().json deleted file mode 100644 index d04fcaa5c0b3c..0000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/DoesExistTest().json +++ /dev/null @@ -1,204 +0,0 @@ -{ - "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.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "4e85c4375365fed0a708ce546ed5b6de", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "397", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 21:31:38 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "90b1046b-4fca-4588-9c12-67ccff17c491", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "90b1046b-4fca-4588-9c12-67ccff17c491", - "x-ms-routing-request-id": "WESTUS:20210330T213139Z:90b1046b-4fca-4588-9c12-67ccff17c491" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "authorizationSource": "RoleBased", - "managedByTenants": [], - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "Azure SDK sandbox", - "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?api-version=2019-11-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "a5f9034c240d32217b6c56554e2d48fe", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "397", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 21:31:39 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fa457cde-8d8f-485e-b634-2f786992b5ad", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "fa457cde-8d8f-485e-b634-2f786992b5ad", - "x-ms-routing-request-id": "WESTUS:20210330T213139Z:fa457cde-8d8f-485e-b634-2f786992b5ad" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "authorizationSource": "RoleBased", - "managedByTenants": [], - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "Azure SDK sandbox", - "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/CoreRg5347?api-version=2019-10-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "34", - "Content-Type": "application/json", - "traceparent": "00-e305c3caa260ca4ea212fcef006653fc-35b4e6043982f647-00", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "f10c9e1b00cfac3ad6d545a842aa42c2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "West US 2", - "tags": {} - }, - "StatusCode": 201, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "228", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 21:31:41 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f3343c28-b9ff-4cee-8811-f4d6620f331f", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "f3343c28-b9ff-4cee-8811-f4d6620f331f", - "x-ms-routing-request-id": "WESTUS:20210330T213141Z:f3343c28-b9ff-4cee-8811-f4d6620f331f" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/CoreRg5347", - "name": "CoreRg5347", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/CoreRg5347?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "c0593dbaa28a9f2a631ceae679a958db", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "228", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 21:31:41 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ebceb702-ab88-43b9-a207-228e115592c9", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "ebceb702-ab88-43b9-a207-228e115592c9", - "x-ms-routing-request-id": "WESTUS:20210330T213141Z:ebceb702-ab88-43b9-a207-228e115592c9" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/CoreRg5347", - "name": "CoreRg5347", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/FakeName?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "37525585ecaa4b7ec94dcf37df78efd0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 404, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "100", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 21:31:41 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3a0dd19f-ee97-49cd-a2a5-b10ebe29a50d", - "x-ms-failure-cause": "gateway", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "3a0dd19f-ee97-49cd-a2a5-b10ebe29a50d", - "x-ms-routing-request-id": "WESTUS:20210330T213141Z:3a0dd19f-ee97-49cd-a2a5-b10ebe29a50d" - }, - "ResponseBody": { - "error": { - "code": "ResourceGroupNotFound", - "message": "Resource group \u0027FakeName\u0027 could not be found." - } - } - } - ], - "Variables": { - "RandomSeed": "1360956521", - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" - } -} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/DoesExist().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/DoesExist().json new file mode 100644 index 0000000000000..c211dd9b93380 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/DoesExist().json @@ -0,0 +1,154 @@ +{ + "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.Core/1.0.0-alpha.20210622.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cf9bd5dd80499daf4a0cab98827f134b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "450", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 23 Jun 2021 00:46:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "03db3ea7-6be8-485f-8b7b-15c32d9affac", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "03db3ea7-6be8-485f-8b7b-15c32d9affac", + "x-ms-routing-request-id": "WESTUS2:20210623T004620Z:03db3ea7-6be8-485f-8b7b-15c32d9affac" + }, + "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": "Azure SDK sandbox", + "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/testRg-718?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-b765bd6d3b238d428bfe55a87814e168-5dc5a9e0845ba64d-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210622.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c08f1e4d8a63c357732510b998ceb605", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "228", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 23 Jun 2021 00:46:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "daa079ea-4e30-4404-8720-311d3c67b53b", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "daa079ea-4e30-4404-8720-311d3c67b53b", + "x-ms-routing-request-id": "WESTUS2:20210623T004621Z:daa079ea-4e30-4404-8720-311d3c67b53b" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-718", + "name": "testRg-718", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-718?api-version=2019-10-01", + "RequestMethod": "HEAD", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-cf650892a7ef0e48a9d1801ebc6ae54e-3f99eabe4793574d-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210622.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "02df012aa5689f153532768c0b9a8cd1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 23 Jun 2021 00:46:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "afaecc7e-5b98-4599-92c9-bf052da4208b", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "afaecc7e-5b98-4599-92c9-bf052da4208b", + "x-ms-routing-request-id": "WESTUS2:20210623T004621Z:afaecc7e-5b98-4599-92c9-bf052da4208b" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-7181?api-version=2019-10-01", + "RequestMethod": "HEAD", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-b6560d9e8983ba42bd56536332b16c40-e92ad794b4e89446-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210622.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "bd65965352a14b7a430bd65a9fe4b13d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "103", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 23 Jun 2021 00:46:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "4d97b507-16e9-4633-a4e5-811d9b084631", + "x-ms-failure-cause": "gateway", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "4d97b507-16e9-4633-a4e5-811d9b084631", + "x-ms-routing-request-id": "WESTUS2:20210623T004621Z:4d97b507-16e9-4633-a4e5-811d9b084631" + }, + "ResponseBody": [] + } + ], + "Variables": { + "RandomSeed": "1776805903", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/DoesExist()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/DoesExist()Async.json new file mode 100644 index 0000000000000..95b8d502ebbfa --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/DoesExist()Async.json @@ -0,0 +1,154 @@ +{ + "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.Core/1.0.0-alpha.20210622.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cf9bd5dd80499daf4a0cab98827f134b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "450", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 23 Jun 2021 00:46:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f24c0f17-3677-4ec9-9ed8-5de522ccdadd", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "f24c0f17-3677-4ec9-9ed8-5de522ccdadd", + "x-ms-routing-request-id": "WESTUS2:20210623T004620Z:f24c0f17-3677-4ec9-9ed8-5de522ccdadd" + }, + "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": "Azure SDK sandbox", + "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/testRg-718?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-cfdf75c6832a2b479b6e90b8f87fecc1-ab1bd0d4f7475c4b-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210622.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c08f1e4d8a63c357732510b998ceb605", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "228", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 23 Jun 2021 00:46:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "556ace10-4f54-4dcb-b1ab-8342ffb24dda", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "556ace10-4f54-4dcb-b1ab-8342ffb24dda", + "x-ms-routing-request-id": "WESTUS2:20210623T004621Z:556ace10-4f54-4dcb-b1ab-8342ffb24dda" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-718", + "name": "testRg-718", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-718?api-version=2019-10-01", + "RequestMethod": "HEAD", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-e0d467182ff2a24e9ad8bcce03af6e4c-1b01c8ca11605f46-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210622.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "02df012aa5689f153532768c0b9a8cd1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 23 Jun 2021 00:46:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a8421d0b-58a3-4a55-98e1-27bb858df8a5", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "a8421d0b-58a3-4a55-98e1-27bb858df8a5", + "x-ms-routing-request-id": "WESTUS2:20210623T004621Z:a8421d0b-58a3-4a55-98e1-27bb858df8a5" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-7181?api-version=2019-10-01", + "RequestMethod": "HEAD", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-c019c215c939a54bba85f8bb180282b9-4e253108802e0f40-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210622.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "bd65965352a14b7a430bd65a9fe4b13d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "103", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 23 Jun 2021 00:46:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c52c83ba-00dd-418e-9d06-45ea8a26bceb", + "x-ms-failure-cause": "gateway", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "c52c83ba-00dd-418e-9d06-45ea8a26bceb", + "x-ms-routing-request-id": "WESTUS2:20210623T004621Z:c52c83ba-00dd-418e-9d06-45ea8a26bceb" + }, + "ResponseBody": [] + } + ], + "Variables": { + "RandomSeed": "1776805903", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteRg().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteRg().json index 73b41834e100f..c9d70c338dae9 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteRg().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteRg().json @@ -6,7 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e6624df4553424cb014a2ffa04c465e3", "x-ms-return-client-request-id": "true" }, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Jun 2021 17:33:36 GMT", + "Date": "Thu, 24 Jun 2021 18:24:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2b00cd38-611b-4e8a-bd5c-b66a581c0edb", + "x-ms-correlation-request-id": "51ec9cc2-d07e-4b62-8ba5-b3ca7b653421", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "2b00cd38-611b-4e8a-bd5c-b66a581c0edb", - "x-ms-routing-request-id": "WESTUS2:20210617T173336Z:2b00cd38-611b-4e8a-bd5c-b66a581c0edb" + "x-ms-request-id": "51ec9cc2-d07e-4b62-8ba5-b3ca7b653421", + "x-ms-routing-request-id": "WESTUS2:20210624T182407Z:51ec9cc2-d07e-4b62-8ba5-b3ca7b653421" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -53,8 +53,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-27a5a9bd7bd1764c8ab245a506bca655-c8d0530dd4e3c749-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-1e17ade7c6d591438dd2aa7600535019-c63654fb09b00f48-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8a57f07703ff96683d7c799dcc470c10", "x-ms-return-client-request-id": "true" }, @@ -67,15 +67,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Jun 2021 17:33:37 GMT", + "Date": "Thu, 24 Jun 2021 18:24:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "73fd43c1-b642-4a7f-99f6-b12669a6874a", + "x-ms-correlation-request-id": "53b79292-30fd-4f19-ba53-06a79857e781", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "73fd43c1-b642-4a7f-99f6-b12669a6874a", - "x-ms-routing-request-id": "WESTUS2:20210617T173338Z:73fd43c1-b642-4a7f-99f6-b12669a6874a" + "x-ms-request-id": "53b79292-30fd-4f19-ba53-06a79857e781", + "x-ms-routing-request-id": "WESTUS2:20210624T182408Z:53b79292-30fd-4f19-ba53-06a79857e781" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1124", @@ -94,8 +94,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-3231d6881c4e384eb9d225fa5ba102fc-3adac60f178bc349-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-3ff81264e0dacb4a9e9a9d37abf1e477-caf2846ee3cdd84c-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "dfad7924b0960026bc4d2b775987eb11", "x-ms-return-client-request-id": "true" }, @@ -104,17 +104,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:33:37 GMT", + "Date": "Thu, 24 Jun 2021 18:24:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dc7bd33b-8c92-4ac7-8414-97b8a821957d", + "x-ms-correlation-request-id": "b6274f1e-8a13-424d-9766-cac5991469f1", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-request-id": "dc7bd33b-8c92-4ac7-8414-97b8a821957d", - "x-ms-routing-request-id": "WESTUS2:20210617T173338Z:dc7bd33b-8c92-4ac7-8414-97b8a821957d" + "x-ms-request-id": "b6274f1e-8a13-424d-9766-cac5991469f1", + "x-ms-routing-request-id": "WESTUS2:20210624T182408Z:b6274f1e-8a13-424d-9766-cac5991469f1" }, "ResponseBody": [] }, @@ -123,7 +123,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4bdfea2303b8c681c957ceb2d7f13cb5", "x-ms-return-client-request-id": "true" }, @@ -132,17 +132,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:33:37 GMT", + "Date": "Thu, 24 Jun 2021 18:24:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aa22ba66-c515-4079-89a5-a2bb0ba1fe32", + "x-ms-correlation-request-id": "bc5d8e37-f12d-4a4f-8ad3-0cfc20bf2cb3", "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "aa22ba66-c515-4079-89a5-a2bb0ba1fe32", - "x-ms-routing-request-id": "WESTUS2:20210617T173338Z:aa22ba66-c515-4079-89a5-a2bb0ba1fe32" + "x-ms-request-id": "bc5d8e37-f12d-4a4f-8ad3-0cfc20bf2cb3", + "x-ms-routing-request-id": "WESTUS2:20210624T182408Z:bc5d8e37-f12d-4a4f-8ad3-0cfc20bf2cb3" }, "ResponseBody": [] }, @@ -151,7 +151,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6ef168903acf3e8f8462e545b94dae34", "x-ms-return-client-request-id": "true" }, @@ -160,17 +160,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:33:37 GMT", + "Date": "Thu, 24 Jun 2021 18:24:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "750c3853-4cee-40f3-af91-f346452e97d4", + "x-ms-correlation-request-id": "cf49555b-f039-4e9a-954c-492b15fc6f94", "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "750c3853-4cee-40f3-af91-f346452e97d4", - "x-ms-routing-request-id": "WESTUS2:20210617T173338Z:750c3853-4cee-40f3-af91-f346452e97d4" + "x-ms-request-id": "cf49555b-f039-4e9a-954c-492b15fc6f94", + "x-ms-routing-request-id": "WESTUS2:20210624T182408Z:cf49555b-f039-4e9a-954c-492b15fc6f94" }, "ResponseBody": [] }, @@ -179,7 +179,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6f5328189fa7a859dcb0082917427208", "x-ms-return-client-request-id": "true" }, @@ -188,17 +188,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:33:38 GMT", + "Date": "Thu, 24 Jun 2021 18:24:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dfa284ff-61f6-46ab-a34f-41e2a4ea03b4", + "x-ms-correlation-request-id": "db7ab53c-e5a8-435f-9fa7-b8b48cb2efbc", "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "dfa284ff-61f6-46ab-a34f-41e2a4ea03b4", - "x-ms-routing-request-id": "WESTUS2:20210617T173339Z:dfa284ff-61f6-46ab-a34f-41e2a4ea03b4" + "x-ms-request-id": "db7ab53c-e5a8-435f-9fa7-b8b48cb2efbc", + "x-ms-routing-request-id": "WESTUS2:20210624T182409Z:db7ab53c-e5a8-435f-9fa7-b8b48cb2efbc" }, "ResponseBody": [] }, @@ -207,7 +207,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ea484113c695e9335aa1c6551d3b0d7c", "x-ms-return-client-request-id": "true" }, @@ -216,17 +216,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:33:39 GMT", + "Date": "Thu, 24 Jun 2021 18:24:10 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b1b8ec7c-d66e-4f4b-a1a7-a23153d14a5b", + "x-ms-correlation-request-id": "ad563d1c-b16a-46c6-aaaa-a5639be5a30d", "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "b1b8ec7c-d66e-4f4b-a1a7-a23153d14a5b", - "x-ms-routing-request-id": "WESTUS2:20210617T173340Z:b1b8ec7c-d66e-4f4b-a1a7-a23153d14a5b" + "x-ms-request-id": "ad563d1c-b16a-46c6-aaaa-a5639be5a30d", + "x-ms-routing-request-id": "WESTUS2:20210624T182410Z:ad563d1c-b16a-46c6-aaaa-a5639be5a30d" }, "ResponseBody": [] }, @@ -235,7 +235,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "af9a99a9cd9df00d0e48911e32662642", "x-ms-return-client-request-id": "true" }, @@ -244,17 +244,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:33:40 GMT", + "Date": "Thu, 24 Jun 2021 18:24:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9a91001b-305f-4a83-80f8-8bd2d9323b3e", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "9a91001b-305f-4a83-80f8-8bd2d9323b3e", - "x-ms-routing-request-id": "WESTUS2:20210617T173341Z:9a91001b-305f-4a83-80f8-8bd2d9323b3e" + "x-ms-correlation-request-id": "49baf867-baa9-44e1-9e8c-943f3bd82627", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "49baf867-baa9-44e1-9e8c-943f3bd82627", + "x-ms-routing-request-id": "WESTUS2:20210624T182411Z:49baf867-baa9-44e1-9e8c-943f3bd82627" }, "ResponseBody": [] }, @@ -263,7 +263,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7732ddefc305519ef56a1506d8038aa0", "x-ms-return-client-request-id": "true" }, @@ -272,17 +272,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:33:41 GMT", + "Date": "Thu, 24 Jun 2021 18:24:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0935df08-c835-4b03-88db-f6d0b85ffcac", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "0935df08-c835-4b03-88db-f6d0b85ffcac", - "x-ms-routing-request-id": "WESTUS2:20210617T173342Z:0935df08-c835-4b03-88db-f6d0b85ffcac" + "x-ms-correlation-request-id": "e012adcc-f64b-4429-9f36-e637b562c0f3", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "e012adcc-f64b-4429-9f36-e637b562c0f3", + "x-ms-routing-request-id": "WESTUS2:20210624T182412Z:e012adcc-f64b-4429-9f36-e637b562c0f3" }, "ResponseBody": [] }, @@ -291,7 +291,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7e7f8ba3c3a8466b3357db4d3514b7f3", "x-ms-return-client-request-id": "true" }, @@ -300,17 +300,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:33:42 GMT", + "Date": "Thu, 24 Jun 2021 18:24:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7f3d874d-d802-4b40-8485-e128c1cda00c", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "7f3d874d-d802-4b40-8485-e128c1cda00c", - "x-ms-routing-request-id": "WESTUS2:20210617T173343Z:7f3d874d-d802-4b40-8485-e128c1cda00c" + "x-ms-correlation-request-id": "207e1191-85d2-4486-b2d9-ef6b67a0d58a", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "207e1191-85d2-4486-b2d9-ef6b67a0d58a", + "x-ms-routing-request-id": "WESTUS2:20210624T182414Z:207e1191-85d2-4486-b2d9-ef6b67a0d58a" }, "ResponseBody": [] }, @@ -319,7 +319,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4065847a9509e576fa48ba32b806180b", "x-ms-return-client-request-id": "true" }, @@ -328,17 +328,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:33:43 GMT", + "Date": "Thu, 24 Jun 2021 18:24:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f96b0c7e-3b26-4a97-8398-f55bcb2decb6", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "f96b0c7e-3b26-4a97-8398-f55bcb2decb6", - "x-ms-routing-request-id": "WESTUS2:20210617T173344Z:f96b0c7e-3b26-4a97-8398-f55bcb2decb6" + "x-ms-correlation-request-id": "673deae6-12a3-4eb3-b297-668dda20d607", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "673deae6-12a3-4eb3-b297-668dda20d607", + "x-ms-routing-request-id": "WESTUS2:20210624T182415Z:673deae6-12a3-4eb3-b297-668dda20d607" }, "ResponseBody": [] }, @@ -347,7 +347,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a67bf0bea8e72c9971ec44aee8511ce0", "x-ms-return-client-request-id": "true" }, @@ -356,17 +356,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:33:44 GMT", + "Date": "Thu, 24 Jun 2021 18:24:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d3fc5099-b28c-4fbc-b434-1c1d707491db", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "d3fc5099-b28c-4fbc-b434-1c1d707491db", - "x-ms-routing-request-id": "WESTUS2:20210617T173345Z:d3fc5099-b28c-4fbc-b434-1c1d707491db" + "x-ms-correlation-request-id": "cddd9eee-f819-4809-b6c9-7b1f34f52a83", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "cddd9eee-f819-4809-b6c9-7b1f34f52a83", + "x-ms-routing-request-id": "WESTUS2:20210624T182416Z:cddd9eee-f819-4809-b6c9-7b1f34f52a83" }, "ResponseBody": [] }, @@ -375,7 +375,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "548c21b24a9e0e97159a835f09388d2c", "x-ms-return-client-request-id": "true" }, @@ -384,17 +384,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:33:45 GMT", + "Date": "Thu, 24 Jun 2021 18:24:16 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "264913f5-7e2d-4f7e-8a4b-bba5179eadcf", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "264913f5-7e2d-4f7e-8a4b-bba5179eadcf", - "x-ms-routing-request-id": "WESTUS2:20210617T173346Z:264913f5-7e2d-4f7e-8a4b-bba5179eadcf" + "x-ms-correlation-request-id": "f486209d-a8b0-4ebc-b7d1-5ee198328245", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "f486209d-a8b0-4ebc-b7d1-5ee198328245", + "x-ms-routing-request-id": "WESTUS2:20210624T182417Z:f486209d-a8b0-4ebc-b7d1-5ee198328245" }, "ResponseBody": [] }, @@ -403,7 +403,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "448ed03f1199d10ceb39cf1d51c8fda9", "x-ms-return-client-request-id": "true" }, @@ -412,17 +412,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:33:46 GMT", + "Date": "Thu, 24 Jun 2021 18:24:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "501c0159-5c44-4f19-ab2a-17be97ec2604", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "501c0159-5c44-4f19-ab2a-17be97ec2604", - "x-ms-routing-request-id": "WESTUS2:20210617T173347Z:501c0159-5c44-4f19-ab2a-17be97ec2604" + "x-ms-correlation-request-id": "dfb4ac33-75f5-4ed9-a272-7f14d387542f", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "dfb4ac33-75f5-4ed9-a272-7f14d387542f", + "x-ms-routing-request-id": "WESTUS2:20210624T182418Z:dfb4ac33-75f5-4ed9-a272-7f14d387542f" }, "ResponseBody": [] }, @@ -431,7 +431,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "967fd92cc47a746d596c904c25392338", "x-ms-return-client-request-id": "true" }, @@ -440,17 +440,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:33:47 GMT", + "Date": "Thu, 24 Jun 2021 18:24:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d724ceda-f08f-460b-b548-f2265a975002", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "d724ceda-f08f-460b-b548-f2265a975002", - "x-ms-routing-request-id": "WESTUS2:20210617T173348Z:d724ceda-f08f-460b-b548-f2265a975002" + "x-ms-correlation-request-id": "15b32adf-263f-4f9a-bc0d-27904a442cd7", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "15b32adf-263f-4f9a-bc0d-27904a442cd7", + "x-ms-routing-request-id": "WESTUS2:20210624T182419Z:15b32adf-263f-4f9a-bc0d-27904a442cd7" }, "ResponseBody": [] }, @@ -459,7 +459,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "186e175ed7c2a14715bb68647a7abd4d", "x-ms-return-client-request-id": "true" }, @@ -468,17 +468,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:33:48 GMT", + "Date": "Thu, 24 Jun 2021 18:24:19 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "19efd548-6b00-46f4-83e6-e7e942d53618", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "19efd548-6b00-46f4-83e6-e7e942d53618", - "x-ms-routing-request-id": "WESTUS2:20210617T173349Z:19efd548-6b00-46f4-83e6-e7e942d53618" + "x-ms-correlation-request-id": "2b598953-fff7-4a2d-8745-67674e2ea948", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "2b598953-fff7-4a2d-8745-67674e2ea948", + "x-ms-routing-request-id": "WESTUS2:20210624T182420Z:2b598953-fff7-4a2d-8745-67674e2ea948" }, "ResponseBody": [] }, @@ -487,7 +487,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2f33da9df6b87bb2621aeb2c80bfabb1", "x-ms-return-client-request-id": "true" }, @@ -496,17 +496,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:33:49 GMT", + "Date": "Thu, 24 Jun 2021 18:24:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0295d4a1-fdc1-4975-a7c7-3e06fc79ed86", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "0295d4a1-fdc1-4975-a7c7-3e06fc79ed86", - "x-ms-routing-request-id": "WESTUS2:20210617T173350Z:0295d4a1-fdc1-4975-a7c7-3e06fc79ed86" + "x-ms-correlation-request-id": "ffcad5af-a280-4596-870a-f2e2d2220004", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "ffcad5af-a280-4596-870a-f2e2d2220004", + "x-ms-routing-request-id": "WESTUS2:20210624T182421Z:ffcad5af-a280-4596-870a-f2e2d2220004" }, "ResponseBody": [] }, @@ -515,7 +515,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "39be9615e45955e692de81be5b08f9de", "x-ms-return-client-request-id": "true" }, @@ -524,17 +524,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:33:50 GMT", + "Date": "Thu, 24 Jun 2021 18:24:21 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "36b9e1a9-738e-4557-b1fd-e4727a5ad14a", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "36b9e1a9-738e-4557-b1fd-e4727a5ad14a", - "x-ms-routing-request-id": "WESTUS2:20210617T173351Z:36b9e1a9-738e-4557-b1fd-e4727a5ad14a" + "x-ms-correlation-request-id": "02bd6cfa-1570-486a-9195-94cdd9a0ec5c", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "02bd6cfa-1570-486a-9195-94cdd9a0ec5c", + "x-ms-routing-request-id": "WESTUS2:20210624T182422Z:02bd6cfa-1570-486a-9195-94cdd9a0ec5c" }, "ResponseBody": [] }, @@ -543,7 +543,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4baf43aff406677f64f3b5a8eb1b2156", "x-ms-return-client-request-id": "true" }, @@ -552,17 +552,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:33:52 GMT", + "Date": "Thu, 24 Jun 2021 18:24:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cd48a381-5afe-477d-980e-eea40b05472c", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "cd48a381-5afe-477d-980e-eea40b05472c", - "x-ms-routing-request-id": "WESTUS2:20210617T173352Z:cd48a381-5afe-477d-980e-eea40b05472c" + "x-ms-correlation-request-id": "e225122a-f351-4a4f-913d-af4d0eba7933", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "e225122a-f351-4a4f-913d-af4d0eba7933", + "x-ms-routing-request-id": "WESTUS2:20210624T182423Z:e225122a-f351-4a4f-913d-af4d0eba7933" }, "ResponseBody": [] }, @@ -571,7 +571,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e44eb70f83bbb8f4f3dd9cda75f4205a", "x-ms-return-client-request-id": "true" }, @@ -580,17 +580,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:33:53 GMT", + "Date": "Thu, 24 Jun 2021 18:24:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2149e2e5-56a1-4656-b4dc-a0149a17c0ab", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "2149e2e5-56a1-4656-b4dc-a0149a17c0ab", - "x-ms-routing-request-id": "WESTUS2:20210617T173353Z:2149e2e5-56a1-4656-b4dc-a0149a17c0ab" + "x-ms-correlation-request-id": "4f1420c8-8aff-47cb-bac9-bbec46d75b40", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "4f1420c8-8aff-47cb-bac9-bbec46d75b40", + "x-ms-routing-request-id": "WESTUS2:20210624T182424Z:4f1420c8-8aff-47cb-bac9-bbec46d75b40" }, "ResponseBody": [] }, @@ -599,7 +599,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3d7c0d21600f21aa1656d4652f3e6977", "x-ms-return-client-request-id": "true" }, @@ -608,17 +608,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:33:54 GMT", + "Date": "Thu, 24 Jun 2021 18:24:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "03f3b867-111b-43d0-af4d-7f5c31822358", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "03f3b867-111b-43d0-af4d-7f5c31822358", - "x-ms-routing-request-id": "WESTUS2:20210617T173354Z:03f3b867-111b-43d0-af4d-7f5c31822358" + "x-ms-correlation-request-id": "a5c5efbf-49a4-49fb-8b47-9be5d65104e1", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "a5c5efbf-49a4-49fb-8b47-9be5d65104e1", + "x-ms-routing-request-id": "WESTUS2:20210624T182425Z:a5c5efbf-49a4-49fb-8b47-9be5d65104e1" }, "ResponseBody": [] }, @@ -627,7 +627,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a3ae2abc15b92b224ff7572957a5f170", "x-ms-return-client-request-id": "true" }, @@ -636,17 +636,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:33:55 GMT", + "Date": "Thu, 24 Jun 2021 18:24:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b29dbabb-df9a-49c9-9ee3-c3949cb70225", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "b29dbabb-df9a-49c9-9ee3-c3949cb70225", - "x-ms-routing-request-id": "WESTUS2:20210617T173355Z:b29dbabb-df9a-49c9-9ee3-c3949cb70225" + "x-ms-correlation-request-id": "3335e531-6e4f-4c5b-b172-87d259a70a7f", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "3335e531-6e4f-4c5b-b172-87d259a70a7f", + "x-ms-routing-request-id": "WESTUS2:20210624T182426Z:3335e531-6e4f-4c5b-b172-87d259a70a7f" }, "ResponseBody": [] }, @@ -655,7 +655,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "de865ad3e49eaf460d2ccd65ae8e89b5", "x-ms-return-client-request-id": "true" }, @@ -664,17 +664,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:33:57 GMT", + "Date": "Thu, 24 Jun 2021 18:24:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d0d77da6-d101-4451-9f6e-555b1a63212e", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "d0d77da6-d101-4451-9f6e-555b1a63212e", - "x-ms-routing-request-id": "WESTUS2:20210617T173357Z:d0d77da6-d101-4451-9f6e-555b1a63212e" + "x-ms-correlation-request-id": "718b9c9b-51a3-482b-b836-b4e3f45cff0a", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "718b9c9b-51a3-482b-b836-b4e3f45cff0a", + "x-ms-routing-request-id": "WESTUS2:20210624T182427Z:718b9c9b-51a3-482b-b836-b4e3f45cff0a" }, "ResponseBody": [] }, @@ -683,7 +683,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4a1d25747c450ca1ea50ed180981ca71", "x-ms-return-client-request-id": "true" }, @@ -692,17 +692,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:33:58 GMT", + "Date": "Thu, 24 Jun 2021 18:24:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d9327082-3eaf-448f-9973-295348f74038", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "d9327082-3eaf-448f-9973-295348f74038", - "x-ms-routing-request-id": "WESTUS2:20210617T173358Z:d9327082-3eaf-448f-9973-295348f74038" + "x-ms-correlation-request-id": "0608ecfa-fcca-4ffd-9e80-4683bc44ace3", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "0608ecfa-fcca-4ffd-9e80-4683bc44ace3", + "x-ms-routing-request-id": "WESTUS2:20210624T182428Z:0608ecfa-fcca-4ffd-9e80-4683bc44ace3" }, "ResponseBody": [] }, @@ -711,7 +711,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d49264648bb7d8d8e4ff968c47bd7dc0", "x-ms-return-client-request-id": "true" }, @@ -720,17 +720,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:33:59 GMT", + "Date": "Thu, 24 Jun 2021 18:24:28 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4fb5d092-8fb8-4354-ae57-5be6fe54c323", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "4fb5d092-8fb8-4354-ae57-5be6fe54c323", - "x-ms-routing-request-id": "WESTUS2:20210617T173359Z:4fb5d092-8fb8-4354-ae57-5be6fe54c323" + "x-ms-correlation-request-id": "5544e0a9-a5ee-41e6-9956-eddf11cfd890", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "5544e0a9-a5ee-41e6-9956-eddf11cfd890", + "x-ms-routing-request-id": "WESTUS2:20210624T182429Z:5544e0a9-a5ee-41e6-9956-eddf11cfd890" }, "ResponseBody": [] }, @@ -739,7 +739,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "31b5a16da787562bb97af44df62da58c", "x-ms-return-client-request-id": "true" }, @@ -748,17 +748,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:34:00 GMT", + "Date": "Thu, 24 Jun 2021 18:24:29 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "43a6ec4b-9c64-4821-a9f9-cdf4680b8170", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-request-id": "43a6ec4b-9c64-4821-a9f9-cdf4680b8170", - "x-ms-routing-request-id": "WESTUS2:20210617T173400Z:43a6ec4b-9c64-4821-a9f9-cdf4680b8170" + "x-ms-correlation-request-id": "607d5a48-6585-4647-9c1b-ef14d83254b3", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "607d5a48-6585-4647-9c1b-ef14d83254b3", + "x-ms-routing-request-id": "WESTUS2:20210624T182430Z:607d5a48-6585-4647-9c1b-ef14d83254b3" }, "ResponseBody": [] }, @@ -767,7 +767,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4a005c62b5fce8fe4c446645e614c52c", "x-ms-return-client-request-id": "true" }, @@ -776,17 +776,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:34:01 GMT", + "Date": "Thu, 24 Jun 2021 18:24:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5144db91-5444-4fd5-9212-47d9b835affe", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-request-id": "5144db91-5444-4fd5-9212-47d9b835affe", - "x-ms-routing-request-id": "WESTUS2:20210617T173401Z:5144db91-5444-4fd5-9212-47d9b835affe" + "x-ms-correlation-request-id": "d1cb58fc-4aed-4621-8f60-4d7eaa262f43", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "d1cb58fc-4aed-4621-8f60-4d7eaa262f43", + "x-ms-routing-request-id": "WESTUS2:20210624T182431Z:d1cb58fc-4aed-4621-8f60-4d7eaa262f43" }, "ResponseBody": [] }, @@ -795,7 +795,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "67ab2cd398ccbde9393b1a3c978ae2b6", "x-ms-return-client-request-id": "true" }, @@ -804,17 +804,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:34:02 GMT", + "Date": "Thu, 24 Jun 2021 18:24:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5f736ce4-668c-40b4-b1a5-e1abd74d6ee9", - "x-ms-ratelimit-remaining-subscription-reads": "11962", - "x-ms-request-id": "5f736ce4-668c-40b4-b1a5-e1abd74d6ee9", - "x-ms-routing-request-id": "WESTUS2:20210617T173402Z:5f736ce4-668c-40b4-b1a5-e1abd74d6ee9" + "x-ms-correlation-request-id": "7947596c-2c1d-46a6-9d13-441814ac6d15", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "7947596c-2c1d-46a6-9d13-441814ac6d15", + "x-ms-routing-request-id": "WESTUS2:20210624T182432Z:7947596c-2c1d-46a6-9d13-441814ac6d15" }, "ResponseBody": [] }, @@ -823,7 +823,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ea2a095a33bdb8c4a3cce44240e56fa4", "x-ms-return-client-request-id": "true" }, @@ -832,17 +832,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:34:03 GMT", + "Date": "Thu, 24 Jun 2021 18:24:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "325fc974-e350-4b1e-89cd-d88534ba6a8a", - "x-ms-ratelimit-remaining-subscription-reads": "11960", - "x-ms-request-id": "325fc974-e350-4b1e-89cd-d88534ba6a8a", - "x-ms-routing-request-id": "WESTUS2:20210617T173403Z:325fc974-e350-4b1e-89cd-d88534ba6a8a" + "x-ms-correlation-request-id": "78e66393-c2cf-4f91-85b0-da984f58866d", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "78e66393-c2cf-4f91-85b0-da984f58866d", + "x-ms-routing-request-id": "WESTUS2:20210624T182433Z:78e66393-c2cf-4f91-85b0-da984f58866d" }, "ResponseBody": [] }, @@ -851,7 +851,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c97ac7b53d82c9bf724210c09ac151c2", "x-ms-return-client-request-id": "true" }, @@ -860,17 +860,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:34:04 GMT", + "Date": "Thu, 24 Jun 2021 18:24:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7d62c68e-0525-4a68-a6b0-0ffd0ab3041d", - "x-ms-ratelimit-remaining-subscription-reads": "11958", - "x-ms-request-id": "7d62c68e-0525-4a68-a6b0-0ffd0ab3041d", - "x-ms-routing-request-id": "WESTUS2:20210617T173404Z:7d62c68e-0525-4a68-a6b0-0ffd0ab3041d" + "x-ms-correlation-request-id": "1d759ee0-cf7c-49dc-baae-13f3f1103375", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "1d759ee0-cf7c-49dc-baae-13f3f1103375", + "x-ms-routing-request-id": "WESTUS2:20210624T182434Z:1d759ee0-cf7c-49dc-baae-13f3f1103375" }, "ResponseBody": [] }, @@ -879,7 +879,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "dcebb062daeaa06f68f2c4ffb4a77d53", "x-ms-return-client-request-id": "true" }, @@ -888,17 +888,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:34:05 GMT", + "Date": "Thu, 24 Jun 2021 18:24:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "487a560d-b4b9-435f-84cc-991717f81f51", - "x-ms-ratelimit-remaining-subscription-reads": "11956", - "x-ms-request-id": "487a560d-b4b9-435f-84cc-991717f81f51", - "x-ms-routing-request-id": "WESTUS2:20210617T173405Z:487a560d-b4b9-435f-84cc-991717f81f51" + "x-ms-correlation-request-id": "280631da-6ae2-4fd2-9a1e-9095d94ee03e", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "280631da-6ae2-4fd2-9a1e-9095d94ee03e", + "x-ms-routing-request-id": "WESTUS2:20210624T182435Z:280631da-6ae2-4fd2-9a1e-9095d94ee03e" }, "ResponseBody": [] }, @@ -907,7 +907,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cf8775cb19101c334960787b22041ee1", "x-ms-return-client-request-id": "true" }, @@ -916,17 +916,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:34:06 GMT", + "Date": "Thu, 24 Jun 2021 18:24:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c3d6c036-4bb8-442d-9c33-4315baf33ce5", - "x-ms-ratelimit-remaining-subscription-reads": "11954", - "x-ms-request-id": "c3d6c036-4bb8-442d-9c33-4315baf33ce5", - "x-ms-routing-request-id": "WESTUS2:20210617T173406Z:c3d6c036-4bb8-442d-9c33-4315baf33ce5" + "x-ms-correlation-request-id": "5bf6f1be-2e78-4ad6-99de-ba61f0714b41", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "5bf6f1be-2e78-4ad6-99de-ba61f0714b41", + "x-ms-routing-request-id": "WESTUS2:20210624T182436Z:5bf6f1be-2e78-4ad6-99de-ba61f0714b41" }, "ResponseBody": [] }, @@ -935,7 +935,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "90e0227a92fadbba58da619079c015cb", "x-ms-return-client-request-id": "true" }, @@ -944,17 +944,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:34:07 GMT", + "Date": "Thu, 24 Jun 2021 18:24:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b807fd7d-da72-4ec4-a30a-17a5f8b6245f", - "x-ms-ratelimit-remaining-subscription-reads": "11952", - "x-ms-request-id": "b807fd7d-da72-4ec4-a30a-17a5f8b6245f", - "x-ms-routing-request-id": "WESTUS2:20210617T173407Z:b807fd7d-da72-4ec4-a30a-17a5f8b6245f" + "x-ms-correlation-request-id": "8fc319cc-fa50-40bc-97b8-3dd2cbc54a20", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "8fc319cc-fa50-40bc-97b8-3dd2cbc54a20", + "x-ms-routing-request-id": "WESTUS2:20210624T182437Z:8fc319cc-fa50-40bc-97b8-3dd2cbc54a20" }, "ResponseBody": [] }, @@ -963,7 +963,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "24f4bcc4823948b17ccf928962f37e63", "x-ms-return-client-request-id": "true" }, @@ -972,17 +972,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:34:08 GMT", + "Date": "Thu, 24 Jun 2021 18:24:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ef9eac8e-c831-4e47-a3cd-2eada3daa028", - "x-ms-ratelimit-remaining-subscription-reads": "11950", - "x-ms-request-id": "ef9eac8e-c831-4e47-a3cd-2eada3daa028", - "x-ms-routing-request-id": "WESTUS2:20210617T173408Z:ef9eac8e-c831-4e47-a3cd-2eada3daa028" + "x-ms-correlation-request-id": "dc94c4a6-0a06-4834-9e22-9ecb6b27df80", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "dc94c4a6-0a06-4834-9e22-9ecb6b27df80", + "x-ms-routing-request-id": "WESTUS2:20210624T182438Z:dc94c4a6-0a06-4834-9e22-9ecb6b27df80" }, "ResponseBody": [] }, @@ -991,7 +991,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9185e3d4edc63859bbac7735b7a3a289", "x-ms-return-client-request-id": "true" }, @@ -1000,17 +1000,60 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:34:09 GMT", + "Date": "Thu, 24 Jun 2021 18:24:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c516443b-3646-4fda-bd8d-a3b462ed5335", - "x-ms-ratelimit-remaining-subscription-reads": "11948", - "x-ms-request-id": "c516443b-3646-4fda-bd8d-a3b462ed5335", - "x-ms-routing-request-id": "WESTUS2:20210617T173409Z:c516443b-3646-4fda-bd8d-a3b462ed5335" + "x-ms-correlation-request-id": "725cf00f-ecc1-4dad-a7ce-eb8d13d2b2d3", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "725cf00f-ecc1-4dad-a7ce-eb8d13d2b2d3", + "x-ms-routing-request-id": "WESTUS2:20210624T182439Z:725cf00f-ecc1-4dad-a7ce-eb8d13d2b2d3" }, "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg5455?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-358b81c45939654b94edf58bddad193f-406c9db0c2ec6543-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0f65b6aca7f970f897142aff3078645c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "228", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 24 Jun 2021 18:24:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3131c7a2-3ad4-4553-8bb4-fd32731810ac", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "3131c7a2-3ad4-4553-8bb4-fd32731810ac", + "x-ms-routing-request-id": "WESTUS2:20210624T182440Z:3131c7a2-3ad4-4553-8bb4-fd32731810ac" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5455", + "name": "testrg5455", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } } ], "Variables": { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteRg()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteRg()Async.json index 25e4d26083cc1..bad1db843458d 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteRg()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteRg()Async.json @@ -6,7 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fa2ef457757d9b442c1db93ad69fe692", "x-ms-return-client-request-id": "true" }, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Jun 2021 17:33:36 GMT", + "Date": "Thu, 24 Jun 2021 18:24:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6f1f6dc6-91f2-4fef-a1af-e4fc4241c24d", + "x-ms-correlation-request-id": "ce47f3fb-7378-46b9-9061-d3463c502b12", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "6f1f6dc6-91f2-4fef-a1af-e4fc4241c24d", - "x-ms-routing-request-id": "WESTUS2:20210617T173336Z:6f1f6dc6-91f2-4fef-a1af-e4fc4241c24d" + "x-ms-request-id": "ce47f3fb-7378-46b9-9061-d3463c502b12", + "x-ms-routing-request-id": "WESTUS2:20210624T182407Z:ce47f3fb-7378-46b9-9061-d3463c502b12" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -53,8 +53,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-b598678649ecff44b0bf28067df332d5-2a8149cb7bf68c4e-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-3389a9491a81084d9aaeece4c7758244-db1bc094bc73aa4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5186692cac050d7d79a4b9d1fe39028a", "x-ms-return-client-request-id": "true" }, @@ -67,15 +67,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Jun 2021 17:33:37 GMT", + "Date": "Thu, 24 Jun 2021 18:24:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1e661e52-db00-44c4-9dbc-d0e02aa2f0f7", + "x-ms-correlation-request-id": "39e1025b-c18d-4102-8cad-9ae0e1d72755", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "1e661e52-db00-44c4-9dbc-d0e02aa2f0f7", - "x-ms-routing-request-id": "WESTUS2:20210617T173338Z:1e661e52-db00-44c4-9dbc-d0e02aa2f0f7" + "x-ms-request-id": "39e1025b-c18d-4102-8cad-9ae0e1d72755", + "x-ms-routing-request-id": "WESTUS2:20210624T182408Z:39e1025b-c18d-4102-8cad-9ae0e1d72755" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9243", @@ -94,8 +94,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-ca62c40fa92bbc429c7211818136f52a-a5f43134fab19d4a-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-2f9ec61440983a42b933d3c4b1ecafd3-5f1a808eea222648-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "42ec7da7387011849116b5a7432ed035", "x-ms-return-client-request-id": "true" }, @@ -104,17 +104,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:33:37 GMT", + "Date": "Thu, 24 Jun 2021 18:24:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d1ed6e2d-91c1-4e70-9103-2ff3e8140462", + "x-ms-correlation-request-id": "21e0cb81-27ab-4699-88c4-2918af8162a9", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-request-id": "d1ed6e2d-91c1-4e70-9103-2ff3e8140462", - "x-ms-routing-request-id": "WESTUS2:20210617T173338Z:d1ed6e2d-91c1-4e70-9103-2ff3e8140462" + "x-ms-request-id": "21e0cb81-27ab-4699-88c4-2918af8162a9", + "x-ms-routing-request-id": "WESTUS2:20210624T182408Z:21e0cb81-27ab-4699-88c4-2918af8162a9" }, "ResponseBody": [] }, @@ -123,8 +123,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-8cf7a805cc7e674fb3ff9708a94519c9-800a1d5154097b4f-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "222fb0b64ff9f45ce475c0eff7d5c94a", "x-ms-return-client-request-id": "true" }, @@ -133,17 +132,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:33:37 GMT", + "Date": "Thu, 24 Jun 2021 18:24:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "92f2f09d-d11d-4ca8-b253-97625817fe65", + "x-ms-correlation-request-id": "0a1dec2e-90e6-4726-80dd-6161bfcc893a", "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "92f2f09d-d11d-4ca8-b253-97625817fe65", - "x-ms-routing-request-id": "WESTUS2:20210617T173338Z:92f2f09d-d11d-4ca8-b253-97625817fe65" + "x-ms-request-id": "0a1dec2e-90e6-4726-80dd-6161bfcc893a", + "x-ms-routing-request-id": "WESTUS2:20210624T182408Z:0a1dec2e-90e6-4726-80dd-6161bfcc893a" }, "ResponseBody": [] }, @@ -152,7 +151,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b51783d4b226eaef2ba5918333b487c8", "x-ms-return-client-request-id": "true" }, @@ -161,17 +160,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:33:37 GMT", + "Date": "Thu, 24 Jun 2021 18:24:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "622c9517-a345-4415-9654-f592face0883", + "x-ms-correlation-request-id": "80d4badf-b021-4b93-b874-ec4e36c6092f", "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "622c9517-a345-4415-9654-f592face0883", - "x-ms-routing-request-id": "WESTUS2:20210617T173338Z:622c9517-a345-4415-9654-f592face0883" + "x-ms-request-id": "80d4badf-b021-4b93-b874-ec4e36c6092f", + "x-ms-routing-request-id": "WESTUS2:20210624T182408Z:80d4badf-b021-4b93-b874-ec4e36c6092f" }, "ResponseBody": [] }, @@ -180,7 +179,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "93f1d1e8aeff6a3cec1e6c25fc6250dc", "x-ms-return-client-request-id": "true" }, @@ -189,17 +188,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:33:38 GMT", + "Date": "Thu, 24 Jun 2021 18:24:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a569a26b-3c6e-418b-9928-9b0ca734d889", + "x-ms-correlation-request-id": "7e5dc1fb-a05b-4e85-a2a3-9c88a866615b", "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "a569a26b-3c6e-418b-9928-9b0ca734d889", - "x-ms-routing-request-id": "WESTUS2:20210617T173339Z:a569a26b-3c6e-418b-9928-9b0ca734d889" + "x-ms-request-id": "7e5dc1fb-a05b-4e85-a2a3-9c88a866615b", + "x-ms-routing-request-id": "WESTUS2:20210624T182409Z:7e5dc1fb-a05b-4e85-a2a3-9c88a866615b" }, "ResponseBody": [] }, @@ -208,7 +207,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "06fbb92378b104bdc044f654bed8c12f", "x-ms-return-client-request-id": "true" }, @@ -217,17 +216,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:33:39 GMT", + "Date": "Thu, 24 Jun 2021 18:24:10 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "225f1412-a3a4-4d23-b8da-7214cb27c1ff", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "225f1412-a3a4-4d23-b8da-7214cb27c1ff", - "x-ms-routing-request-id": "WESTUS2:20210617T173340Z:225f1412-a3a4-4d23-b8da-7214cb27c1ff" + "x-ms-correlation-request-id": "3167eb87-0e78-4e7b-9e62-50025d33dff4", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "3167eb87-0e78-4e7b-9e62-50025d33dff4", + "x-ms-routing-request-id": "WESTUS2:20210624T182410Z:3167eb87-0e78-4e7b-9e62-50025d33dff4" }, "ResponseBody": [] }, @@ -236,7 +235,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2506f7ed36e3264b47adc90845c9edc8", "x-ms-return-client-request-id": "true" }, @@ -245,17 +244,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:33:40 GMT", + "Date": "Thu, 24 Jun 2021 18:24:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2bb392ca-e83a-4011-bf6e-42ef9d7c4476", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "2bb392ca-e83a-4011-bf6e-42ef9d7c4476", - "x-ms-routing-request-id": "WESTUS2:20210617T173341Z:2bb392ca-e83a-4011-bf6e-42ef9d7c4476" + "x-ms-correlation-request-id": "5ba63d0a-bda7-45cb-9057-6ed16e73f970", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "5ba63d0a-bda7-45cb-9057-6ed16e73f970", + "x-ms-routing-request-id": "WESTUS2:20210624T182411Z:5ba63d0a-bda7-45cb-9057-6ed16e73f970" }, "ResponseBody": [] }, @@ -264,7 +263,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "795fb45480b86f1613edd2bab7e8ab13", "x-ms-return-client-request-id": "true" }, @@ -273,17 +272,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:33:41 GMT", + "Date": "Thu, 24 Jun 2021 18:24:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c1a19f7b-6744-4f4c-a941-02abc81db215", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "c1a19f7b-6744-4f4c-a941-02abc81db215", - "x-ms-routing-request-id": "WESTUS2:20210617T173342Z:c1a19f7b-6744-4f4c-a941-02abc81db215" + "x-ms-correlation-request-id": "d04380a1-8694-44f3-ab1e-66f740189f2e", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "d04380a1-8694-44f3-ab1e-66f740189f2e", + "x-ms-routing-request-id": "WESTUS2:20210624T182412Z:d04380a1-8694-44f3-ab1e-66f740189f2e" }, "ResponseBody": [] }, @@ -292,7 +291,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "04373c5c2b5bedf96ed5be04aeb5bef6", "x-ms-return-client-request-id": "true" }, @@ -301,17 +300,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:33:42 GMT", + "Date": "Thu, 24 Jun 2021 18:24:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fa7d2e19-f00f-4d77-bf38-c0606c1948eb", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "fa7d2e19-f00f-4d77-bf38-c0606c1948eb", - "x-ms-routing-request-id": "WESTUS2:20210617T173343Z:fa7d2e19-f00f-4d77-bf38-c0606c1948eb" + "x-ms-correlation-request-id": "90f2e3f2-87c2-4e8b-9e53-93469436e6ec", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "90f2e3f2-87c2-4e8b-9e53-93469436e6ec", + "x-ms-routing-request-id": "WESTUS2:20210624T182413Z:90f2e3f2-87c2-4e8b-9e53-93469436e6ec" }, "ResponseBody": [] }, @@ -320,7 +319,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0aff2d5647796c76e19611f663906e5f", "x-ms-return-client-request-id": "true" }, @@ -329,17 +328,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:33:43 GMT", + "Date": "Thu, 24 Jun 2021 18:24:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ef0a7f3e-49c3-44c3-8ecf-99ec23fd52ff", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "ef0a7f3e-49c3-44c3-8ecf-99ec23fd52ff", - "x-ms-routing-request-id": "WESTUS2:20210617T173344Z:ef0a7f3e-49c3-44c3-8ecf-99ec23fd52ff" + "x-ms-correlation-request-id": "baeb7560-eee4-4388-9f7f-4a2b64c20819", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "baeb7560-eee4-4388-9f7f-4a2b64c20819", + "x-ms-routing-request-id": "WESTUS2:20210624T182415Z:baeb7560-eee4-4388-9f7f-4a2b64c20819" }, "ResponseBody": [] }, @@ -348,7 +347,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "09abb602e892296dbb720ae3c212c05e", "x-ms-return-client-request-id": "true" }, @@ -357,17 +356,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:33:44 GMT", + "Date": "Thu, 24 Jun 2021 18:24:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cd8f884b-319f-4c8f-aad8-466bcdfdbdb6", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "cd8f884b-319f-4c8f-aad8-466bcdfdbdb6", - "x-ms-routing-request-id": "WESTUS2:20210617T173345Z:cd8f884b-319f-4c8f-aad8-466bcdfdbdb6" + "x-ms-correlation-request-id": "c09e7534-3f30-4294-a960-bde94a950f52", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "c09e7534-3f30-4294-a960-bde94a950f52", + "x-ms-routing-request-id": "WESTUS2:20210624T182416Z:c09e7534-3f30-4294-a960-bde94a950f52" }, "ResponseBody": [] }, @@ -376,7 +375,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8963db2ea1e8159ac5ca23c5190289de", "x-ms-return-client-request-id": "true" }, @@ -385,17 +384,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:33:45 GMT", + "Date": "Thu, 24 Jun 2021 18:24:16 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0b246fa4-3545-4133-a00d-db25b6c7b15c", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "0b246fa4-3545-4133-a00d-db25b6c7b15c", - "x-ms-routing-request-id": "WESTUS2:20210617T173346Z:0b246fa4-3545-4133-a00d-db25b6c7b15c" + "x-ms-correlation-request-id": "7108e84f-a483-4362-8aeb-de8581340fd5", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "7108e84f-a483-4362-8aeb-de8581340fd5", + "x-ms-routing-request-id": "WESTUS2:20210624T182417Z:7108e84f-a483-4362-8aeb-de8581340fd5" }, "ResponseBody": [] }, @@ -404,7 +403,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f8015f66b5096e64c0d64e063c93aacf", "x-ms-return-client-request-id": "true" }, @@ -413,17 +412,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:33:46 GMT", + "Date": "Thu, 24 Jun 2021 18:24:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5aece8e9-4533-4645-af9d-8a6134bf1cb1", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "5aece8e9-4533-4645-af9d-8a6134bf1cb1", - "x-ms-routing-request-id": "WESTUS2:20210617T173347Z:5aece8e9-4533-4645-af9d-8a6134bf1cb1" + "x-ms-correlation-request-id": "543e7d1b-4f4b-4876-b95b-c9cb0c429b1c", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "543e7d1b-4f4b-4876-b95b-c9cb0c429b1c", + "x-ms-routing-request-id": "WESTUS2:20210624T182418Z:543e7d1b-4f4b-4876-b95b-c9cb0c429b1c" }, "ResponseBody": [] }, @@ -432,7 +431,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "88c7b2d5e52c61761b9643c7c5a70fb8", "x-ms-return-client-request-id": "true" }, @@ -441,17 +440,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:33:47 GMT", + "Date": "Thu, 24 Jun 2021 18:24:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "23d02e13-d965-4ada-8b5f-acbbbf0a3ce1", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "23d02e13-d965-4ada-8b5f-acbbbf0a3ce1", - "x-ms-routing-request-id": "WESTUS2:20210617T173348Z:23d02e13-d965-4ada-8b5f-acbbbf0a3ce1" + "x-ms-correlation-request-id": "49afa460-5a20-4513-ab9a-36d669adfb77", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "49afa460-5a20-4513-ab9a-36d669adfb77", + "x-ms-routing-request-id": "WESTUS2:20210624T182419Z:49afa460-5a20-4513-ab9a-36d669adfb77" }, "ResponseBody": [] }, @@ -460,7 +459,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "627c2ce8c810795476f5c9125293d831", "x-ms-return-client-request-id": "true" }, @@ -469,17 +468,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:33:48 GMT", + "Date": "Thu, 24 Jun 2021 18:24:19 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bdfd3081-1f5c-45ce-85af-f1bca26a6760", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "bdfd3081-1f5c-45ce-85af-f1bca26a6760", - "x-ms-routing-request-id": "WESTUS2:20210617T173349Z:bdfd3081-1f5c-45ce-85af-f1bca26a6760" + "x-ms-correlation-request-id": "d1d7714f-bcbc-4455-81b4-d0e8d295e4e4", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "d1d7714f-bcbc-4455-81b4-d0e8d295e4e4", + "x-ms-routing-request-id": "WESTUS2:20210624T182420Z:d1d7714f-bcbc-4455-81b4-d0e8d295e4e4" }, "ResponseBody": [] }, @@ -488,7 +487,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "67ef5320013b81b1e8a0dc73729da818", "x-ms-return-client-request-id": "true" }, @@ -497,17 +496,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:33:49 GMT", + "Date": "Thu, 24 Jun 2021 18:24:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3a67591d-d08b-4a22-8013-180fc8789cca", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "3a67591d-d08b-4a22-8013-180fc8789cca", - "x-ms-routing-request-id": "WESTUS2:20210617T173350Z:3a67591d-d08b-4a22-8013-180fc8789cca" + "x-ms-correlation-request-id": "c9afe1de-e6f5-43de-b1a1-dc9a9fd1789b", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "c9afe1de-e6f5-43de-b1a1-dc9a9fd1789b", + "x-ms-routing-request-id": "WESTUS2:20210624T182421Z:c9afe1de-e6f5-43de-b1a1-dc9a9fd1789b" }, "ResponseBody": [] }, @@ -516,7 +515,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "101d95c648170dbe5d4e11361b640e88", "x-ms-return-client-request-id": "true" }, @@ -525,17 +524,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:33:50 GMT", + "Date": "Thu, 24 Jun 2021 18:24:21 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "46fc7881-1409-4083-9e36-e92ea0d58d4b", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "46fc7881-1409-4083-9e36-e92ea0d58d4b", - "x-ms-routing-request-id": "WESTUS2:20210617T173351Z:46fc7881-1409-4083-9e36-e92ea0d58d4b" + "x-ms-correlation-request-id": "20f1e75d-2d72-427f-a260-af5743609d0e", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "20f1e75d-2d72-427f-a260-af5743609d0e", + "x-ms-routing-request-id": "WESTUS2:20210624T182422Z:20f1e75d-2d72-427f-a260-af5743609d0e" }, "ResponseBody": [] }, @@ -544,7 +543,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "71a711bda8b8e77d7afa7a6febe107d9", "x-ms-return-client-request-id": "true" }, @@ -553,17 +552,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:33:52 GMT", + "Date": "Thu, 24 Jun 2021 18:24:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bb37953f-4262-47e7-8cca-231ea198350b", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "bb37953f-4262-47e7-8cca-231ea198350b", - "x-ms-routing-request-id": "WESTUS2:20210617T173352Z:bb37953f-4262-47e7-8cca-231ea198350b" + "x-ms-correlation-request-id": "5ea7f45f-9e67-460f-af53-69ff5e0b0d09", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "5ea7f45f-9e67-460f-af53-69ff5e0b0d09", + "x-ms-routing-request-id": "WESTUS2:20210624T182423Z:5ea7f45f-9e67-460f-af53-69ff5e0b0d09" }, "ResponseBody": [] }, @@ -572,7 +571,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bc4cb04dc875d81a94e109edf07b6583", "x-ms-return-client-request-id": "true" }, @@ -581,17 +580,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:33:53 GMT", + "Date": "Thu, 24 Jun 2021 18:24:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "542648eb-1f92-481e-b400-6effa0eedd6c", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "542648eb-1f92-481e-b400-6effa0eedd6c", - "x-ms-routing-request-id": "WESTUS2:20210617T173353Z:542648eb-1f92-481e-b400-6effa0eedd6c" + "x-ms-correlation-request-id": "a0cd2aa9-65fa-451a-8fa5-9ee8a869c8b4", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "a0cd2aa9-65fa-451a-8fa5-9ee8a869c8b4", + "x-ms-routing-request-id": "WESTUS2:20210624T182424Z:a0cd2aa9-65fa-451a-8fa5-9ee8a869c8b4" }, "ResponseBody": [] }, @@ -600,7 +599,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "60b6549136f61d601836951dcd4f227c", "x-ms-return-client-request-id": "true" }, @@ -609,17 +608,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:33:54 GMT", + "Date": "Thu, 24 Jun 2021 18:24:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ad300552-35ce-4455-b740-1f7c663a17aa", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "ad300552-35ce-4455-b740-1f7c663a17aa", - "x-ms-routing-request-id": "WESTUS2:20210617T173354Z:ad300552-35ce-4455-b740-1f7c663a17aa" + "x-ms-correlation-request-id": "4ae26813-edcd-4d11-b2a0-dd98438deb1b", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "4ae26813-edcd-4d11-b2a0-dd98438deb1b", + "x-ms-routing-request-id": "WESTUS2:20210624T182425Z:4ae26813-edcd-4d11-b2a0-dd98438deb1b" }, "ResponseBody": [] }, @@ -628,7 +627,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6be937465218f513f7cfdcd69f90f6ff", "x-ms-return-client-request-id": "true" }, @@ -637,17 +636,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:33:55 GMT", + "Date": "Thu, 24 Jun 2021 18:24:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "16a24fe6-ca56-4263-8564-4a105f928ee5", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "16a24fe6-ca56-4263-8564-4a105f928ee5", - "x-ms-routing-request-id": "WESTUS2:20210617T173355Z:16a24fe6-ca56-4263-8564-4a105f928ee5" + "x-ms-correlation-request-id": "46eff79d-a5ea-4dcf-af25-82e4f91269b3", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "46eff79d-a5ea-4dcf-af25-82e4f91269b3", + "x-ms-routing-request-id": "WESTUS2:20210624T182426Z:46eff79d-a5ea-4dcf-af25-82e4f91269b3" }, "ResponseBody": [] }, @@ -656,7 +655,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "96ddf694a62b16e3502ea43e33fd0a45", "x-ms-return-client-request-id": "true" }, @@ -665,17 +664,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:33:56 GMT", + "Date": "Thu, 24 Jun 2021 18:24:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "70503c38-c747-4cdb-9d41-b13e1154093b", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "70503c38-c747-4cdb-9d41-b13e1154093b", - "x-ms-routing-request-id": "WESTUS2:20210617T173356Z:70503c38-c747-4cdb-9d41-b13e1154093b" + "x-ms-correlation-request-id": "9f4f939f-7a80-4c4b-8ec9-79438c9d3a87", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "9f4f939f-7a80-4c4b-8ec9-79438c9d3a87", + "x-ms-routing-request-id": "WESTUS2:20210624T182427Z:9f4f939f-7a80-4c4b-8ec9-79438c9d3a87" }, "ResponseBody": [] }, @@ -684,7 +683,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b8a68cbffa923f6b41c069265a897d87", "x-ms-return-client-request-id": "true" }, @@ -693,17 +692,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:33:57 GMT", + "Date": "Thu, 24 Jun 2021 18:24:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "44799322-3b16-4460-a8cf-5f6cc88c5e3f", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "44799322-3b16-4460-a8cf-5f6cc88c5e3f", - "x-ms-routing-request-id": "WESTUS2:20210617T173357Z:44799322-3b16-4460-a8cf-5f6cc88c5e3f" + "x-ms-correlation-request-id": "e27450b4-e6e3-4d94-aadf-bbdf9001c9e8", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "e27450b4-e6e3-4d94-aadf-bbdf9001c9e8", + "x-ms-routing-request-id": "WESTUS2:20210624T182428Z:e27450b4-e6e3-4d94-aadf-bbdf9001c9e8" }, "ResponseBody": [] }, @@ -712,7 +711,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d78895408b719f5154d21ae9add4c2fa", "x-ms-return-client-request-id": "true" }, @@ -721,17 +720,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:33:58 GMT", + "Date": "Thu, 24 Jun 2021 18:24:28 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ec1dd1d5-9ad6-493b-a820-1463f60f8fac", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "ec1dd1d5-9ad6-493b-a820-1463f60f8fac", - "x-ms-routing-request-id": "WESTUS2:20210617T173358Z:ec1dd1d5-9ad6-493b-a820-1463f60f8fac" + "x-ms-correlation-request-id": "983ddaaa-1ac7-4d0a-bc5f-7b6177719e34", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "983ddaaa-1ac7-4d0a-bc5f-7b6177719e34", + "x-ms-routing-request-id": "WESTUS2:20210624T182429Z:983ddaaa-1ac7-4d0a-bc5f-7b6177719e34" }, "ResponseBody": [] }, @@ -740,7 +739,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "121797c53de99a6d8a9e556a3dbcbcc7", "x-ms-return-client-request-id": "true" }, @@ -749,17 +748,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:34:00 GMT", + "Date": "Thu, 24 Jun 2021 18:24:29 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a90015ef-65ee-4cea-94cc-a24e5dc2965c", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-request-id": "a90015ef-65ee-4cea-94cc-a24e5dc2965c", - "x-ms-routing-request-id": "WESTUS2:20210617T173400Z:a90015ef-65ee-4cea-94cc-a24e5dc2965c" + "x-ms-correlation-request-id": "a143281d-06cf-4744-9c6a-d3afc79370f3", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "a143281d-06cf-4744-9c6a-d3afc79370f3", + "x-ms-routing-request-id": "WESTUS2:20210624T182430Z:a143281d-06cf-4744-9c6a-d3afc79370f3" }, "ResponseBody": [] }, @@ -768,7 +767,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9dfe1cb0327433d43b0664bfdf81916c", "x-ms-return-client-request-id": "true" }, @@ -777,17 +776,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:34:01 GMT", + "Date": "Thu, 24 Jun 2021 18:24:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ae76435c-2190-411a-bb75-f99419383151", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-request-id": "ae76435c-2190-411a-bb75-f99419383151", - "x-ms-routing-request-id": "WESTUS2:20210617T173401Z:ae76435c-2190-411a-bb75-f99419383151" + "x-ms-correlation-request-id": "45384f3b-7899-4c07-b69e-5e72c1e270c3", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "45384f3b-7899-4c07-b69e-5e72c1e270c3", + "x-ms-routing-request-id": "WESTUS2:20210624T182431Z:45384f3b-7899-4c07-b69e-5e72c1e270c3" }, "ResponseBody": [] }, @@ -796,7 +795,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c3616efe6b71029d27ee4cd336e76298", "x-ms-return-client-request-id": "true" }, @@ -805,17 +804,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:34:02 GMT", + "Date": "Thu, 24 Jun 2021 18:24:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "277cd688-1e61-4006-a2a6-37d23b4f7cdc", - "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-request-id": "277cd688-1e61-4006-a2a6-37d23b4f7cdc", - "x-ms-routing-request-id": "WESTUS2:20210617T173402Z:277cd688-1e61-4006-a2a6-37d23b4f7cdc" + "x-ms-correlation-request-id": "0481d3d2-cf42-4b98-9eea-6c13f89ab408", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "0481d3d2-cf42-4b98-9eea-6c13f89ab408", + "x-ms-routing-request-id": "WESTUS2:20210624T182432Z:0481d3d2-cf42-4b98-9eea-6c13f89ab408" }, "ResponseBody": [] }, @@ -824,7 +823,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9139531524d59285c2e4d7e3d9adba09", "x-ms-return-client-request-id": "true" }, @@ -833,17 +832,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:34:03 GMT", + "Date": "Thu, 24 Jun 2021 18:24:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c9c7bbff-9cab-4e55-93ee-846f64f8e6a3", - "x-ms-ratelimit-remaining-subscription-reads": "11961", - "x-ms-request-id": "c9c7bbff-9cab-4e55-93ee-846f64f8e6a3", - "x-ms-routing-request-id": "WESTUS2:20210617T173403Z:c9c7bbff-9cab-4e55-93ee-846f64f8e6a3" + "x-ms-correlation-request-id": "eebddeab-da12-4031-b0c3-833a4e948a44", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "eebddeab-da12-4031-b0c3-833a4e948a44", + "x-ms-routing-request-id": "WESTUS2:20210624T182433Z:eebddeab-da12-4031-b0c3-833a4e948a44" }, "ResponseBody": [] }, @@ -852,7 +851,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ce6be80cf95a45567efc7586e601fd54", "x-ms-return-client-request-id": "true" }, @@ -861,17 +860,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:34:04 GMT", + "Date": "Thu, 24 Jun 2021 18:24:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "622787f1-5aa7-4589-b49e-a6b54d00d6ea", - "x-ms-ratelimit-remaining-subscription-reads": "11959", - "x-ms-request-id": "622787f1-5aa7-4589-b49e-a6b54d00d6ea", - "x-ms-routing-request-id": "WESTUS2:20210617T173404Z:622787f1-5aa7-4589-b49e-a6b54d00d6ea" + "x-ms-correlation-request-id": "cb40f4ab-b806-4055-912c-84c0c8bb62ad", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "cb40f4ab-b806-4055-912c-84c0c8bb62ad", + "x-ms-routing-request-id": "WESTUS2:20210624T182434Z:cb40f4ab-b806-4055-912c-84c0c8bb62ad" }, "ResponseBody": [] }, @@ -880,7 +879,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8ca9cba40048da97e9cf008d93ba2879", "x-ms-return-client-request-id": "true" }, @@ -889,17 +888,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:34:05 GMT", + "Date": "Thu, 24 Jun 2021 18:24:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c55f9063-6953-43a0-8559-c300e642c52c", - "x-ms-ratelimit-remaining-subscription-reads": "11957", - "x-ms-request-id": "c55f9063-6953-43a0-8559-c300e642c52c", - "x-ms-routing-request-id": "WESTUS2:20210617T173405Z:c55f9063-6953-43a0-8559-c300e642c52c" + "x-ms-correlation-request-id": "9d61a595-0c18-4162-8e7c-fbb234736c05", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "9d61a595-0c18-4162-8e7c-fbb234736c05", + "x-ms-routing-request-id": "WESTUS2:20210624T182435Z:9d61a595-0c18-4162-8e7c-fbb234736c05" }, "ResponseBody": [] }, @@ -908,7 +907,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4dc64234937b1c3dfdf312d9aeffabc0", "x-ms-return-client-request-id": "true" }, @@ -917,17 +916,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:34:06 GMT", + "Date": "Thu, 24 Jun 2021 18:24:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "350c77f4-e00e-4c21-b657-0ecfa41cf6fb", - "x-ms-ratelimit-remaining-subscription-reads": "11955", - "x-ms-request-id": "350c77f4-e00e-4c21-b657-0ecfa41cf6fb", - "x-ms-routing-request-id": "WESTUS2:20210617T173406Z:350c77f4-e00e-4c21-b657-0ecfa41cf6fb" + "x-ms-correlation-request-id": "cdc2abc6-b81f-44e3-babd-43c8e276bf7e", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "cdc2abc6-b81f-44e3-babd-43c8e276bf7e", + "x-ms-routing-request-id": "WESTUS2:20210624T182436Z:cdc2abc6-b81f-44e3-babd-43c8e276bf7e" }, "ResponseBody": [] }, @@ -936,7 +935,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0d3e83e62d030bc15191e58af9c8b1c3", "x-ms-return-client-request-id": "true" }, @@ -945,17 +944,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:34:07 GMT", + "Date": "Thu, 24 Jun 2021 18:24:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "abfe3cd1-5855-4a71-83b5-d58a18853a89", - "x-ms-ratelimit-remaining-subscription-reads": "11953", - "x-ms-request-id": "abfe3cd1-5855-4a71-83b5-d58a18853a89", - "x-ms-routing-request-id": "WESTUS2:20210617T173407Z:abfe3cd1-5855-4a71-83b5-d58a18853a89" + "x-ms-correlation-request-id": "f7aec46a-7193-419a-8cfe-fc5931b4d3ec", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "f7aec46a-7193-419a-8cfe-fc5931b4d3ec", + "x-ms-routing-request-id": "WESTUS2:20210624T182437Z:f7aec46a-7193-419a-8cfe-fc5931b4d3ec" }, "ResponseBody": [] }, @@ -964,7 +963,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a352fbd4b03a10d88e8d8f54edbd2bea", "x-ms-return-client-request-id": "true" }, @@ -973,17 +972,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:34:08 GMT", + "Date": "Thu, 24 Jun 2021 18:24:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c294fe09-42ee-432d-b06b-67268b950326", - "x-ms-ratelimit-remaining-subscription-reads": "11951", - "x-ms-request-id": "c294fe09-42ee-432d-b06b-67268b950326", - "x-ms-routing-request-id": "WESTUS2:20210617T173408Z:c294fe09-42ee-432d-b06b-67268b950326" + "x-ms-correlation-request-id": "634299c0-6cad-45e0-af78-85f2e15f1a7a", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "634299c0-6cad-45e0-af78-85f2e15f1a7a", + "x-ms-routing-request-id": "WESTUS2:20210624T182438Z:634299c0-6cad-45e0-af78-85f2e15f1a7a" }, "ResponseBody": [] }, @@ -992,7 +991,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "10a63f241a7c067681bafbeaaeb22234", "x-ms-return-client-request-id": "true" }, @@ -1001,17 +1000,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:34:09 GMT", + "Date": "Thu, 24 Jun 2021 18:24:39 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a6fd290d-7e7b-4716-9cb6-a2e9d0d33fe3", - "x-ms-ratelimit-remaining-subscription-reads": "11949", - "x-ms-request-id": "a6fd290d-7e7b-4716-9cb6-a2e9d0d33fe3", - "x-ms-routing-request-id": "WESTUS2:20210617T173409Z:a6fd290d-7e7b-4716-9cb6-a2e9d0d33fe3" + "x-ms-correlation-request-id": "b219fc42-4504-40bf-a475-e136a2aced54", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "b219fc42-4504-40bf-a475-e136a2aced54", + "x-ms-routing-request-id": "WESTUS2:20210624T182439Z:b219fc42-4504-40bf-a475-e136a2aced54" }, "ResponseBody": [] }, @@ -1020,7 +1019,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210616.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b3054f4108ac3686aa2d7f769d6c1e94", "x-ms-return-client-request-id": "true" }, @@ -1029,17 +1028,60 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 17 Jun 2021 17:34:10 GMT", + "Date": "Thu, 24 Jun 2021 18:24:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b94bc1e6-318e-4b5f-a58b-d180df3133ae", - "x-ms-ratelimit-remaining-subscription-reads": "11945", - "x-ms-request-id": "b94bc1e6-318e-4b5f-a58b-d180df3133ae", - "x-ms-routing-request-id": "WESTUS2:20210617T173410Z:b94bc1e6-318e-4b5f-a58b-d180df3133ae" + "x-ms-correlation-request-id": "8742ac8c-d24f-493d-9158-a653a445462d", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "8742ac8c-d24f-493d-9158-a653a445462d", + "x-ms-routing-request-id": "WESTUS2:20210624T182440Z:8742ac8c-d24f-493d-9158-a653a445462d" }, "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg8336?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-1fcc37a9378bf340808d97f0f2fbb490-a1ff4b5576e1ae4c-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210624.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "21b966fb47a185b94b217fb4ee62db6a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "228", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 24 Jun 2021 18:24:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "48de70d4-46c5-4e89-a649-fc07de406059", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "48de70d4-46c5-4e89-a649-fc07de406059", + "x-ms-routing-request-id": "WESTUS2:20210624T182441Z:48de70d4-46c5-4e89-a649-fc07de406059" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8336", + "name": "testrg8336", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } } ], "Variables": {